blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
dde4ced90a75b457217f9640dae137ea0196e741
d0c0b8542dbbb004a35433a1547c6f6f38a6adda
/运行时系统及组态画面生成demo/master/mytcpsocket.h
f6ecc3c64bae6512d5cb28362aed9e21c40c4813
[]
no_license
yunwangzishu/ConfigurationSoftwareRuntimeSystem
f7726818309aaee79e654bb28026e06f8dad8af3
dd10af7e520aa9232d674a53ceddb8deaf867c14
refs/heads/master
2022-11-19T07:58:52.640369
2020-07-11T03:24:23
2020-07-11T03:24:23
null
0
0
null
null
null
null
GB18030
C++
false
false
632
h
#ifndef MYTCPSOCKET_H #define MYTCPSOCKET_H #include <QTcpSocket> #include <QString> class myTcpSocket : public QTcpSocket { Q_OBJECT public: myTcpSocket(QObject *parent = 0); protected slots: void receivedata();//处理readyRead信号读取数据 void slotclientdisconnected();//客户端断开连接触发disconnected信号,这个槽函数用来处理这个信号 void slotclientconnected(); signals: void clientdisconnected(int); //告诉server有客户端断开连接 void receivedData(QString); //告诉server有客户端发送数据过来 }; #endif // MYTCPSOCKET_H
[ "851096514@qq.com" ]
851096514@qq.com
e780eb22edb64dd7fca2cd363f778b0c19f0bf34
3dc308b1e9eca7817d42836f5e8fbedb5039ad9f
/include/asiochan/detail/channel_method_ops.hpp
6139dd195550b69528285f4fcb9ecc56ce543559
[ "MIT" ]
permissive
jbl19860422/asiochan
6170f46bae8e457a2618063b5f0bbf82aff52d76
8d1659f671fef08fd75370fd1dd61e104018b301
refs/heads/master
2023-08-26T03:20:26.918995
2021-11-10T11:43:34
2021-11-10T11:43:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,550
hpp
#pragma once #include <optional> #include <utility> #include "asiochan/asio.hpp" #include "asiochan/channel_buff_size.hpp" #include "asiochan/channel_concepts.hpp" #include "asiochan/nothing_op.hpp" #include "asiochan/read_op.hpp" #include "asiochan/select.hpp" #include "asiochan/sendable.hpp" #include "asiochan/write_op.hpp" namespace asiochan::detail { template <sendable T, asio::execution::executor Executor, channel_buff_size buff_size, channel_flags flags, typename Derived> class channel_method_ops { public: // clang-format off [[nodiscard]] auto try_read() -> std::optional<T> requires (static_cast<bool>(flags & readable)) // clang-format on { auto result = select_ready( ops::read(derived()), ops::nothing); if (auto const ptr = result.template get_if_received<T>()) { return std::move(*ptr); } return std::nullopt; } // clang-format off [[nodiscard]] auto try_write(T value) -> bool requires (static_cast<bool>(flags & writable)) and (buff_size != unbounded_channel_buff) // clang-format on { auto const result = select_ready( ops::write(std::move(value), derived()), ops::nothing); return result.has_value(); } // clang-format off [[nodiscard]] auto read() -> asio::awaitable<T, Executor> requires (static_cast<bool>(flags & readable)) // clang-format on { auto result = co_await select(ops::read(derived())); co_return std::move(result).template get_received<T>(); } // clang-format off [[nodiscard]] auto write(T value) -> asio::awaitable<void, Executor> requires (static_cast<bool>(flags & writable)) and (buff_size != unbounded_channel_buff) // clang-format on { co_await select(ops::write(std::move(value), derived())); } // clang-format off void write(T value) requires (static_cast<bool>(flags & writable)) and (buff_size == unbounded_channel_buff) // clang-format on { select_ready(ops::write(std::move(value), derived())); } private: [[nodiscard]] auto derived() noexcept -> Derived& { return static_cast<Derived&>(*this); } }; template <channel_buff_size buff_size, asio::execution::executor Executor, channel_flags flags, typename Derived> class channel_method_ops<void, Executor, buff_size, flags, Derived> { public: // clang-format off [[nodiscard]] auto try_read() -> bool requires (static_cast<bool>(flags & readable)) // clang-format on { auto const result = select_ready( ops::read(derived()), ops::nothing); return result.has_value(); } // clang-format off [[nodiscard]] auto try_write() -> bool requires (static_cast<bool>(flags & writable)) and (buff_size != unbounded_channel_buff) // clang-format on { auto const result = select_ready( ops::write(derived()), ops::nothing); return result.has_value(); } // clang-format off [[nodiscard]] auto read() -> asio::awaitable<void> requires (static_cast<bool>(flags & readable)) // clang-format on { co_await select(ops::read(derived())); } // clang-format off [[nodiscard]] auto write() -> asio::awaitable<void> requires (static_cast<bool>(flags & writable)) and (buff_size != unbounded_channel_buff) // clang-format on { co_await select(ops::write(derived())); } // clang-format off void write() requires (static_cast<bool>(flags & writable)) and (buff_size == unbounded_channel_buff) // clang-format on { select_ready(ops::write(derived())); } private: [[nodiscard]] auto derived() noexcept -> Derived& { return static_cast<Derived&>(*this); } }; } // namespace asiochan::detail
[ "noreply@github.com" ]
jbl19860422.noreply@github.com
9e7ec79293c2f3a0d335e5e8ca7421db7d259cc0
d60a6c8021362a1481d660dc7d28c47a2e3d6558
/src/rpcmisc.cpp
e6e03db0b14a8270e7e4040d2d4b7c512df84603
[ "MIT" ]
permissive
terabit-hq/terabit
40b749df11c7d3cc29b7f806fc5393654f0b649b
4ed2189be074bc0b09109b2802308e0a671f4600
refs/heads/master
2021-01-17T20:59:54.205773
2017-09-27T11:29:41
2017-09-27T11:29:41
86,557,012
2
1
null
null
null
null
UTF-8
C++
false
false
7,607
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2013 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "base58.h" #include "init.h" #include "main.h" #include "net.h" #include "netbase.h" #include "rpcserver.h" #include "timedata.h" #include "util.h" #ifdef ENABLE_WALLET #include "wallet.h" #include "walletdb.h" #endif #include <stdint.h> #include <boost/assign/list_of.hpp> #include "json/json_spirit_utils.h" #include "json/json_spirit_value.h" using namespace std; using namespace boost; using namespace boost::assign; using namespace json_spirit; Value getinfo(const Array& params, bool fHelp) { if (fHelp || params.size() != 0) throw runtime_error( "getinfo\n" "Returns an object containing various state info."); proxyType proxy; GetProxy(NET_IPV4, proxy); Object obj, diff; obj.push_back(Pair("version", FormatFullVersion())); obj.push_back(Pair("protocolversion",(int)PROTOCOL_VERSION)); #ifdef ENABLE_WALLET if (pwalletMain) { obj.push_back(Pair("walletversion", pwalletMain->GetVersion())); obj.push_back(Pair("balance", ValueFromAmount(pwalletMain->GetBalance()))); obj.push_back(Pair("newmint", ValueFromAmount(pwalletMain->GetNewMint()))); obj.push_back(Pair("stake", ValueFromAmount(pwalletMain->GetStake()))); } #endif obj.push_back(Pair("blocks", (int)nBestHeight)); obj.push_back(Pair("timeoffset", (int64_t)GetTimeOffset())); obj.push_back(Pair("moneysupply", ValueFromAmount(pindexBest->nMoneySupply))); obj.push_back(Pair("connections", (int)vNodes.size())); obj.push_back(Pair("proxy", (proxy.IsValid() ? proxy.ToStringIPPort() : string()))); obj.push_back(Pair("ip", GetLocalAddress(NULL).ToStringIP())); diff.push_back(Pair("proof-of-work", GetDifficulty())); diff.push_back(Pair("proof-of-stake", GetDifficulty(GetLastBlockIndex(pindexBest, true)))); obj.push_back(Pair("difficulty", diff)); obj.push_back(Pair("testnet", TestNet())); #ifdef ENABLE_WALLET if (pwalletMain) { obj.push_back(Pair("keypoololdest", (int64_t)pwalletMain->GetOldestKeyPoolTime())); obj.push_back(Pair("keypoolsize", (int)pwalletMain->GetKeyPoolSize())); } obj.push_back(Pair("paytxfee", ValueFromAmount(nTransactionFee))); obj.push_back(Pair("mininput", ValueFromAmount(nMinimumInputValue))); if (pwalletMain && pwalletMain->IsCrypted()) obj.push_back(Pair("unlocked_until", (int64_t)nWalletUnlockTime)); #endif obj.push_back(Pair("errors", GetWarnings("statusbar"))); return obj; } #ifdef ENABLE_WALLET class DescribeAddressVisitor : public boost::static_visitor<Object> { public: Object operator()(const CNoDestination &dest) const { return Object(); } Object operator()(const CKeyID &keyID) const { Object obj; CPubKey vchPubKey; pwalletMain->GetPubKey(keyID, vchPubKey); obj.push_back(Pair("isscript", false)); obj.push_back(Pair("pubkey", HexStr(vchPubKey))); obj.push_back(Pair("iscompressed", vchPubKey.IsCompressed())); return obj; } Object operator()(const CScriptID &scriptID) const { Object obj; obj.push_back(Pair("isscript", true)); CScript subscript; pwalletMain->GetCScript(scriptID, subscript); std::vector<CTxDestination> addresses; txnouttype whichType; int nRequired; ExtractDestinations(subscript, whichType, addresses, nRequired); obj.push_back(Pair("script", GetTxnOutputType(whichType))); obj.push_back(Pair("hex", HexStr(subscript.begin(), subscript.end()))); Array a; BOOST_FOREACH(const CTxDestination& addr, addresses) a.push_back(CBitcoinAddress(addr).ToString()); obj.push_back(Pair("addresses", a)); if (whichType == TX_MULTISIG) obj.push_back(Pair("sigsrequired", nRequired)); return obj; } }; #endif Value validateaddress(const Array& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( "validateaddress <terabitaddress>\n" "Return information about <terabitaddress>."); CBitcoinAddress address(params[0].get_str()); bool isValid = address.IsValid(); Object ret; ret.push_back(Pair("isvalid", isValid)); if (isValid) { CTxDestination dest = address.Get(); string currentAddress = address.ToString(); ret.push_back(Pair("address", currentAddress)); #ifdef ENABLE_WALLET bool fMine = pwalletMain ? IsMine(*pwalletMain, dest) : false; ret.push_back(Pair("ismine", fMine)); if (fMine) { Object detail = boost::apply_visitor(DescribeAddressVisitor(), dest); ret.insert(ret.end(), detail.begin(), detail.end()); } if (pwalletMain && pwalletMain->mapAddressBook.count(dest)) ret.push_back(Pair("account", pwalletMain->mapAddressBook[dest])); #endif } return ret; } Value validatepubkey(const Array& params, bool fHelp) { if (fHelp || !params.size() || params.size() > 2) throw runtime_error( "validatepubkey <terabitpubkey>\n" "Return information about <terabitpubkey>."); std::vector<unsigned char> vchPubKey = ParseHex(params[0].get_str()); CPubKey pubKey(vchPubKey); bool isValid = pubKey.IsValid(); bool isCompressed = pubKey.IsCompressed(); CKeyID keyID = pubKey.GetID(); CBitcoinAddress address; address.Set(keyID); Object ret; ret.push_back(Pair("isvalid", isValid)); if (isValid) { CTxDestination dest = address.Get(); string currentAddress = address.ToString(); ret.push_back(Pair("address", currentAddress)); ret.push_back(Pair("iscompressed", isCompressed)); #ifdef ENABLE_WALLET bool fMine = pwalletMain ? IsMine(*pwalletMain, dest) : false; ret.push_back(Pair("ismine", fMine)); if (fMine) { Object detail = boost::apply_visitor(DescribeAddressVisitor(), dest); ret.insert(ret.end(), detail.begin(), detail.end()); } if (pwalletMain && pwalletMain->mapAddressBook.count(dest)) ret.push_back(Pair("account", pwalletMain->mapAddressBook[dest])); #endif } return ret; } Value verifymessage(const Array& params, bool fHelp) { if (fHelp || params.size() != 3) throw runtime_error( "verifymessage <terabitaddress> <signature> <message>\n" "Verify a signed message"); string strAddress = params[0].get_str(); string strSign = params[1].get_str(); string strMessage = params[2].get_str(); CBitcoinAddress addr(strAddress); if (!addr.IsValid()) throw JSONRPCError(RPC_TYPE_ERROR, "Invalid address"); CKeyID keyID; if (!addr.GetKeyID(keyID)) throw JSONRPCError(RPC_TYPE_ERROR, "Address does not refer to key"); bool fInvalid = false; vector<unsigned char> vchSig = DecodeBase64(strSign.c_str(), &fInvalid); if (fInvalid) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Malformed base64 encoding"); CHashWriter ss(SER_GETHASH, 0); ss << strMessageMagic; ss << strMessage; CPubKey pubkey; if (!pubkey.RecoverCompact(ss.GetHash(), vchSig)) return false; return (pubkey.GetID() == keyID); }
[ "yangchigi@yangchigi.com" ]
yangchigi@yangchigi.com
598b9c055f02823deeefce4d9cd18d9845de16d1
927442d1aadd124d1ec5b5a56b3c442ba2735841
/08_cocos2d-x/day07/Demo2/BombHero/BombHero/Classes/GameScene.cpp
2d4cd4df79cae45b67069934ea5f5b33e65475e4
[]
no_license
yitian630/Tarena
2dc2fd276e1404330222d28fb10ddd0116eca74b
49b587ab58cb5e173d6dcd2701ea6db3b35cdf0b
refs/heads/master
2021-01-22T02:49:19.160833
2015-03-12T06:58:26
2015-03-12T06:58:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,349
cpp
// // GameScene.cpp // BombHero // // Created by tarena on 14-6-13. // // #include "GameScene.h" #include "RockerButton.h" #include "Rocker.h" #include "SpriteLayer.h" GameScene* GameScene::createGameScene(int Level) { GameScene *scene = new GameScene(); if (scene && scene->initGameScene(Level)) { scene->autorelease(); return scene; } CC_SAFE_DELETE(scene); return NULL; } bool GameScene::initGameScene(int Level){ if (!CCScene::init()) return false; //地图层 //精灵层 SpriteLayer *spriteLayer = SpriteLayer::create(); this->addChild(spriteLayer); //摇杆层 CCLayer *rockerLayer = CCLayer::create(); //创建摇杆对象 Rocker *rocker = Rocker::createRocker("rocker.png", "rockerBG.png", ccp(100, 100)); rockerLayer->addChild(rocker); rocker->startRocker(); rocker->setDelegate(spriteLayer); //创建摇杆按键 RockerButton *button = RockerButton::creatButton("rocker.png", ccp(700, 100),this, function_selector(GameScene::downButton1)); button->startButton(); rockerLayer->addChild(button); this->addChild(rockerLayer); return true; } void GameScene::downButton(CCObject *sender) { CCLog("按键被按下"); } void GameScene::downButton1() { CCLog("按键被按下"); }
[ "yitian630@163.com" ]
yitian630@163.com
1266ca5075c32cad8863be528a921908f7805936
32b268790ae6a752a1a6b795ddaf2d6f39706c75
/3773-adv-obj-oriented-app-dev-w-c++/programs/e8/e8.1-company1.h
0470a071b74ab272dff5710b6fe4fb186558a90c
[]
no_license
dideler/school-projects
eeb353e902be4577c8818aac06be6f95be2b7f06
1887d3adaa710e9db5f0be290f912a530541a2cb
refs/heads/master
2020-04-13T17:04:57.209111
2015-10-11T21:59:31
2015-10-11T21:59:31
8,245,107
0
0
null
null
null
null
UTF-8
C++
false
false
390
h
// Tomasz Muldner, September 2001 // A program for the book: // "C++ Programming with Design Patterns Revealed", published by Addison-Wesley // Exercise 8.1 #ifndef E8_1_COMPANY1_H #define E8_1_COMPANY1_H #include "e8.1-company2.h" class Company1 : public Company2 { public: Company1(int rep) throw(range_error); // value of rep is for representation: list/vector/deque }; #endif
[ "ideler.dennis@gmail.com" ]
ideler.dennis@gmail.com
35cc3867cfae1a92d1df8c59c26a462f5215d431
dee5febb957c8aaf3c90ac17166394e19b53dc99
/include/cslibs_indexed_storage/interface/data/detail/data_interface_byte_size.hpp
4d8665df45a3de208e27a2252ca3c805ad7fa640
[]
permissive
cogsys-tuebingen/cslibs_indexed_storage
31ec542bf58ac8dec29965d51ead4a444b76b4b3
09abc2bf222d73c15c9b6a44915caa2e97404909
refs/heads/master
2021-06-08T18:35:46.762694
2020-11-26T09:43:58
2020-11-26T09:43:58
90,274,312
0
2
BSD-3-Clause
2019-08-05T07:19:39
2017-05-04T14:41:04
C++
UTF-8
C++
false
false
529
hpp
#pragma once #include <cstddef> #include <type_traits> namespace cslibs_indexed_storage { namespace interface { namespace detail { template<typename T> inline constexpr std::size_t byte_size_impl(const T& value, std::true_type) { return sizeof(T); } template<typename T> inline constexpr std::size_t byte_size_impl(const T& value, std::false_type) { return value.byte_size(); } template<typename T> inline constexpr std::size_t byte_size(const T& value) { return byte_size_impl(value, std::is_pod<T>{}); } } } }
[ "daejiv@googlemail.com" ]
daejiv@googlemail.com
fb754cb456040f52c2c2e787c04880a0a23610c1
e1d6417b995823e507a1e53ff81504e4bc795c8f
/gbk/client/Client/Tools/MrSmith/MrSmith/SMUtil.h
3c904665f65f978e95f414f97717e8d47188c28a
[]
no_license
cjmxp/pap_full
f05d9e3f9390c2820a1e51d9ad4b38fe044e05a6
1963a8a7bda5156a772ccb3c3e35219a644a1566
refs/heads/master
2020-12-02T22:50:41.786682
2013-11-15T08:02:30
2013-11-15T08:02:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,444
h
/****************************************\ * * * Util Function * * * * by fangyuan * \****************************************/ #pragma once #include "SMExportEnable.h" namespace SMITH { //Forward reference declarations class Agent; class Util : public LuaExport< Util > { public: /************************************************************************* Public Interface *************************************************************************/ /*! \brief Init Util \return */ void init(void); /*! \brief release Util \return */ void release(void); /************************************************************************* Util function *************************************************************************/ /*! \brief Hash a string to unsigned int. \return */ static unsigned int hashString2CRC(const char* szName); /*! \brief Create a rand name. \return */ static std::string generateName(void); /*! \brief Throw exception \return */ static void throwException(const char* szFmt, ...); /*! \brief hash string */ static std::string md5String(const char* pStr); public: /************************************************************************* Lua Interface *************************************************************************/ /*! \brief Hash a string to unsigned int. param0[string] - the contents of log. \return return0[int] - the hash value of string. */ int Lua_HashString2CRC(LuaPlus::LuaState* state); /*! \brief Create a rand name. \return return0[string] - rand name */ int Lua_CreateRandName(LuaPlus::LuaState* state); /*! \brief Throw a exception param0[string] - the contents of log. \return */ int Lua_ThrowException(LuaPlus::LuaState* state); int Lua_Sleep(LuaPlus::LuaState* state); int Lua_GetTickCount(LuaPlus::LuaState* state); int Lua_GetSmithCount(LuaPlus::LuaState* state); int Lua_MsgBox(LuaPlus::LuaState* state); protected: /************************************************************************* Implementation Data *************************************************************************/ Agent* m_pAgent; //!< Owner. public: /************************************************************************* Construction and Destruction *************************************************************************/ Util(Agent* pAgent); ~Util(); }; }
[ "viticm@126.com" ]
viticm@126.com
4996ab9726858d82afb36522dac259db3e4f28ff
4366f92962476a332fbdf0f1199569d99f013ba0
/krect/krect_test.cpp
64cc1429acae0aea5f15242fd3e52c6a6237c921
[]
no_license
dpnguyen94/VNOI
8299bb81f7a38e4ec29bd57a319592d416c492c9
0c91fc921e2bb021df25a4b1cb25d63a8dc490b5
refs/heads/master
2021-05-10T20:32:51.761103
2018-01-19T23:19:26
2018-01-19T23:19:26
118,188,671
0
0
null
null
null
null
UTF-8
C++
false
false
1,241
cpp
#include <stdio.h> #include <math.h> #include <limits.h> #include <memory.h> #include <algorithm> #include <numeric> #include <iostream> #include <sstream> #include <string> #include <vector> #include <queue> #include <stack> #include <map> #include <set> using namespace std; #define REP(i,a,b) for (int i=(a),_b=(b);i<_b;i++) #define FOR(i,a,b) for (int i=(a),_b=(b);i<=_b;i++) #define DOW(i,a,b) for (int i=(a),_b=(b);i>=_b;i--) #define TR(c,it) for (typeof((c).begin()) it=(c).begin(); it!=(c).end(); it++) #define pb push_back #define mp make_pair #define sz(c) int((c).size()) #define all(c) (c).begin(), (c).end() typedef long long LL; typedef unsigned long long ULL; typedef pair<int, int> ii; typedef pair<ii, int> iii; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<string> vs; typedef vector<ii> vii; typedef vector<vii> vvii; void input() { } void process() { printf("100 100 26\n"); FOR(i,1,100) { FOR(k,1,100) printf("%c", (char)(rand() % 26 + 'A')); printf("\n"); } } void output() { } int main() { //freopen("input.inp", "r", stdin); freopen("krect.in1", "w", stdout); input(); process(); output(); return 0; }
[ "pdnguyen@sfu.ca" ]
pdnguyen@sfu.ca
efe9484a5121544a8892d21cb0f9b97186c88b85
a449d838325a5c685be5b938175a6c884acea2e8
/miscfunc.cpp
d2abf81402258fceafda1f281d894650f45f31b9
[]
no_license
uzairakbar/Cpp-Invoice-Manager
3b19a75f80038a8f457b319235128c3bac1cf2c2
6eedbaae67da64c9581d013d72c2fe5a99c9cec6
refs/heads/master
2016-09-11T06:15:30.557769
2015-05-17T10:47:49
2015-05-17T10:47:49
35,762,450
2
1
null
null
null
null
UTF-8
C++
false
false
564
cpp
#include "miscfunc.h" #include <windows.h> void gotoxy( int column, int line ) { COORD coord; coord.X = column; coord.Y = line; SetConsoleCursorPosition(GetStdHandle( STD_OUTPUT_HANDLE ),coord); } int wherex() { CONSOLE_SCREEN_BUFFER_INFO csbi; if (!GetConsoleScreenBufferInfo(GetStdHandle( STD_OUTPUT_HANDLE ),&csbi))return -1; return csbi.dwCursorPosition.X; } int wherey() { CONSOLE_SCREEN_BUFFER_INFO csbi; if (!GetConsoleScreenBufferInfo( GetStdHandle( STD_OUTPUT_HANDLE ),&csbi))return -1; return csbi.dwCursorPosition.Y; }
[ "uzairakbar@outlook.com" ]
uzairakbar@outlook.com
c6411483cc3fa27edcb669c205eeaa2b76337afb
1bf6613e21a5695582a8e6d9aaa643af4a1a5fa8
/src/dart/runtime/vm/.svn/text-base/os.h.svn-base
a41e3bd379bc38ba1abfbf18cbd61a9db84ea086
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
pqrkchqps/MusicBrowser
ef5c9603105b4f4508a430d285334667ec3c1445
03216439d1cc3dae160f440417fcb557bb72f8e4
refs/heads/master
2020-05-20T05:12:14.141094
2013-05-31T02:21:07
2013-05-31T02:21:07
10,395,498
1
2
null
null
null
null
UTF-8
C++
false
false
4,857
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. #ifndef VM_OS_H_ #define VM_OS_H_ #include "vm/globals.h" // Forward declarations. struct tm; namespace dart { // Forward declarations. class Isolate; // Interface to the underlying OS platform. class OS { public: // Returns the abbreviated time-zone name for the given instant. // For example "CET" or "CEST". static const char* GetTimeZoneName(int64_t seconds_since_epoch); // Returns the difference in seconds between local time and UTC for the given // instant. // For example 3600 for CET, and 7200 for CEST. static int GetTimeZoneOffsetInSeconds(int64_t seconds_since_epoch); // Returns the difference in seconds between local time and UTC when no // daylight saving is active. // For example 3600 in CET and CEST. static int GetLocalTimeZoneAdjustmentInSeconds(); // Returns the current time in milliseconds measured // from midnight January 1, 1970 UTC. static int64_t GetCurrentTimeMillis(); // Returns the current time in microseconds measured // from midnight January 1, 1970 UTC. static int64_t GetCurrentTimeMicros(); // Returns a cleared aligned array of type T with n entries. // Alignment must be >= 16 and a power of two. template<typename T> static T* AllocateAlignedArray(intptr_t n, intptr_t alignment) { T* result = reinterpret_cast<T*>(OS::AlignedAllocate(n * sizeof(*result), alignment)); memset(result, 0, n * sizeof(*result)); return result; } // Returns an aligned pointer in the C heap with room for size bytes. // Alignment must be >= 16 and a power of two. static void* AlignedAllocate(intptr_t size, intptr_t alignment); // Frees a pointer returned from AlignedAllocate. static void AlignedFree(void* ptr); // Returns the activation frame alignment constraint or zero if // the platform doesn't care. Guaranteed to be a power of two. static word ActivationFrameAlignment(); // This constant is guaranteed to be greater or equal to the // preferred code alignment on all platforms. static const int kMaxPreferredCodeAlignment = 32; // Returns the preferred code alignment or zero if // the platform doesn't care. Guaranteed to be a power of two. static word PreferredCodeAlignment(); // Returns the stack size limit. static uword GetStackSizeLimit(); // Returns number of available processor cores. static int NumberOfAvailableProcessors(); // Sleep the currently executing thread for millis ms. static void Sleep(int64_t millis); // Debug break. static void DebugBreak(); // Not all platform support strndup. static char* StrNDup(const char* s, intptr_t n); // Print formatted output to stdout/stderr for debugging. static void Print(const char* format, ...) PRINTF_ATTRIBUTE(1, 2); static void PrintErr(const char* format, ...) PRINTF_ATTRIBUTE(1, 2); static void VFPrint(FILE* stream, const char* format, va_list args); // Print formatted output info a buffer. // // Does not write more than size characters (including the trailing '\0'). // // Returns the number of characters (excluding the trailing '\0') // that would been written if the buffer had been big enough. If // the return value is greater or equal than the given size then the // output has been truncated. The return value is never negative. // // The buffer will always be terminated by a '\0', unless the buffer // is of size 0. The buffer might be NULL if the size is 0. // // This specification conforms to C99 standard which is implemented // by glibc 2.1+ with one exception: the C99 standard allows a // negative return value. We will terminate the vm rather than let // that occur. static int SNPrint(char* str, size_t size, const char* format, ...) PRINTF_ATTRIBUTE(3, 4); static int VSNPrint(char* str, size_t size, const char* format, va_list args); // Converts a C string which represents a valid dart integer into a 64 bit // value. // Returns false if it is unable to convert the string to a 64 bit value, // the failure could be because of underflow/overflow or invalid characters. // On success the function returns true and 'value' contains the converted // value. static bool StringToInt64(const char* str, int64_t* value); // Register code observers relevant to this OS. static void RegisterCodeObservers(); // Initialize the OS class. static void InitOnce(); // Shut down the OS class. static void Shutdown(); static void Abort(); static void Exit(int code); }; } // namespace dart #endif // VM_OS_H_
[ "creps002@umn.edu" ]
creps002@umn.edu
2456b55e76a51a169439f0ee5bb5c3e6dc4f1666
e7d550d4dbda4e0e0471f15acc34578f7311e3d6
/abc129/b.cpp
ccde8d9922ac1581f360a59577697544be65a1b4
[]
no_license
amrk0320/atcorder-cpp
bf74e26e810b2c130db8cab3441b72f22b5e2cd4
dae9d6060426150620f6a145991a88df6dcf5309
refs/heads/master
2023-02-09T23:11:02.381020
2021-01-05T11:32:17
2021-01-05T11:32:17
286,736,637
1
0
null
null
null
null
UTF-8
C++
false
false
468
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int n; cin >> n; vector<int> w(n); int diff; int s1, s2; s1 = s2 = 0; for (int i = 0; i < n; i++){ cin >> w.at(i); s2 += w.at(i); } for (int i = 1; i < n; i++){ s1 += w.at(i-1); s2 -= w.at(i-1); int diff_now = abs(s1 - s2); if (i == 1) { diff = diff_now; } else { diff = min(diff, diff_now); } } cout << diff << endl; }
[ "munetomo-issei@dmm.com" ]
munetomo-issei@dmm.com
a1716e1e5c93aef3c2e87aa0835f071e98d56509
190cfe853208fa287aa2539f1dd4e729f5235091
/Examination/EMGeneralExaminationReportDialog.cpp
66c08588e3e51820accad901354fd93016f1718e
[]
no_license
smithgold53/HMSReportForms
d8cacb7de1509995b46be16bc5a99ca9104dbea1
7f426de1a3f8b7bad956c62ba61306a3969accf2
refs/heads/master
2020-05-18T09:24:39.420731
2015-05-06T09:47:03
2015-05-06T09:47:03
34,946,969
0
0
null
null
null
null
UTF-8
C++
false
false
25,670
cpp
#include "stdafx.h" #include "EMGeneralExaminationReportDialog.h" #include "ReportDocument.h" #include "Excel.h" #include "HMSMainFrame.h" /*static void _OnYearChangeFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnYearChange(); } */ /*static void _OnYearSetfocusFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnYearSetfocus();} */ /*static void _OnYearKillfocusFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnYearKillfocus(); } */ static int _OnYearCheckValueFnc(CWnd *pWnd){ return ((rptGeneralExaminationReportDialog *)pWnd)->OnYearCheckValue(); } static void _OnReportPeriodSelectChangeFnc(CWnd *pWnd, int nOldItemSel, int nNewItemSel){ ((rptGeneralExaminationReportDialog* )pWnd)->OnReportPeriodSelectChange(nOldItemSel, nNewItemSel); } static void _OnReportPeriodSelendokFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnReportPeriodSelendok(); } /*static void _OnReportPeriodSetfocusFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnReportPeriodKillfocus(); }*/ /*static void _OnReportPeriodKillfocusFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnReportPeriodKillfocus(); }*/ static long _OnReportPeriodLoadDataFnc(CWnd *pWnd){ return ((rptGeneralExaminationReportDialog *)pWnd)->OnReportPeriodLoadData(); } /*static void _OnReportPeriodAddNewFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnReportPeriodAddNew(); }*/ /*static void _OnFromDateChangeFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnFromDateChange(); } */ /*static void _OnFromDateSetfocusFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnFromDateSetfocus();} */ /*static void _OnFromDateKillfocusFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnFromDateKillfocus(); } */ static int _OnFromDateCheckValueFnc(CWnd *pWnd){ return ((rptGeneralExaminationReportDialog *)pWnd)->OnFromDateCheckValue(); } /*static void _OnToDateChangeFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnToDateChange(); } */ /*static void _OnToDateSetfocusFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnToDateSetfocus();} */ /*static void _OnToDateKillfocusFnc(CWnd *pWnd){ ((rptGeneralExaminationReportDialog *)pWnd)->OnToDateKillfocus(); } */ static int _OnToDateCheckValueFnc(CWnd *pWnd){ return ((rptGeneralExaminationReportDialog *)pWnd)->OnToDateCheckValue(); } static void _OnExportSelectFnc(CWnd *pWnd){ rptGeneralExaminationReportDialog *pVw = (rptGeneralExaminationReportDialog *)pWnd; pVw->OnExportSelect(); } static void _OnPrintSelectFnc(CWnd *pWnd){ rptGeneralExaminationReportDialog *pVw = (rptGeneralExaminationReportDialog *)pWnd; pVw->OnPrintSelect(); } static void _OnCloseSelectFnc(CWnd *pWnd){ rptGeneralExaminationReportDialog *pVw = (rptGeneralExaminationReportDialog *)pWnd; pVw->OnCloseSelect(); } static int _OnAddrptGeneralExaminationReportDialogFnc(CWnd *pWnd){ return ((rptGeneralExaminationReportDialog*)pWnd)->OnAddrptGeneralExaminationReportDialog(); } static int _OnEditrptGeneralExaminationReportDialogFnc(CWnd *pWnd){ return ((rptGeneralExaminationReportDialog*)pWnd)->OnEditrptGeneralExaminationReportDialog(); } static int _OnDeleterptGeneralExaminationReportDialogFnc(CWnd *pWnd){ return ((rptGeneralExaminationReportDialog*)pWnd)->OnDeleterptGeneralExaminationReportDialog(); } static int _OnSaverptGeneralExaminationReportDialogFnc(CWnd *pWnd){ return ((rptGeneralExaminationReportDialog*)pWnd)->OnSaverptGeneralExaminationReportDialog(); } static int _OnCancelrptGeneralExaminationReportDialogFnc(CWnd *pWnd){ return ((rptGeneralExaminationReportDialog*)pWnd)->OnCancelrptGeneralExaminationReportDialog(); } rptGeneralExaminationReportDialog::rptGeneralExaminationReportDialog(CWnd *pParent) { m_nDlgWidth = 430; m_nDlgHeight = 130; SetDefaultValues(); m_bPreview = true; } rptGeneralExaminationReportDialog::~rptGeneralExaminationReportDialog() { } void rptGeneralExaminationReportDialog::OnCreateComponents() { m_wndReportConditio.Create(this, _T("Report Condition"), 5, 5, 420, 90); m_wndYearLabel.Create(this, _T("Year"), 10, 30, 90, 55); m_wndYear.Create(this,95, 30, 205, 55); m_wndReportPeriodLabel.Create(this, _T("Report Period"), 210, 30, 300, 55); m_wndReportPeriod.Create(this,305, 30, 415, 55); m_wndFromDateLabel.Create(this, _T("From Date"), 10, 60, 90, 85); m_wndFromDate.Create(this,95, 60, 205, 85); m_wndToDateLabel.Create(this, _T("To Date"), 210, 60, 300, 85); m_wndToDate.Create(this,305, 60, 415, 85); m_wndPrint.Create(this, _T("&Print"), 255, 95, 335, 120); m_wndExport.Create(this, _T("&Export"), 340, 95, 420, 120); } void rptGeneralExaminationReportDialog::OnInitializeComponents(){ CHMSMainFrame *pMF = (CHMSMainFrame*) AfxGetMainWnd(); m_wndYear.SetLimitText(16); // //m_wndYear.SetCheckValue(true); // //m_wndReportPeriod.SetCheckValue(true); m_wndReportPeriod.LimitText(35); //m_wndFromDate.SetMax(CDateTime(pMF->GetSysDateTime())); //m_wndFromDate.SetCheckValue(true); //m_wndToDate.SetMax(CDateTime(pMF->GetSysDateTime())); //m_wndToDate.SetCheckValue(true); m_wndReportPeriod.InsertColumn(0, _T("ID"), CFMT_NUMBER, 50); m_wndReportPeriod.InsertColumn(1, _T("Description"), CFMT_TEXT, 200); } void rptGeneralExaminationReportDialog::OnSetWindowEvents() { //m_wndYear.SetEvent(WE_CHANGE, _OnYearChangeFnc); //m_wndYear.SetEvent(WE_SETFOCUS, _OnYearSetfocusFnc); //m_wndYear.SetEvent(WE_KILLFOCUS, _OnYearKillfocusFnc); m_wndYear.SetEvent(WE_CHECKVALUE, _OnYearCheckValueFnc); m_wndReportPeriod.SetEvent(WE_SELENDOK, _OnReportPeriodSelendokFnc); //m_wndReportPeriod.SetEvent(WE_SETFOCUS, _OnReportPeriodSetfocusFnc); //m_wndReportPeriod.SetEvent(WE_KILLFOCUS, _OnReportPeriodKillfocusFnc); m_wndReportPeriod.SetEvent(WE_SELCHANGE, _OnReportPeriodSelectChangeFnc); m_wndReportPeriod.SetEvent(WE_LOADDATA, _OnReportPeriodLoadDataFnc); //m_wndReportPeriod.SetEvent(WE_ADDNEW, _OnReportPeriodAddNewFnc); //m_wndFromDate.SetEvent(WE_CHANGE, _OnFromDateChangeFnc); //m_wndFromDate.SetEvent(WE_SETFOCUS, _OnFromDateSetfocusFnc); //m_wndFromDate.SetEvent(WE_KILLFOCUS, _OnFromDateKillfocusFnc); m_wndFromDate.SetEvent(WE_CHECKVALUE, _OnFromDateCheckValueFnc); //m_wndToDate.SetEvent(WE_CHANGE, _OnToDateChangeFnc); //m_wndToDate.SetEvent(WE_SETFOCUS, _OnToDateSetfocusFnc); //m_wndToDate.SetEvent(WE_KILLFOCUS, _OnToDateKillfocusFnc); m_wndToDate.SetEvent(WE_CHECKVALUE, _OnToDateCheckValueFnc); m_wndPrint.SetEvent(WE_CLICK, _OnPrintSelectFnc); m_wndExport.SetEvent(WE_CLICK, _OnExportSelectFnc); m_wndClose.SetEvent(WE_CLICK, _OnCloseSelectFnc); CHMSMainFrame *pMF = (CHMSMainFrame*) AfxGetMainWnd(); CString tmpStr; tmpStr = pMF->GetSysDate(); m_nYear = ToInt(tmpStr.Left(4)); //m_szFromDate = m_szToDate = tmpStr; m_szReportPeriodKey.Format(_T("%d"), ToInt(tmpStr.Mid(5, 2))); SetMode(VM_EDIT); } void rptGeneralExaminationReportDialog::OnDoDataExchange(CDataExchange* pDX){ DDX_Text(pDX, m_wndYear.GetDlgCtrlID(), m_nYear); DDX_TextEx(pDX, m_wndReportPeriod.GetDlgCtrlID(), m_szReportPeriodKey); DDX_TextEx(pDX, m_wndFromDate.GetDlgCtrlID(), m_szFromDate); DDX_TextEx(pDX, m_wndToDate.GetDlgCtrlID(), m_szToDate); } void rptGeneralExaminationReportDialog::GetDataToScreen(){ CHMSMainFrame *pMF = (CHMSMainFrame*) AfxGetMainWnd(); CRecord rs(&pMF->m_db); CString szSQL; szSQL.Format(_T("SELECT * FROM ")); rs.ExecSQL(szSQL); } void rptGeneralExaminationReportDialog::GetScreenToData(){ CHMSMainFrame *pMF = (CHMSMainFrame*) AfxGetMainWnd(); } void rptGeneralExaminationReportDialog::SetDefaultValues(){ m_nYear=0; m_szReportPeriodKey.Empty(); m_szFromDate.Empty(); m_szToDate.Empty(); } int rptGeneralExaminationReportDialog::SetMode(int nMode) { int nOldMode = GetMode(); CGuiView::SetMode(nMode); CHMSMainFrame *pMF = (CHMSMainFrame *) AfxGetMainWnd(); CString szSQL; CRecord rs(&pMF->m_db); CDate dt; CDateTime dt1, dt2; dt.ParseDate(pMF->GetSysDate()); switch(nMode) { case VM_ADD: EnableControls(TRUE); EnableButtons(TRUE, 3, 4, -1); SetDefaultValues(); break; case VM_EDIT: EnableControls(TRUE); EnableButtons(TRUE, 0, 1, 2, -1); dt1.SetDate(dt.GetYear(), dt.GetMonth(), dt.GetDay()); dt1.SetTime(0, 1, 0); dt2.SetDate(dt.GetYear(), dt.GetMonth(), dt.GetDay()); dt2.SetTime(23, 59, 0); m_szFromDate = dt1.GetDateTime(); m_szToDate = dt2.GetDateTime(); break; case VM_VIEW: EnableControls(TRUE); EnableButtons(FALSE, 3, 4, -1); break; case VM_NONE: EnableControls(TRUE); EnableButtons(TRUE, 0, 6, -1); SetDefaultValues(); break; }; UpdateData(FALSE); return nOldMode; } /*void rptGeneralExaminationReportDialog::OnYearChange(){ } */ /*void rptGeneralExaminationReportDialog::OnYearSetfocus(){ } */ /*void rptGeneralExaminationReportDialog::OnYearKillfocus(){ } */ int rptGeneralExaminationReportDialog::OnYearCheckValue(){ return 0; } void rptGeneralExaminationReportDialog::OnReportPeriodSelectChange(int nOldItemSel, int nNewItemSel) { CHMSMainFrame *pMF = (CHMSMainFrame*) AfxGetMainWnd(); } void rptGeneralExaminationReportDialog::OnReportPeriodSelendok() { CString tmpStr; CDate dte; UpdateData(true); int nMonth = ToInt(m_szReportPeriodKey); if(nMonth > 0 && nMonth <= 12) { m_szFromDate.Format(_T("%.4d/%.2d/01"), m_nYear, nMonth); dte.ParseDate(m_szFromDate); m_szToDate.Format(_T("%.4d/%.2d/%.2d 23:59"), m_nYear, nMonth, dte.GetMonthLastDay()); } if(nMonth == 13) { m_szFromDate.Format(_T("%.4d/01/01"), m_nYear); tmpStr.Format(_T("%.4d/03/01"), m_nYear); dte.ParseDate(tmpStr); m_szToDate.Format(_T("%.4d/03/%.2d 23:59" ), m_nYear, dte.GetMonthLastDay()); } if(nMonth == 14) { m_szFromDate.Format(_T("%.4d/04/01"), m_nYear); tmpStr.Format(_T("%.4d/06/01"), m_nYear); dte.ParseDate(tmpStr); m_szToDate.Format(_T("%.4d/06/%.2d 23:59"), m_nYear, dte.GetMonthLastDay()); } if(nMonth == 15) { m_szFromDate.Format(_T("%.4d/07/01"), m_nYear); tmpStr.Format(_T("%.4d/09/01"), m_nYear); dte.ParseDate(tmpStr); m_szToDate.Format(_T("%.4d/09/%.2d 23:59"), m_nYear, dte.GetMonthLastDay()); } if(nMonth == 16){ m_szFromDate.Format(_T("%.4d/10/01"), m_nYear); tmpStr.Format(_T("%.4d/10/01"), m_nYear); dte.ParseDate(tmpStr); m_szToDate.Format(_T("%.4d/12/%.2d 23:59"), m_nYear, dte.GetMonthLastDay()); } if(nMonth == 17){ m_szFromDate.Format(_T("%.4d/01/01"), m_nYear); tmpStr.Format(_T("%.4d/12/01"), m_nYear); dte.ParseDate(tmpStr); m_szToDate.Format(_T("%.4d/12/%.2d 23:59"), m_nYear, dte.GetMonthLastDay()); } UpdateData(false); } /*void rptGeneralExaminationReportDialog::OnReportPeriodSetfocus(){ }*/ /*void rptGeneralExaminationReportDialog::OnReportPeriodKillfocus(){ }*/ long rptGeneralExaminationReportDialog::OnReportPeriodLoadData() { CHMSMainFrame *pMF = (CHMSMainFrame*) AfxGetMainWnd(); CRecord rs(&pMF->m_db); CString szSQL, szWhere; if(m_wndReportPeriod.IsSearchKey() && ToInt(m_szReportPeriodKey) > 0) { szWhere.Format(_T(" WHERE hpr_idx=%ld"), ToInt(m_szReportPeriodKey)); } m_wndReportPeriod.DeleteAllItems(); int nCount = 0; szSQL.Format(_T("SELECT * FROM hms_period_report %s ORDER BY hpr_idx "), szWhere); nCount = rs.ExecSQL(szSQL); while(!rs.IsEOF()){ m_wndReportPeriod.AddItems( rs.GetValue(_T("hpr_idx")), rs.GetValue(_T("hpr_name")), NULL); rs.MoveNext(); } return nCount; } /*void rptGeneralExaminationReportDialog::OnReportPeriodAddNew(){ CHMSMainFrame *pMF = (CHMSMainFrame*) AfxGetMainWnd(); } */ /*void rptGeneralExaminationReportDialog::OnFromDateChange(){ } */ /*void rptGeneralExaminationReportDialog::OnFromDateSetfocus(){ } */ /*void rptGeneralExaminationReportDialog::OnFromDateKillfocus(){ } */ int rptGeneralExaminationReportDialog::OnFromDateCheckValue(){ return 0; } /*void rptGeneralExaminationReportDialog::OnToDateChange(){ } */ /*void rptGeneralExaminationReportDialog::OnToDateSetfocus(){ } */ /*void rptGeneralExaminationReportDialog::OnToDateKillfocus(){ } */ int rptGeneralExaminationReportDialog::OnToDateCheckValue() { return 0; } void rptGeneralExaminationReportDialog::OnExportSelect(){ _debug(_T("%s"), CString(typeid(this).name())); CHMSMainFrame *pMF = (CHMSMainFrame*) AfxGetMainWnd(); UpdateData(true); CRecord rs(&pMF->m_db); CString tmpStr, szSQL, szFromDate, szToDate; BeginWaitCursor(); szSQL = GetQueryString(); rs.ExecSQL(szSQL); CExcel xls; xls.CreateSheet(1); xls.SetWorksheet(0); xls.SetColumnWidth(0, 7); xls.SetColumnWidth(1,25); xls.SetColumnWidth(2, 14); xls.SetColumnWidth(3, 14); xls.SetColumnWidth(4, 14); xls.SetColumnWidth(5, 14); xls.SetColumnWidth(6, 14); xls.SetColumnWidth(7, 14); xls.SetColumnWidth(8, 14); xls.SetColumnWidth(9, 14); xls.SetCellMergedColumns(0, 1, 3); xls.SetCellMergedColumns(0, 2, 3); xls.SetCellText(0, 1, pMF->m_CompanyInfo.sc_pname,FMT_CENTER,true,12); xls.SetCellText(0, 2, pMF->m_CompanyInfo.sc_name,FMT_CENTER,true,12); xls.SetCellMergedColumns(0,3,10); xls.SetCellText(0, 3, _T("\x42\xC1O \x43\xC1O T\x1ED4NG H\x1EE2P TH\x45O PH\xD2NG KH\xC1M"),FMT_CENTER, true, 16); tmpStr.Format(_T("T\x1EEB ng\xE0y %s \x110\x1EBFn ng\xE0y %s"), CDateTime::Convert(m_szFromDate, yyyymmdd|hhmm, ddmmyyyy|hhmm), CDateTime::Convert(m_szToDate, yyyymmdd|hhmm, ddmmyyyy|hhmm)); xls.SetCellText(0, 4, tmpStr, FMT_CENTER, true, 12); xls.SetCellMergedColumns(0,4,10); int nRow = 6; xls.SetCellText(0, nRow, _T("STT"), FMT_CENTER,true); TranslateString(_T("Ph\xF2ng kh\xE1m"), tmpStr); xls.SetCellText(1, nRow, tmpStr, FMT_CENTER,true); TranslateString(_T("T/S l\x1EA7n kh\xE1m"), tmpStr); xls.SetCellText(2, nRow, tmpStr, FMT_CENTER,true); TranslateString(_T("V\xE0o vi\x1EC7n"), tmpStr); xls.SetCellText(3, nRow, tmpStr, FMT_CENTER,true); TranslateString(_T("\x43huy\x1EC3n vi\x1EC7n"), tmpStr); xls.SetCellText(4, nRow, tmpStr, FMT_CENTER,true); TranslateString(_T("\x44\x1ECB\x63h v\x1EE5"), tmpStr); xls.SetCellText(5, nRow, tmpStr, FMT_CENTER,true); TranslateString(_T("\x42\x1EA3o hi\x1EC3m y t\x1EBF"), tmpStr); xls.SetCellText(6, nRow, tmpStr, FMT_CENTER,true); TranslateString(_T("Tr\x1EBB \x65m"), tmpStr); xls.SetCellText(7, nRow, tmpStr, FMT_CENTER,true); TranslateString(_T("\x43huy\x1EC3n kh\xE1m"), tmpStr); xls.SetCellText(8, nRow, tmpStr, FMT_CENTER,true); TranslateString(_T("Kh\xE1m s\x1EE9\x63 kh\x1ECF\x65"), tmpStr); xls.SetCellText(9, nRow, tmpStr, FMT_CENTER,true); int nIndex = 1; int nTotal[10]; for (int i= 2 ;i<=9;i++) { nTotal[i]=0; } while(!rs.IsEOF()) { nRow++; tmpStr.Format(_T("%d"), nIndex++); xls.SetCellText(0, nRow, tmpStr, FMT_INTEGER); rs.GetValue(_T("roomname"),tmpStr); xls.SetCellText(1, nRow, tmpStr, FMT_TEXT); rs.GetValue(_T("totalexam"), tmpStr); nTotal[2] += ToInt(tmpStr); xls.SetCellText(2, nRow, tmpStr, FMT_NUMBER1); rs.GetValue(_T("totaladmit"), tmpStr); nTotal[3] += ToInt(tmpStr); xls.SetCellText(3, nRow, tmpStr, FMT_NUMBER1); rs.GetValue(_T("totaldischarge"), tmpStr); nTotal[4] += ToInt(tmpStr); xls.SetCellText(4, nRow, tmpStr, FMT_NUMBER1); rs.GetValue(_T("totalservice"), tmpStr); nTotal[5] += ToInt(tmpStr); xls.SetCellText(5, nRow, tmpStr, FMT_NUMBER1); rs.GetValue(_T("totalinsurance"), tmpStr); nTotal[6] += ToInt(tmpStr); xls.SetCellText(6, nRow, tmpStr, FMT_NUMBER1); rs.GetValue(_T("totalchild"), tmpStr); nTotal[7] += ToInt(tmpStr); xls.SetCellText(7, nRow, tmpStr, FMT_NUMBER1); rs.GetValue(_T("totalmove"), tmpStr); nTotal[8] += ToInt(tmpStr); xls.SetCellText(8, nRow, tmpStr, FMT_NUMBER1); rs.GetValue(_T("totalhealth"), tmpStr); nTotal[9] += ToInt(tmpStr); xls.SetCellText(9, nRow,tmpStr,FMT_NUMBER1); rs.MoveNext(); } nRow++; xls.SetCellMergedColumns(0,nRow,2); TranslateString(_T("T\x1ED5ng \x63\x1ED9ng"),tmpStr); xls.SetCellText(0, nRow, tmpStr, FMT_CENTER, true, 12); for (int i =2; i <= 9; i++) { tmpStr.Format(_T("%ld"),nTotal[i] ); xls.SetCellText(i, nRow, tmpStr, FMT_NUMBER1, true, 12); } xls.Save(_T("Exports\\Bao cao tong hop theo phong kham benh.xls")); EndWaitCursor(); } void rptGeneralExaminationReportDialog::OnPrintSelect(){ CHMSMainFrame *pMF = (CHMSMainFrame*) AfxGetMainWnd(); UpdateData(true); PrintGeneralExaminationReport(m_szFromDate, m_szToDate); } void rptGeneralExaminationReportDialog::OnCloseSelect(){ CHMSMainFrame *pMF = (CHMSMainFrame*) AfxGetMainWnd(); } int rptGeneralExaminationReportDialog::OnAddrptGeneralExaminationReportDialog(){ if(GetMode() == VM_ADD || GetMode() == VM_EDIT) return -1; CHMSMainFrame *pMF = (CHMSMainFrame *) AfxGetMainWnd(); SetMode(VM_ADD); return 0; } int rptGeneralExaminationReportDialog::OnEditrptGeneralExaminationReportDialog(){ if(GetMode() != VM_VIEW) return -1; CHMSMainFrame *pMF = (CHMSMainFrame *) AfxGetMainWnd(); SetMode(VM_EDIT); return 0; } int rptGeneralExaminationReportDialog::OnDeleterptGeneralExaminationReportDialog(){ if(GetMode() != VM_VIEW) return -1; CHMSMainFrame *pMF = (CHMSMainFrame *)AfxGetMainWnd(); CString szSQL; if(ShowMessage(1, MB_YESNO|MB_ICONQUESTION|MB_DEFBUTTON2) == IDNO) return -1; szSQL.Format(_T("DELETE FROM WHERE AND") ); int ret = pMF->ExecSQL(szSQL); if(ret >= 0){ SetMode(VM_NONE); OnCancelrptGeneralExaminationReportDialog(); } return 0; } int rptGeneralExaminationReportDialog::OnSaverptGeneralExaminationReportDialog(){ if(GetMode() != VM_ADD && GetMode() != VM_EDIT) return -1; if(!IsValidateData()) return -1; CHMSMainFrame *pMF = (CHMSMainFrame *)AfxGetMainWnd(); CString szSQL; if(GetMode() == VM_ADD){ //szSQL = m_tblTbl.GetInsertSQL(); } else if(GetMode() == VM_EDIT){ CString szWhere; szWhere.Format(_T(" WHERE")); //szSQL = m_tblTbl.GetUpdateSQL(_T("createdby,createddate")); szSQL += szWhere; } _fmsg(_T("%s"), szSQL); int ret = pMF->ExecSQL(szSQL); if(ret > 0) { //OnrptGeneralExaminationReportDialogListLoadData(); SetMode(VM_VIEW); } else { } return ret; return 0; } int rptGeneralExaminationReportDialog::OnCancelrptGeneralExaminationReportDialog(){ if(GetMode() == VM_EDIT) { SetMode(VM_VIEW); } else { SetMode(VM_NONE); } CHMSMainFrame *pMF = (CHMSMainFrame *)AfxGetMainWnd(); return 0; } int rptGeneralExaminationReportDialog::OnrptGeneralExaminationReportDialogListLoadData(){ return 0; } void rptGeneralExaminationReportDialog::PrintGeneralExaminationReport(CString szFromDate, CString szToDate) { CHMSMainFrame *pMF = (CHMSMainFrame*)AfxGetMainWnd(); CRecord rs(&pMF->m_db); CString szSQL, tmpStr, szFromDateLabel, szToDateLabel, szWhere; CString szDate, szSysDate; szSysDate = pMF->GetSysDate(); CReport rpt; /* szSQL.Format(_T(" SELECT hrl_name as roomname, deptid, roomid, ") \ _T(" sum(totalexam) as totalexam,") \ _T(" sum(totaladmit) as totaladmit,") \ _T(" sum(totaldischarge) as totaldischarge,") \ _T(" sum(totalservice) as totalservice,") \ _T(" sum(totalinsurance) as totalinsurance,") \ _T(" sum(totalchild) as totalchild,") \ _T(" sum(totalmove) as totalmove,") \ _T(" sum(totalhealth) as totalhealth") \ _T(" FROM") \ _T(" (") \ _T(" SELECT he_deptid as deptid, ") \ _T(" he_roomid as roomid, ") \ _T(" case when date(he_examdate) BETWEEN date('%s') and date('%s') and he_status <> 'O' then 1 else 0 end as totalexam,") \ _T(" case when hd_suggestion='A' and date(hd_enddate) BETWEEN date('%s') and date('%s') and hd_status ='T' and hcr_status in('I','T') and he_receptidx = 1 then 1 else 0 end as totaladmit,") \ _T(" case when hd_suggestion='T' and date(hd_enddate) BETWEEN date('%s') and date('%s') and he_receptidx=hd_areceptidx then 1 else 0 end as totaldischarge,") \ _T(" case when ho_type='S' and date(he_examdate) BETWEEN date('%s') and date('%s') and he_status <> 'O' then 1 else 0 end as totalservice,") \ _T(" case when ho_type='I' and date(he_examdate) BETWEEN date('%s') and date('%s') and he_status <> 'O' then 1 else 0 end as totalinsurance,") \ _T(" case when ho_type='C' and date(he_examdate) BETWEEN date('%s') and date('%s') and he_status <> 'O' then 1 else 0 end as totalchild,") \ _T(" case when he_hasfee='M' and date(he_examdate) BETWEEN date('%s') and date('%s') then 1 else 0 end as totalmove, ") \ _T(" case when hd_status ='T' and hfl_subitem='1' then 1 else 0 end as totalhealth") \ _T(" FROM hms_doc") \ _T(" LEFT JOIN hms_clinical_record ON(hcr_docno=hd_docno) ") \ _T(" LEFT JOIN hms_exam ON(he_docno=hd_docno)") \ _T(" LEFT JOIN hms_fee_list ON(hfl_typeid='E' and hfl_feeid=he_examtype)") \ _T(" LEFT JOIN hms_object ON(ho_id=hd_object)") \ _T(" WHERE he_deptid ='%s' ") \ _T(" ) as tbl") \ _T(" LEFT JOIN hms_roomlist ON(deptid=hrl_deptid and roomid=hrl_id)") \ _T(" GROUP BY deptid, roomid, roomname") \ _T(" ORDER BY deptid, roomid") ,szFromDate, szToDate,szFromDate, szToDate,szFromDate, szToDate, szFromDate, szToDate,szFromDate, szToDate,szFromDate, szToDate,szFromDate, szToDate, pMF->m_szDept); _fmsg(_T("%s"), szSQL); */ BeginWaitCursor(); szSQL = GetQueryString(); rs.ExecSQL(szSQL); if(!rpt.Init(_T("Reports/HMS/HE_GENERALEXAMINATIONREPORT.RPT"))) return ; //Report Header tmpStr = rpt.GetReportHeader()->GetValue(_T("ReportDate")); szDate.Format(tmpStr, CDateTime::Convert(szFromDate, yyyymmdd|hhmm, ddmmyyyy|hhmm), CDateTime::Convert(szToDate, yyyymmdd|hhmm, ddmmyyyy|hhmm)); rpt.GetReportHeader()->SetValue(_T("ReportDate"), szDate); rpt.GetReportHeader()->SetValue(_T("HEALTHSERVICE"), pMF->m_CompanyInfo.sc_pname); rpt.GetReportHeader()->SetValue(_T("HOSPITALNAME"), pMF->m_CompanyInfo.sc_name); //Report Detail CReportSection* rptDetail = rpt.GetDetail(); int nIndex = 1; int nTotal[10]; for (int i =0; i < 10; i++) nTotal[i] = 0; while(!rs.IsEOF()) { rptDetail = rpt.AddDetail(); tmpStr.Format(_T("%d"), nIndex++); rptDetail->SetValue(_T("0"), tmpStr); rs.GetValue(_T("roomname"), tmpStr); rptDetail->SetValue(_T("roomname"), tmpStr); rs.GetValue(_T("totalexam"), tmpStr); nTotal[0] += ToInt(tmpStr); rptDetail->SetValue(_T("1"), tmpStr); rs.GetValue(_T("totaladmit"), tmpStr); nTotal[1] += ToInt(tmpStr); rptDetail->SetValue(_T("2"), tmpStr); rs.GetValue(_T("totaldischarge"), tmpStr); nTotal[2] += ToInt(tmpStr); rptDetail->SetValue(_T("3"), tmpStr); rs.GetValue(_T("totalservice"), tmpStr); nTotal[3] += ToInt(tmpStr); rptDetail->SetValue(_T("4"), tmpStr); rs.GetValue(_T("totalinsurance"), tmpStr); nTotal[4] += ToInt(tmpStr); rptDetail->SetValue(_T("5"), tmpStr); rs.GetValue(_T("totalchild"), tmpStr); nTotal[5] += ToInt(tmpStr); rptDetail->SetValue(_T("6"), tmpStr); rs.GetValue(_T("totalmove"), tmpStr); nTotal[6] += ToInt(tmpStr); rptDetail->SetValue(_T("7"), tmpStr); rs.GetValue(_T("totalhealth"), tmpStr); nTotal[7] += ToInt(tmpStr); rptDetail->SetValue(_T("8"), tmpStr); rs.MoveNext(); } for (int i =0; i < 10; i++){ tmpStr.Format(_T("sum%d"), i+1); rpt.GetReportFooter()->SetValue(tmpStr, ToString(nTotal[i])); } //Page Footer //Report Footer szDate.Format(rpt.GetReportFooter()->GetValue(_T("PrintDate")),szSysDate.Right(2),szSysDate.Mid(5,2),szSysDate.Left(4)); rpt.GetReportFooter()->SetValue(_T("PrintDate"), szDate); EndWaitCursor(); rpt.PrintPreview(); } CString rptGeneralExaminationReportDialog::GetQueryString(){ CHMSMainFrame *pMF = (CHMSMainFrame*) AfxGetMainWnd(); CString szSQL; szSQL.Format(_T(" SELECT hrl_name as roomname, deptid, roomid, ") \ _T(" sum(totalexam) as totalexam,") \ _T(" sum(totaladmit) as totaladmit,") \ _T(" sum(totaldischarge) as totaldischarge,") \ _T(" sum(totalservice) as totalservice,") \ _T(" sum(totalinsurance) as totalinsurance,") \ _T(" sum(totalchild) as totalchild,") \ _T(" sum(totalmove) as totalmove,") \ _T(" sum(totalhealth) as totalhealth") \ _T(" FROM") \ _T(" (") \ _T(" SELECT he_deptid as deptid, ") \ _T(" he_roomid as roomid, ") \ _T(" 1 as totalexam,") \ _T(" case when hd_suggestion='D' AND hd_status ='T' AND he_doctor=hd_doctor AND he_receptidx=hd_areceptidx then 1 else 0 end as totaladmit,") \ _T(" case when hd_suggestion='F' AND hd_status ='T' AND he_doctor=hd_doctor AND he_receptidx=hd_areceptidx then 1 else 0 end as totaldischarge,") \ _T(" case when ho_type='S' then 1 else 0 end as totalservice,") \ _T(" case when ho_type='I' then 1 else 0 end as totalinsurance,") \ _T(" case when ho_type='C' then 1 else 0 end as totalchild,") \ _T(" case when he_hasfee='M' then 1 else 0 end as totalmove, ") \ _T(" case when hd_status ='T' AND he_doctor=hd_doctor AND he_receptidx=hd_areceptidx and hfl_subitem='1' then 1 else 0 end as totalhealth") \ _T(" FROM hms_doc") \ _T(" LEFT JOIN hms_exam ON(he_docno=hd_docno)") \ _T(" LEFT JOIN hms_fee_list ON(hfl_typeid='E' and hfl_feeid=he_examtype)") \ _T(" LEFT JOIN hms_object ON(ho_id=hd_object)") \ _T(" WHERE he_deptid ='%s' and he_examdate BETWEEN cast_string2timestamp('%s') and cast_string2timestamp('%s') and he_status <>'O' ") \ _T(" ) tbl") \ _T(" LEFT JOIN hms_roomlist ON(deptid=hrl_deptid and roomid=hrl_id)") \ _T(" GROUP BY deptid, roomid, hrl_name") \ _T(" ORDER BY deptid, roomid"), pMF->m_szDept, m_szFromDate, m_szToDate); return szSQL; }
[ "smithgold53@gmail.com" ]
smithgold53@gmail.com
3c54f99ebb74714e6b361f73d8d25ddb18786ea6
da3c59e9e54b5974648828ec76f0333728fa4f0c
/mobilemessaging/postcard/postcardinc/PostcardController.h
956ce1116a150844af8bda19e49d5de1f9e311aa
[]
no_license
finding-out/oss.FCL.sf.app.messaging
552a95b08cbff735d7f347a1e6af69fc427f91e8
7ecf4269c53f5b2c6a47f3596e77e2bb75c1700c
refs/heads/master
2022-01-29T12:14:56.118254
2010-11-03T20:32:03
2010-11-03T20:32:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,922
h
/* * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" * which accompanies this distribution, and is available * at the URL "http://www.eclipse.org/legal/epl-v10.html". * * Initial Contributors: * Nokia Corporation - initial contribution. * * Contributors: * * Description: PostcardController declaration * */ #ifndef POSTCARDCONTROLLER #define POSTCARDCONTROLLER #include <e32base.h> #include <coecntrl.h> #include <AknsItemID.h> #include "PostcardDocument.h" #ifdef RD_SCALABLE_UI_V2 #include "PostcardPointerObserver.h" #endif // FOWARD DECLARTIONS class CGulIcon; class CAknsBasicBackgroundControlContext; // CLASS DECLARATION /** * Container control class. * */ class CPostcardController : public CCoeControl { public: // Constructors and destructor /** * Constructor. * @return pointer to the object */ static CPostcardController* NewL( CPostcardDocument& aDocument #ifdef RD_SCALABLE_UI_V2 , MPocaPointerEventObserver& aObserver #endif ); /** * Destructor. */ ~CPostcardController(); public: // New functions /** * Returns ETrue if front page is focused. */ TBool Frontpage( ); /** * Returns ETrue if aPart is focused */ TBool IsFocused( TPostcardPart& aPart ); /** * Returns the focused part */ TPostcardPart Focused( ); /** * Sets aPart as focused item */ void SetFocused( TPostcardPart aPart ); /** * Sets the bitmap of part aPart. Takes the ownership. * Deletes the previous one. */ void SetBitmap( TPostcardPart aPart, CGulIcon* aIcon ); /** * Removes and deletes bitmap aPart */ void RemoveBitmap( TPostcardPart aPart ); /** * Reloads icons. Called from AppUi, if skin has changed. */ void ReLoadIconsL(); /** * Rereads the coordinates of bitmaps from LAF */ void RefreshCoordinates( ); /** * Calls MoveHorizontally or MoveVertically according to aKeyEvent */ void Move( TInt aScanCode ); /** * Changes the focus in the back side if possible */ void MoveHorizontally( TBool aRight ); /** * Changes the focus from back to front or vice versa if possible */ void MoveVertically( TBool aUp ); /** * Makes itself focused, visible and active. */ void ActivateL( ); /** * Gets an array of TRects and sets them as greeting field lines */ void SetGreetingLines( CArrayPtrFlat<TRect>& aGreetingLines ); /** * Gets an array of TRects and sets them as recipient field lines */ void SetRecipientLines( CArrayPtrFlat<TRect>& aRecipientLines ); private: // New functions /** * Default C++ constructor. */ CPostcardController( CPostcardDocument& aDocument #ifdef RD_SCALABLE_UI_V2 , MPocaPointerEventObserver& aObserver #endif ); /** * 2nd phase Constructor. */ void ConstructL( ); private: // Functions from base classes /** * From CoeControl,CountComponentControls. Returns always 0. */ TInt CountComponentControls( ) const; /** * From CCoeControl,ComponentControl. Returns always NULL. */ CCoeControl* ComponentControl( TInt aIndex ) const; /** * Calls DrawBackground. * Also calls DrawIcons for the objects we have on top of the background */ void Draw( const TRect& aRect ) const; /** * Draws possible skin background. * Draws the background icons. */ void DrawBackground( ) const; /** * Draws the image side. */ void DrawImageSide( ) const; /** * Draws the text side. */ void DrawTextSide( ) const; /** * Draws icon aIcon in rect aRect. Called by DrawImageSide or DrawTextSide. */ void DrawIcon( const CGulIcon& aIcon, const TRect& aRect ) const; /** * Draws arrow down or up icon based on the side and whether in editor or * in viewer mode. */ void DrawScrollArrows() const; /** * Draws focus lines. Called by DrawTextSide. */ void DrawFocus( ) const; protected: // From CCoeControl /** * Returns the Mop supply object for skin drawing */ TTypeUid::Ptr MopSupplyObject(TTypeUid aId); #ifdef RD_SCALABLE_UI_V2 /** * Handle pointer event */ void HandlePointerEventL(const TPointerEvent& aPointerEvent); #endif private: /** * LoadIconsL * Calls DoLoadIconL to load icons needed by controller */ void LoadIconsL(); /** * DoLoadIconL * Calls AknsUtils::CreateIconL to load icons defined by parameters. * Param IN aId - the id of the icon in AknsConstants.h * aFileName - the name of the file where icons are loaded * aFileBitmapId - the id of the bitmap file * Returns - icon created by the function */ CGulIcon* DoLoadIconL( const TAknsItemID& aId, const TDesC& aFileName, const TInt aFileBitmapId, const TInt aFileMaskId = -1 ); /** * DoLoadIconforUpandDownarrowL * Calls AknsUtils::CreateColorIconLC to load icons defined by parameters. * Param IN aId - the id of the icon in AknsConstants.h * aFileName - the name of the file where icons are loaded * aFileBitmapId - the id of the bitmap file * Returns - icon created by the function */ CGulIcon* DoLoadIconforUpandDownarrowL( const TAknsItemID& aId, const TDesC& aFileName, const TInt aFileBitmapId, const TInt aFileMaskId = -1 ); private: //Data // Reference to AppUi CPostcardDocument& iDocument; // Related to frontside CGulIcon* iFrontBg; CGulIcon* iImage; CGulIcon* iInsertImage; CGulIcon* iInsertImageBg; // Related to backside CGulIcon* iBgBg; CGulIcon* iStamp; CGulIcon* iEmptyGreetingFocused; CGulIcon* iEmptyGreeting; CGulIcon* iGreeting; CGulIcon* iEmptyAddressFocused; CGulIcon* iEmptyAddress; CGulIcon* iAddress; // Focus lines are here CArrayPtrFlat<TRect>* iGreetingLines; CArrayPtrFlat<TRect>* iRecipientLines; // Related to arrows CGulIcon* iUpperArrow; CGulIcon* iLowerArrow; // Related to frontside TRect iFrontBgC; TRect iImageC; TRect iInsertImageC; TRect iInsertImageBgC; // Related to backside TRect iBgBgC; TRect iStampC; TRect iGreetingC; TRect iAddressC; // Related to arrows TRect iUpperArrowC; TRect iLowerArrowC; TPostcardPart iFocusedItem; CAknsBasicBackgroundControlContext* iBgContext; // Skin background control context #ifdef RD_SCALABLE_UI_V2 TBool iPenEnabled; MPocaPointerEventObserver& iEventObserver; #endif }; #endif // POSTCARDCONTROLLER_H // End of File
[ "none@none" ]
none@none
695ed505bee7e2dfc19abec5c436693b22495986
4bb806c1d0bf3272195b99f22d2db381cfb844c6
/NewAR/Classes/Native/Il2CppGenericMethodDefinitions.cpp
d0ffc094a76d7bf5d35f5fcd57689a1f23547f5f
[ "MIT" ]
permissive
RealityVirtually2019/Cadence
f2412e8e39572ebc2f7398048c11548f4a8697a5
23589e7c9fc545def7fa87da66ea842e3ea43aef
refs/heads/master
2020-04-17T08:57:03.699497
2019-01-21T14:17:45
2019-01-21T14:17:45
166,435,752
2
0
null
null
null
null
UTF-8
C++
false
false
1,457,072
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include "il2cpp-class-internals.h" #include "codegen/il2cpp-codegen.h" extern const Il2CppMethodSpec g_Il2CppMethodSpecTable[9960] = { { 680, -1, 0 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Object>(System.Object,System.ExceptionArgument) */, { 693, 21, -1 } /* System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.Object) */, { 694, 21, -1 } /* System.Boolean System.ValueTuple`2<System.Object,System.Object>::Equals(System.ValueTuple`2<T1,T2>) */, { 695, 21, -1 } /* System.Boolean System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 696, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object) */, { 697, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::CompareTo(System.ValueTuple`2<T1,T2>) */, { 698, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 699, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCode() */, { 700, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 701, 21, -1 } /* System.Int32 System.ValueTuple`2<System.Object,System.Object>::GetHashCodeCore(System.Collections.IEqualityComparer) */, { 702, 21, -1 } /* System.String System.ValueTuple`2<System.Object,System.Object>::ToString() */, { 704, -1, 0 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Object>(T[]) */, { 705, -1, 0 } /* System.Void System.Array::Resize<System.Object>(T[]&,System.Int32) */, { 724, -1, 21 } /* TOutput[] System.Array::ConvertAll<System.Object,System.Object>(TInput[],System.Converter`2<TInput,TOutput>) */, { 728, -1, 0 } /* System.Void System.Array::ForEach<System.Object>(T[],System.Action`1<T>) */, { 743, -1, 0 } /* System.Int32 System.Array::BinarySearch<System.Object>(T[],T) */, { 744, -1, 0 } /* System.Int32 System.Array::BinarySearch<System.Object>(T[],T,System.Collections.Generic.IComparer`1<T>) */, { 745, -1, 0 } /* System.Int32 System.Array::BinarySearch<System.Object>(T[],System.Int32,System.Int32,T) */, { 746, -1, 0 } /* System.Int32 System.Array::BinarySearch<System.Object>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 750, -1, 0 } /* System.Int32 System.Array::IndexOf<System.Object>(T[],T) */, { 751, -1, 0 } /* System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32) */, { 752, -1, 0 } /* System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32,System.Int32) */, { 756, -1, 0 } /* System.Int32 System.Array::LastIndexOf<System.Object>(T[],T) */, { 757, -1, 0 } /* System.Int32 System.Array::LastIndexOf<System.Object>(T[],T,System.Int32) */, { 758, -1, 0 } /* System.Int32 System.Array::LastIndexOf<System.Object>(T[],T,System.Int32,System.Int32) */, { 761, -1, 0 } /* System.Void System.Array::Reverse<System.Object>(T[]) */, { 762, -1, 0 } /* System.Void System.Array::Reverse<System.Object>(T[],System.Int32,System.Int32) */, { 775, -1, 0 } /* System.Void System.Array::Sort<System.Object>(T[]) */, { 776, -1, 0 } /* System.Void System.Array::Sort<System.Object>(T[],System.Int32,System.Int32) */, { 777, -1, 0 } /* System.Void System.Array::Sort<System.Object>(T[],System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 0 } /* System.Void System.Array::Sort<System.Object>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 779, -1, 0 } /* System.Void System.Array::Sort<System.Object>(T[],System.Comparison`1<T>) */, { 780, -1, 21 } /* System.Void System.Array::Sort<System.Object,System.Object>(TKey[],TValue[]) */, { 781, -1, 21 } /* System.Void System.Array::Sort<System.Object,System.Object>(TKey[],TValue[],System.Int32,System.Int32) */, { 782, -1, 21 } /* System.Void System.Array::Sort<System.Object,System.Object>(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>) */, { 783, -1, 21 } /* System.Void System.Array::Sort<System.Object,System.Object>(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 784, -1, 0 } /* System.Boolean System.Array::Exists<System.Object>(T[],System.Predicate`1<T>) */, { 785, -1, 0 } /* System.Void System.Array::Fill<System.Object>(T[],T) */, { 786, -1, 0 } /* System.Void System.Array::Fill<System.Object>(T[],T,System.Int32,System.Int32) */, { 787, -1, 0 } /* T System.Array::Find<System.Object>(T[],System.Predicate`1<T>) */, { 788, -1, 0 } /* T[] System.Array::FindAll<System.Object>(T[],System.Predicate`1<T>) */, { 789, -1, 0 } /* System.Int32 System.Array::FindIndex<System.Object>(T[],System.Predicate`1<T>) */, { 790, -1, 0 } /* System.Int32 System.Array::FindIndex<System.Object>(T[],System.Int32,System.Predicate`1<T>) */, { 791, -1, 0 } /* System.Int32 System.Array::FindIndex<System.Object>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 792, -1, 0 } /* T System.Array::FindLast<System.Object>(T[],System.Predicate`1<T>) */, { 793, -1, 0 } /* System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Predicate`1<T>) */, { 794, -1, 0 } /* System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Int32,System.Predicate`1<T>) */, { 795, -1, 0 } /* System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 796, -1, 0 } /* System.Boolean System.Array::TrueForAll<System.Object>(T[],System.Predicate`1<T>) */, { 801, -1, 0 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Object>() */, { 803, -1, 0 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Object>(T) */, { 804, -1, 0 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Object>(T) */, { 805, -1, 0 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Object>(T) */, { 806, -1, 0 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Object>(T[],System.Int32) */, { 807, -1, 0 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Object>(System.Int32) */, { 809, -1, 0 } /* System.Void System.Array::InternalArray__Insert<System.Object>(System.Int32,T) */, { 811, -1, 0 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Object>(T) */, { 812, -1, 0 } /* T System.Array::InternalArray__get_Item<System.Object>(System.Int32) */, { 813, -1, 0 } /* System.Void System.Array::InternalArray__set_Item<System.Object>(System.Int32,T) */, { 814, -1, 0 } /* System.Void System.Array::GetGenericValueImpl<System.Object>(System.Int32,T&) */, { 815, -1, 0 } /* System.Void System.Array::SetGenericValueImpl<System.Object>(System.Int32,T&) */, { 849, -1, 0 } /* T[] System.Array::Empty<System.Object>() */, { 851, -1, 0 } /* System.Int32 System.Array::IndexOfImpl<System.Object>(T[],T,System.Int32,System.Int32) */, { 852, -1, 0 } /* System.Int32 System.Array::LastIndexOfImpl<System.Object>(T[],T,System.Int32,System.Int32) */, { 854, -1, 0 } /* T System.Array::UnsafeLoad<System.Object>(T[],System.Int32) */, { 855, -1, 0 } /* System.Void System.Array::UnsafeStore<System.Object>(T[],System.Int32,T) */, { 856, -1, 21 } /* R System.Array::UnsafeMov<System.Object,System.Object>(S) */, { 865, 0, -1 } /* T System.Array/InternalEnumerator`1<System.Object>::get_Current() */, { 867, 0, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Object>::System.Collections.IEnumerator.get_Current() */, { 862, 0, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Object>::.ctor(System.Array) */, { 863, 0, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Object>::Dispose() */, { 864, 0, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Object>::MoveNext() */, { 866, 0, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Object>::System.Collections.IEnumerator.Reset() */, { 870, 0, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Object>::get_Current() */, { 871, 0, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Object>::System.Collections.IEnumerator.get_Current() */, { 868, 0, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Object>::Dispose() */, { 869, 0, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Object>::MoveNext() */, { 872, 0, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Object>::System.Collections.IEnumerator.Reset() */, { 873, 0, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Object>::.ctor() */, { 874, 0, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Object>::.cctor() */, { 896, -1, 21 } /* System.Tuple`2<T1,T2> System.Tuple::Create<System.Object,System.Object>(T1,T2) */, { 900, 21, -1 } /* T1 System.Tuple`2<System.Object,System.Object>::get_Item1() */, { 901, 21, -1 } /* T2 System.Tuple`2<System.Object,System.Object>::get_Item2() */, { 902, 21, -1 } /* System.Void System.Tuple`2<System.Object,System.Object>::.ctor(T1,T2) */, { 903, 21, -1 } /* System.Boolean System.Tuple`2<System.Object,System.Object>::Equals(System.Object) */, { 904, 21, -1 } /* System.Boolean System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 905, 21, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Object>::System.IComparable.CompareTo(System.Object) */, { 906, 21, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 907, 21, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Object>::GetHashCode() */, { 908, 21, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 909, 21, -1 } /* System.String System.Tuple`2<System.Object,System.Object>::ToString() */, { 910, 21, -1 } /* System.String System.Tuple`2<System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder) */, { 911, 40, -1 } /* T1 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item1() */, { 912, 40, -1 } /* T2 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item2() */, { 913, 40, -1 } /* T3 System.Tuple`3<System.Object,System.Object,System.Object>::get_Item3() */, { 914, 40, -1 } /* System.Void System.Tuple`3<System.Object,System.Object,System.Object>::.ctor(T1,T2,T3) */, { 915, 40, -1 } /* System.Boolean System.Tuple`3<System.Object,System.Object,System.Object>::Equals(System.Object) */, { 916, 40, -1 } /* System.Boolean System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 917, 40, -1 } /* System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) */, { 918, 40, -1 } /* System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 919, 40, -1 } /* System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::GetHashCode() */, { 920, 40, -1 } /* System.Int32 System.Tuple`3<System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 921, 40, -1 } /* System.String System.Tuple`3<System.Object,System.Object,System.Object>::ToString() */, { 922, 40, -1 } /* System.String System.Tuple`3<System.Object,System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder) */, { 923, 41, -1 } /* T1 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item1() */, { 924, 41, -1 } /* T2 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item2() */, { 925, 41, -1 } /* T3 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item3() */, { 926, 41, -1 } /* T4 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::get_Item4() */, { 927, 41, -1 } /* System.Boolean System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::Equals(System.Object) */, { 928, 41, -1 } /* System.Boolean System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 929, 41, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.IComparable.CompareTo(System.Object) */, { 930, 41, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 931, 41, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::GetHashCode() */, { 932, 41, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 933, 41, -1 } /* System.String System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::ToString() */, { 934, 41, -1 } /* System.String System.Tuple`4<System.Object,System.Object,System.Object,System.Object>::System.ITupleInternal.ToString(System.Text.StringBuilder) */, { 986, 0, -1 } /* System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 987, 0, -1 } /* System.Void System.Action`1<System.Object>::Invoke(T) */, { 988, 0, -1 } /* System.IAsyncResult System.Action`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 0, -1 } /* System.Void System.Action`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 994, 21, -1 } /* System.Void System.Action`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 995, 21, -1 } /* System.Void System.Action`2<System.Object,System.Object>::Invoke(T1,T2) */, { 996, 21, -1 } /* System.IAsyncResult System.Action`2<System.Object,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 997, 21, -1 } /* System.Void System.Action`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 998, 40, -1 } /* System.Void System.Action`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 999, 40, -1 } /* System.Void System.Action`3<System.Object,System.Object,System.Object>::Invoke(T1,T2,T3) */, { 1000, 40, -1 } /* System.IAsyncResult System.Action`3<System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object) */, { 1001, 40, -1 } /* System.Void System.Action`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 1002, 0, -1 } /* System.Void System.Func`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 1003, 0, -1 } /* TResult System.Func`1<System.Object>::Invoke() */, { 1004, 0, -1 } /* System.IAsyncResult System.Func`1<System.Object>::BeginInvoke(System.AsyncCallback,System.Object) */, { 1005, 0, -1 } /* TResult System.Func`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 1006, 21, -1 } /* System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1007, 21, -1 } /* TResult System.Func`2<System.Object,System.Object>::Invoke(T) */, { 1008, 21, -1 } /* System.IAsyncResult System.Func`2<System.Object,System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1009, 21, -1 } /* TResult System.Func`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 1010, 40, -1 } /* System.Void System.Func`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1011, 40, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Object>::Invoke(T1,T2) */, { 1012, 40, -1 } /* System.IAsyncResult System.Func`3<System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 1013, 40, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 1014, 41, -1 } /* System.Void System.Func`4<System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1015, 41, -1 } /* TResult System.Func`4<System.Object,System.Object,System.Object,System.Object>::Invoke(T1,T2,T3) */, { 1016, 41, -1 } /* System.IAsyncResult System.Func`4<System.Object,System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object) */, { 1017, 41, -1 } /* TResult System.Func`4<System.Object,System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 1018, 53, -1 } /* System.Void System.Func`5<System.Object,System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1019, 53, -1 } /* TResult System.Func`5<System.Object,System.Object,System.Object,System.Object,System.Object>::Invoke(T1,T2,T3,T4) */, { 1020, 53, -1 } /* System.IAsyncResult System.Func`5<System.Object,System.Object,System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,T3,T4,System.AsyncCallback,System.Object) */, { 1021, 53, -1 } /* TResult System.Func`5<System.Object,System.Object,System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 1022, 0, -1 } /* System.Void System.Comparison`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 1023, 0, -1 } /* System.Int32 System.Comparison`1<System.Object>::Invoke(T,T) */, { 1024, 0, -1 } /* System.IAsyncResult System.Comparison`1<System.Object>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 0, -1 } /* System.Int32 System.Comparison`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 1026, 21, -1 } /* System.Void System.Converter`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1027, 21, -1 } /* TOutput System.Converter`2<System.Object,System.Object>::Invoke(TInput) */, { 1028, 21, -1 } /* System.IAsyncResult System.Converter`2<System.Object,System.Object>::BeginInvoke(TInput,System.AsyncCallback,System.Object) */, { 1029, 21, -1 } /* TOutput System.Converter`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 1030, 0, -1 } /* System.Void System.Predicate`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 1031, 0, -1 } /* System.Boolean System.Predicate`1<System.Object>::Invoke(T) */, { 1032, 0, -1 } /* System.IAsyncResult System.Predicate`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 0, -1 } /* System.Boolean System.Predicate`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 1040, -1, 0 } /* T System.Activator::CreateInstance<System.Object>() */, { 1754, 0, -1 } /* System.Void System.EventHandler`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 1755, 0, -1 } /* System.Void System.EventHandler`1<System.Object>::Invoke(System.Object,TEventArgs) */, { 1756, 0, -1 } /* System.IAsyncResult System.EventHandler`1<System.Object>::BeginInvoke(System.Object,TEventArgs,System.AsyncCallback,System.Object) */, { 1757, 0, -1 } /* System.Void System.EventHandler`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 1973, 0, -1 } /* System.Int32 System.IComparable`1<System.Object>::CompareTo(T) */, { 1993, 0, -1 } /* System.Boolean System.IEquatable`1<System.Object>::Equals(T) */, { 2372, 0, -1 } /* T System.RuntimeType/ListBuilder`1<System.Object>::get_Item(System.Int32) */, { 2375, 0, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Object>::get_Count() */, { 2371, 0, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Object>::.ctor(System.Int32) */, { 2373, 0, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Object>::ToArray() */, { 2374, 0, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Object>::CopyTo(System.Object[],System.Int32) */, { 2376, 0, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Object>::Add(T) */, { 3236, 0, -1 } /* System.Void System.EmptyArray`1<System.Object>::.cctor() */, { 4263, -1, 0 } /* T System.Reflection.CustomAttributeExtensions::GetCustomAttribute<System.Object>(System.Reflection.Assembly) */, { 4467, -1, 0 } /* T[] System.Reflection.CustomAttributeData::UnboxValues<System.Object>(System.Object[]) */, { 4735, -1, 21 } /* System.Object System.Reflection.MonoProperty::GetterAdapterFrame<System.Object,System.Object>(System.Reflection.MonoProperty/Getter`2<T,R>,System.Object) */, { 4736, -1, 0 } /* System.Object System.Reflection.MonoProperty::StaticGetterAdapterFrame<System.Object>(System.Reflection.MonoProperty/StaticGetter`1<R>,System.Object) */, { 4749, 21, -1 } /* System.Void System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 4750, 21, -1 } /* R System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::Invoke(T) */, { 4751, 21, -1 } /* System.IAsyncResult System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 4752, 21, -1 } /* R System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 4753, 0, -1 } /* System.Void System.Reflection.MonoProperty/StaticGetter`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 4754, 0, -1 } /* R System.Reflection.MonoProperty/StaticGetter`1<System.Object>::Invoke() */, { 4755, 0, -1 } /* System.IAsyncResult System.Reflection.MonoProperty/StaticGetter`1<System.Object>::BeginInvoke(System.AsyncCallback,System.Object) */, { 4756, 0, -1 } /* R System.Reflection.MonoProperty/StaticGetter`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 5052, 0, -1 } /* TSource System.IO.Iterator`1<System.Object>::get_Current() */, { 5058, 0, -1 } /* System.Object System.IO.Iterator`1<System.Object>::System.Collections.IEnumerator.get_Current() */, { 5051, 0, -1 } /* System.Void System.IO.Iterator`1<System.Object>::.ctor() */, { 5053, 0, -1 } /* System.IO.Iterator`1<TSource> System.IO.Iterator`1<System.Object>::Clone() */, { 5054, 0, -1 } /* System.Void System.IO.Iterator`1<System.Object>::Dispose() */, { 5055, 0, -1 } /* System.Void System.IO.Iterator`1<System.Object>::Dispose(System.Boolean) */, { 5056, 0, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.IO.Iterator`1<System.Object>::GetEnumerator() */, { 5057, 0, -1 } /* System.Boolean System.IO.Iterator`1<System.Object>::MoveNext() */, { 5059, 0, -1 } /* System.Collections.IEnumerator System.IO.Iterator`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 5060, 0, -1 } /* System.Void System.IO.Iterator`1<System.Object>::System.Collections.IEnumerator.Reset() */, { 5061, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::.ctor(System.String,System.String,System.String,System.IO.SearchOption,System.IO.SearchResultHandler`1<TSource>,System.Boolean) */, { 5062, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::CommonInit() */, { 5063, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::.ctor(System.String,System.String,System.String,System.String,System.IO.SearchOption,System.IO.SearchResultHandler`1<TSource>,System.Boolean) */, { 5064, 0, -1 } /* System.IO.Iterator`1<TSource> System.IO.FileSystemEnumerableIterator`1<System.Object>::Clone() */, { 5065, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::Dispose(System.Boolean) */, { 5066, 0, -1 } /* System.Boolean System.IO.FileSystemEnumerableIterator`1<System.Object>::MoveNext() */, { 5067, 0, -1 } /* System.IO.SearchResult System.IO.FileSystemEnumerableIterator`1<System.Object>::CreateSearchResult(System.IO.Directory/SearchData,Microsoft.Win32.Win32Native/WIN32_FIND_DATA) */, { 5068, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::HandleError(System.Int32,System.String) */, { 5069, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::AddSearchableDirsToStack(System.IO.Directory/SearchData) */, { 5070, 0, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.Object>::DoDemand(System.String) */, { 5071, 0, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<System.Object>::NormalizeSearchPattern(System.String) */, { 5072, 0, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<System.Object>::GetNormalizedSearchCriteria(System.String,System.String) */, { 5073, 0, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<System.Object>::GetFullSearchString(System.String,System.String) */, { 5074, 0, -1 } /* System.Boolean System.IO.SearchResultHandler`1<System.Object>::IsResultIncluded(System.IO.SearchResult) */, { 5075, 0, -1 } /* TSource System.IO.SearchResultHandler`1<System.Object>::CreateObject(System.IO.SearchResult) */, { 5076, 0, -1 } /* System.Void System.IO.SearchResultHandler`1<System.Object>::.ctor() */, { 6153, -1, 0 } /* System.Boolean System.Diagnostics.Contracts.Contract::ForAll<System.Object>(System.Collections.Generic.IEnumerable`1<T>,System.Predicate`1<T>) */, { 6211, 0, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::get_Tail() */, { 6210, 0, -1 } /* System.Void System.Threading.SparselyPopulatedArray`1<System.Object>::.ctor(System.Int32) */, { 6212, 0, -1 } /* System.Threading.SparselyPopulatedArrayAddInfo`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::Add(T) */, { 6214, 0, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source() */, { 6215, 0, -1 } /* System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index() */, { 6213, 0, -1 } /* System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32) */, { 6218, 0, -1 } /* T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Item(System.Int32) */, { 6219, 0, -1 } /* System.Int32 System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Length() */, { 6220, 0, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Prev() */, { 6216, 0, -1 } /* System.Void System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::.ctor(System.Int32) */, { 6217, 0, -1 } /* System.Void System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::.ctor(System.Int32,System.Threading.SparselyPopulatedArrayFragment`1<T>) */, { 6221, 0, -1 } /* T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::SafeAtomicRemove(System.Int32,T) */, { 6222, -1, 0 } /* T System.Threading.LazyInitializer::EnsureInitialized<System.Object>(T&,System.Func`1<T>) */, { 6223, -1, 0 } /* T System.Threading.LazyInitializer::EnsureInitializedCore<System.Object>(T&,System.Func`1<T>) */, { 6291, 0, -1 } /* System.Void System.Threading.AsyncLocal`1<System.Object>::System.Threading.IAsyncLocal.OnValueChanged(System.Object,System.Object,System.Boolean) */, { 6293, 0, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_PreviousValue(T) */, { 6294, 0, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_CurrentValue(T) */, { 6295, 0, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_ThreadContextChanged(System.Boolean) */, { 6296, 0, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::.ctor(T,T,System.Boolean) */, { 6473, 0, -1 } /* T[] System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::get_Current() */, { 6472, 0, -1 } /* System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::.ctor(System.Int32) */, { 6474, 0, -1 } /* System.Int32 System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::Add(T) */, { 6475, 0, -1 } /* System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::Remove(T) */, { 6556, -1, 0 } /* T System.Threading.Interlocked::CompareExchange<System.Object>(T&,T,T) */, { 6560, -1, 0 } /* T System.Threading.Interlocked::Exchange<System.Object>(T&,T) */, { 6601, -1, 0 } /* T System.Threading.Volatile::Read<System.Object>(T&) */, { 6602, -1, 0 } /* System.Void System.Threading.Volatile::Write<System.Object>(T&,T) */, { 6619, 0, -1 } /* TResult System.Threading.Tasks.Task`1<System.Object>::get_Result() */, { 6620, 0, -1 } /* TResult System.Threading.Tasks.Task`1<System.Object>::get_ResultOnSuccess() */, { 6609, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor() */, { 6610, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(TResult) */, { 6611, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6612, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) */, { 6613, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6614, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6615, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6616, 0, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Object>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6617, 0, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetResult(TResult) */, { 6618, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::DangerousSetResult(TResult) */, { 6621, 0, -1 } /* TResult System.Threading.Tasks.Task`1<System.Object>::GetResultCore(System.Boolean) */, { 6622, 0, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetException(System.Object) */, { 6623, 0, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetCanceled(System.Threading.CancellationToken) */, { 6624, 0, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6625, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::InnerInvoke() */, { 6626, 0, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Object>::GetAwaiter() */, { 6627, 0, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Object>::ConfigureAwait(System.Boolean) */, { 6628, 0, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Object>::.cctor() */, { 6629, 0, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Object>::.cctor() */, { 6630, 0, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Object>::.ctor() */, { 6631, 0, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Object>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 6632, 0, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Object>::.ctor() */, { 6633, 0, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Object>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6634, 0, 21 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Object>::FromAsyncTrim<System.Object,System.Object>(TInstance,TArgs,System.Func`5<TInstance,TArgs,System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 6635, 21, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::.ctor(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 6636, 21, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::CompleteFromAsyncResult(System.IAsyncResult) */, { 6637, 21, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean) */, { 6638, 21, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Object,System.Object>::.cctor() */, { 6639, 0, -1 } /* System.Void System.Threading.Tasks.Shared`1<System.Object>::.ctor(T) */, { 6754, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromResult<System.Object>(TResult) */, { 6756, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromException<System.Object>(System.Exception) */, { 6758, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Object>(System.Threading.CancellationToken) */, { 6759, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Object>(System.OperationCanceledException) */, { 6761, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::Run<System.Object>(System.Func`1<TResult>) */, { 6871, -1, 0 } /* TResult System.Threading.Tasks.TaskToApm::End<System.Object>(System.IAsyncResult) */, { 8778, -1, 0 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<System.Object>(TStateMachine&) */, { 8780, -1, 21 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&) */, { 8789, 0, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task() */, { 8785, 0, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Create() */, { 8786, 0, 0 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<System.Object>(TStateMachine&) */, { 8787, 0, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 8788, 0, 21 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&) */, { 8790, 0, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(TResult) */, { 8791, 0, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(System.Threading.Tasks.Task`1<TResult>) */, { 8792, 0, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetException(System.Exception) */, { 8793, 0, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::GetTaskForResult(TResult) */, { 8794, 0, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::.cctor() */, { 8796, -1, 0 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Object>(TResult) */, { 8835, 0, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8836, 0, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::UnsafeOnCompleted(System.Action) */, { 8837, 0, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult() */, { 8845, 0, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8846, 0, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::GetAwaiter() */, { 8848, 0, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::get_IsCompleted() */, { 8847, 0, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8849, 0, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::UnsafeOnCompleted(System.Action) */, { 8850, 0, -1 } /* TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::GetResult() */, { 8876, -1, 0 } /* T System.Runtime.CompilerServices.JitHelpers::UnsafeCast<System.Object>(System.Object) */, { 8879, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::.ctor() */, { 8880, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Finalize() */, { 8881, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::RehashWithoutResize() */, { 8882, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::RecomputeSize() */, { 8883, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Rehash() */, { 8884, 21, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Add(TKey,TValue) */, { 8885, 21, -1 } /* System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Remove(TKey) */, { 8886, 21, -1 } /* System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) */, { 8892, -1, 0 } /* System.Boolean System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences<System.Object>() */, { 8977, -1, 0 } /* T System.Runtime.InteropServices.Marshal::PtrToStructure<System.Object>(System.IntPtr) */, { 8984, -1, 0 } /* System.Void System.Runtime.InteropServices.Marshal::StructureToPtr<System.Object>(T,System.IntPtr,System.Boolean) */, { 9280, 0, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::get_Count() */, { 9281, 0, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::get_Item(System.Int32) */, { 9286, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 0, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9295, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 0, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9298, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.get_IsFixedSize() */, { 9299, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.get_IsReadOnly() */, { 9300, 0, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9279, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9282, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::Contains(T) */, { 9283, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::CopyTo(T[],System.Int32) */, { 9284, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::GetEnumerator() */, { 9285, 0, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::IndexOf(T) */, { 9289, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 0, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9297, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9302, 0, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Add(System.Object) */, { 9303, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Clear() */, { 9304, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::IsCompatibleObject(System.Object) */, { 9305, 0, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Contains(System.Object) */, { 9306, 0, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.Remove(System.Object) */, { 9309, 0, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::System.Collections.IList.RemoveAt(System.Int32) */, { 9327, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::set_Item(TKey,TValue) */, { 9329, 21, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::get_Count() */, { 9335, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9339, 21, -1 } /* System.Object System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.IDictionary.get_Item(System.Object) */, { 9340, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9342, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9343, 21, -1 } /* System.Object System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9347, 21, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::get_DefaultConcurrencyLevel() */, { 9313, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::IsValueWriteAtomic() */, { 9314, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::.ctor() */, { 9315, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::.ctor(System.Int32,System.Int32,System.Boolean,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9316, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryAdd(TKey,TValue) */, { 9317, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryRemoveInternal(TKey,TValue&,System.Boolean,TValue) */, { 9318, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) */, { 9319, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryGetValueInternal(TKey,System.Int32,TValue&) */, { 9320, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::Clear() */, { 9321, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9322, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::CopyToPairs(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9323, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::CopyToEntries(System.Collections.DictionaryEntry[],System.Int32) */, { 9324, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::CopyToObjects(System.Object[],System.Int32) */, { 9325, 21, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GetEnumerator() */, { 9326, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::TryAddInternal(TKey,System.Int32,TValue,System.Boolean,System.Boolean,TValue&) */, { 9328, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::ThrowKeyNullException() */, { 9330, 21, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GetCountInternal() */, { 9331, 21, -1 } /* TValue System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GetOrAdd(TKey,System.Func`2<TKey,TValue>) */, { 9332, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.IDictionary<TKey,TValue>.Add(TKey,TValue) */, { 9333, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9334, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9336, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9337, 21, -1 } /* System.Collections.IEnumerator System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9338, 21, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.IDictionary.GetEnumerator() */, { 9341, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9344, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GrowTable(System.Collections.Concurrent.ConcurrentDictionary`2/Tables<TKey,TValue>) */, { 9345, 21, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GetBucket(System.Int32,System.Int32) */, { 9346, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::GetBucketAndLockNo(System.Int32,System.Int32&,System.Int32&,System.Int32,System.Int32) */, { 9348, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::AcquireAllLocks(System.Int32&) */, { 9349, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::AcquireLocks(System.Int32,System.Int32,System.Int32&) */, { 9350, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::ReleaseLocks(System.Int32,System.Int32) */, { 9351, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>::.cctor() */, { 9352, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/Tables<System.Object,System.Object>::.ctor(System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>[],System.Object[],System.Int32[]) */, { 9353, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/Node<System.Object,System.Object>::.ctor(TKey,TValue,System.Int32,System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>) */, { 9355, 21, -1 } /* System.Collections.DictionaryEntry System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::get_Entry() */, { 9356, 21, -1 } /* System.Object System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::get_Key() */, { 9357, 21, -1 } /* System.Object System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::get_Value() */, { 9358, 21, -1 } /* System.Object System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::get_Current() */, { 9354, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::.ctor(System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>) */, { 9359, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::MoveNext() */, { 9360, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>::Reset() */, { 9364, 21, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>::System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_Current() */, { 9366, 21, -1 } /* System.Object System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9361, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>::.ctor(System.Int32) */, { 9362, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>::System.IDisposable.Dispose() */, { 9363, 21, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>::MoveNext() */, { 9365, 21, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>::System.Collections.IEnumerator.Reset() */, { 9367, -1, 21 } /* TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey) */, { 9368, -1, 21 } /* TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.Object,System.Object>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey,TValue) */, { 9371, 21, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() */, { 9372, 21, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() */, { 9370, 21, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) */, { 9373, 21, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::ToString() */, { 9376, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 0, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Object>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 0, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Object>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::Swap(T[],System.Int32,System.Int32) */, { 9382, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 0, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Object>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 0, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9388, 21, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::get_Default() */, { 9389, 21, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::CreateArraySortHelper() */, { 9390, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::Sort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9391, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::SwapIfGreaterWithItems(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>,System.Int32,System.Int32) */, { 9392, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::Swap(TKey[],TValue[],System.Int32,System.Int32) */, { 9393, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::IntrospectiveSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9394, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::IntroSort(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9395, 21, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::PickPivotAndPartition(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9396, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::Heapsort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9397, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::DownHeap(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9398, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::InsertionSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9399, 21, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>::.ctor() */, { 9405, 21, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Count() */, { 9406, 21, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Keys() */, { 9407, 21, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Values() */, { 9408, 21, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Item(TKey) */, { 9409, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue) */, { 9429, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9433, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9400, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor() */, { 9401, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32) */, { 9402, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9410, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue) */, { 9411, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Clear() */, { 9415, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(TKey) */, { 9416, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsValue(TValue) */, { 9417, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 21, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator() */, { 9419, 21, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 21, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::FindEntry(TKey) */, { 9422, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Initialize(System.Int32) */, { 9423, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::OnDeserialization(System.Object) */, { 9425, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Resize() */, { 9426, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Resize(System.Int32,System.Boolean) */, { 9427, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(TKey) */, { 9428, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) */, { 9430, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 21, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9437, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::IsCompatibleKey(System.Object) */, { 9438, 21, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Object>::System.Collections.IDictionary.GetEnumerator() */, { 9441, 21, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() */, { 9443, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9445, 21, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() */, { 9442, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() */, { 9444, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() */, { 9451, 21, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::get_Count() */, { 9452, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9460, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 21, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::GetEnumerator() */, { 9450, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::CopyTo(TKey[],System.Int32) */, { 9453, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 21, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 21, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9465, 21, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::get_Current() */, { 9466, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9462, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::Dispose() */, { 9464, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::MoveNext() */, { 9467, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() */, { 9471, 21, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::get_Count() */, { 9472, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9480, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 21, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::GetEnumerator() */, { 9470, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::CopyTo(TValue[],System.Int32) */, { 9473, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 21, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 21, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9485, 21, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() */, { 9486, 21, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9482, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() */, { 9484, 21, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() */, { 9487, 21, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() */, { 9497, 0, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Object>::get_Default() */, { 9498, 0, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Object>::CreateComparer() */, { 9499, 0, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::Compare(T,T) */, { 9500, 0, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Object>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 0, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Object>::.ctor() */, { 9502, 0, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Object>::Compare(T,T) */, { 9503, 0, -1 } /* System.Boolean System.Collections.Generic.GenericComparer`1<System.Object>::Equals(System.Object) */, { 9504, 0, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Object>::GetHashCode() */, { 9505, 0, -1 } /* System.Void System.Collections.Generic.GenericComparer`1<System.Object>::.ctor() */, { 9510, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Object>::Compare(T,T) */, { 9511, 0, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.Object>::Equals(System.Object) */, { 9512, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Object>::GetHashCode() */, { 9513, 0, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.Object>::.ctor() */, { 9514, 0, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Object>::get_Default() */, { 9515, 0, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Object>::CreateComparer() */, { 9516, 0, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, { 9517, 0, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::GetHashCode(T) */, { 9518, 0, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 0, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 0, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 0, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 0, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Object>::.ctor() */, { 9523, 0, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Object>::Equals(T,T) */, { 9524, 0, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Object>::GetHashCode(T) */, { 9525, 0, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Object>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 0, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Object>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 0, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Object>::Equals(System.Object) */, { 9528, 0, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Object>::GetHashCode() */, { 9529, 0, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<System.Object>::.ctor() */, { 9537, 0, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::Equals(T,T) */, { 9538, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::GetHashCode(T) */, { 9539, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 0, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::Equals(System.Object) */, { 9542, 0, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::GetHashCode() */, { 9543, 0, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Object>::.ctor() */, { 9575, 0, -1 } /* System.Int32 System.Collections.Generic.ICollection`1<System.Object>::get_Count() */, { 9576, 0, -1 } /* System.Boolean System.Collections.Generic.ICollection`1<System.Object>::get_IsReadOnly() */, { 9577, 0, -1 } /* System.Void System.Collections.Generic.ICollection`1<System.Object>::Add(T) */, { 9578, 0, -1 } /* System.Void System.Collections.Generic.ICollection`1<System.Object>::Clear() */, { 9579, 0, -1 } /* System.Boolean System.Collections.Generic.ICollection`1<System.Object>::Contains(T) */, { 9580, 0, -1 } /* System.Void System.Collections.Generic.ICollection`1<System.Object>::CopyTo(T[],System.Int32) */, { 9581, 0, -1 } /* System.Boolean System.Collections.Generic.ICollection`1<System.Object>::Remove(T) */, { 9582, 0, -1 } /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(T,T) */, { 9583, 21, -1 } /* System.Void System.Collections.Generic.IDictionary`2<System.Object,System.Object>::Add(TKey,TValue) */, { 9584, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, { 9585, 0, -1 } /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, { 9586, 0, -1 } /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(T,T) */, { 9587, 0, -1 } /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(T) */, { 9588, 0, -1 } /* T System.Collections.Generic.IList`1<System.Object>::get_Item(System.Int32) */, { 9589, 0, -1 } /* System.Void System.Collections.Generic.IList`1<System.Object>::set_Item(System.Int32,T) */, { 9590, 0, -1 } /* System.Int32 System.Collections.Generic.IList`1<System.Object>::IndexOf(T) */, { 9591, 0, -1 } /* System.Void System.Collections.Generic.IList`1<System.Object>::Insert(System.Int32,T) */, { 9592, 0, -1 } /* System.Void System.Collections.Generic.IList`1<System.Object>::RemoveAt(System.Int32) */, { 9593, 0, -1 } /* System.Int32 System.Collections.Generic.IReadOnlyCollection`1<System.Object>::get_Count() */, { 9594, 21, -1 } /* System.Boolean System.Collections.Generic.IReadOnlyDictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) */, { 9595, 0, -1 } /* T System.Collections.Generic.IReadOnlyList`1<System.Object>::get_Item(System.Int32) */, { 9602, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::get_Capacity() */, { 9603, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::set_Capacity(System.Int32) */, { 9604, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count() */, { 9605, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::System.Collections.IList.get_IsFixedSize() */, { 9606, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::System.Collections.IList.get_IsReadOnly() */, { 9608, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 0, -1 } /* System.Object System.Collections.Generic.List`1<System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9610, 0, -1 } /* T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32) */, { 9611, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::set_Item(System.Int32,T) */, { 9613, 0, -1 } /* System.Object System.Collections.Generic.List`1<System.Object>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9599, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::.ctor() */, { 9600, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32) */, { 9601, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9612, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::IsCompatibleObject(System.Object) */, { 9615, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Add(T) */, { 9616, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::System.Collections.IList.Add(System.Object) */, { 9617, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 0, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<System.Object>::AsReadOnly() */, { 9619, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Clear() */, { 9620, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(T) */, { 9621, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::System.Collections.IList.Contains(System.Object) */, { 9622, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(T[]) */, { 9623, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(T[],System.Int32) */, { 9626, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::EnsureCapacity(System.Int32) */, { 9627, 0, -1 } /* T System.Collections.Generic.List`1<System.Object>::Find(System.Predicate`1<T>) */, { 9628, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::ForEach(System.Action`1<T>) */, { 9629, 0, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Object>::GetEnumerator() */, { 9630, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<System.Object>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 0, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::IndexOf(T) */, { 9633, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Insert(System.Int32,T) */, { 9635, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 0, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Object>::Remove(T) */, { 9638, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::System.Collections.IList.Remove(System.Object) */, { 9639, 0, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Object>::RemoveAll(System.Predicate`1<T>) */, { 9640, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32) */, { 9641, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::RemoveRange(System.Int32,System.Int32) */, { 9642, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Reverse() */, { 9643, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Reverse(System.Int32,System.Int32) */, { 9644, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Sort() */, { 9645, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Comparison`1<T>) */, { 9648, 0, -1 } /* T[] System.Collections.Generic.List`1<System.Object>::ToArray() */, { 9649, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::TrimExcess() */, { 9650, 0, -1 } /* System.Void System.Collections.Generic.List`1<System.Object>::.cctor() */, { 9655, 0, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current() */, { 9656, 0, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() */, { 9651, 0, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 0, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose() */, { 9653, 0, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext() */, { 9654, 0, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNextRare() */, { 9657, 0, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset() */, { 10718, 0, -1 } /* System.Int32 System.Collections.Generic.LinkedList`1<System.Object>::get_Count() */, { 10719, 0, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::get_First() */, { 10720, 0, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 10741, 0, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 10742, 0, -1 } /* System.Object System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 10716, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::.ctor() */, { 10717, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10721, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.Generic.ICollection<T>.Add(T) */, { 10722, 0, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::AddFirst(T) */, { 10723, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::AddFirst(System.Collections.Generic.LinkedListNode`1<T>) */, { 10724, 0, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::AddLast(T) */, { 10725, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::Clear() */, { 10726, 0, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1<System.Object>::Contains(T) */, { 10727, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::CopyTo(T[],System.Int32) */, { 10728, 0, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Object>::Find(T) */, { 10729, 0, -1 } /* System.Collections.Generic.LinkedList`1/Enumerator<T> System.Collections.Generic.LinkedList`1<System.Object>::GetEnumerator() */, { 10730, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 10731, 0, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1<System.Object>::Remove(T) */, { 10732, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::Remove(System.Collections.Generic.LinkedListNode`1<T>) */, { 10733, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::RemoveLast() */, { 10734, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10735, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::OnDeserialization(System.Object) */, { 10736, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::InternalInsertNodeBefore(System.Collections.Generic.LinkedListNode`1<T>,System.Collections.Generic.LinkedListNode`1<T>) */, { 10737, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::InternalInsertNodeToEmptyList(System.Collections.Generic.LinkedListNode`1<T>) */, { 10738, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::InternalRemoveNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10739, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::ValidateNewNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10740, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::ValidateNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10743, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 10744, 0, -1 } /* System.Collections.IEnumerator System.Collections.Generic.LinkedList`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 10747, 0, -1 } /* T System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::get_Current() */, { 10748, 0, -1 } /* System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() */, { 10745, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.LinkedList`1<T>) */, { 10746, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10749, 0, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::MoveNext() */, { 10750, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset() */, { 10751, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::Dispose() */, { 10752, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10753, 0, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) */, { 10755, 0, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1<System.Object>::get_Next() */, { 10756, 0, -1 } /* T System.Collections.Generic.LinkedListNode`1<System.Object>::get_Value() */, { 10754, 0, -1 } /* System.Void System.Collections.Generic.LinkedListNode`1<System.Object>::.ctor(System.Collections.Generic.LinkedList`1<T>,T) */, { 10757, 0, -1 } /* System.Void System.Collections.Generic.LinkedListNode`1<System.Object>::Invalidate() */, { 10760, 0, -1 } /* System.Int32 System.Collections.Generic.Queue`1<System.Object>::get_Count() */, { 10761, 0, -1 } /* System.Boolean System.Collections.Generic.Queue`1<System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 10762, 0, -1 } /* System.Object System.Collections.Generic.Queue`1<System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 10758, 0, -1 } /* System.Void System.Collections.Generic.Queue`1<System.Object>::.ctor() */, { 10759, 0, -1 } /* System.Void System.Collections.Generic.Queue`1<System.Object>::.ctor(System.Int32) */, { 10763, 0, -1 } /* System.Void System.Collections.Generic.Queue`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 10764, 0, -1 } /* System.Void System.Collections.Generic.Queue`1<System.Object>::Enqueue(T) */, { 10765, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.Queue`1<System.Object>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 10766, 0, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Queue`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 10767, 0, -1 } /* T System.Collections.Generic.Queue`1<System.Object>::Dequeue() */, { 10768, 0, -1 } /* System.Void System.Collections.Generic.Queue`1<System.Object>::SetCapacity(System.Int32) */, { 10769, 0, -1 } /* System.Void System.Collections.Generic.Queue`1<System.Object>::MoveNext(System.Int32&) */, { 10770, 0, -1 } /* System.Void System.Collections.Generic.Queue`1<System.Object>::ThrowForEmptyQueue() */, { 10774, 0, -1 } /* T System.Collections.Generic.Queue`1/Enumerator<System.Object>::get_Current() */, { 10776, 0, -1 } /* System.Object System.Collections.Generic.Queue`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() */, { 10771, 0, -1 } /* System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Queue`1<T>) */, { 10772, 0, -1 } /* System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::Dispose() */, { 10773, 0, -1 } /* System.Boolean System.Collections.Generic.Queue`1/Enumerator<System.Object>::MoveNext() */, { 10775, 0, -1 } /* System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::ThrowEnumerationNotStartedOrEnded() */, { 10777, 0, -1 } /* System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset() */, { 10779, 0, -1 } /* System.Int32 System.Collections.Generic.Stack`1<System.Object>::get_Count() */, { 10780, 0, -1 } /* System.Boolean System.Collections.Generic.Stack`1<System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 10781, 0, -1 } /* System.Object System.Collections.Generic.Stack`1<System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 10778, 0, -1 } /* System.Void System.Collections.Generic.Stack`1<System.Object>::.ctor() */, { 10782, 0, -1 } /* System.Void System.Collections.Generic.Stack`1<System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 10783, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.Stack`1<System.Object>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 10784, 0, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Stack`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 10785, 0, -1 } /* T System.Collections.Generic.Stack`1<System.Object>::Peek() */, { 10786, 0, -1 } /* T System.Collections.Generic.Stack`1<System.Object>::Pop() */, { 10787, 0, -1 } /* System.Void System.Collections.Generic.Stack`1<System.Object>::Push(T) */, { 10788, 0, -1 } /* System.Void System.Collections.Generic.Stack`1<System.Object>::ThrowForEmptyStack() */, { 10792, 0, -1 } /* T System.Collections.Generic.Stack`1/Enumerator<System.Object>::get_Current() */, { 10794, 0, -1 } /* System.Object System.Collections.Generic.Stack`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() */, { 10789, 0, -1 } /* System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Stack`1<T>) */, { 10790, 0, -1 } /* System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::Dispose() */, { 10791, 0, -1 } /* System.Boolean System.Collections.Generic.Stack`1/Enumerator<System.Object>::MoveNext() */, { 10793, 0, -1 } /* System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::ThrowEnumerationNotStartedOrEnded() */, { 10795, 0, -1 } /* System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset() */, { 10818, -1, 0 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Where<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10819, -1, 21 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>) */, { 10820, -1, 21 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`3<TSource,System.Int32,TResult>) */, { 10821, -1, 21 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::SelectIterator<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`3<TSource,System.Int32,TResult>) */, { 10822, -1, 0 } /* System.Func`2<TSource,System.Boolean> System.Linq.Enumerable::CombinePredicates<System.Object>(System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,System.Boolean>) */, { 10823, -1, 40 } /* System.Func`2<TSource,TResult> System.Linq.Enumerable::CombineSelectors<System.Object,System.Object,System.Object>(System.Func`2<TSource,TMiddle>,System.Func`2<TMiddle,TResult>) */, { 10824, -1, 0 } /* TSource[] System.Linq.Enumerable::ToArray<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>) */, { 10825, -1, 0 } /* System.Collections.Generic.List`1<TSource> System.Linq.Enumerable::ToList<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>) */, { 10826, -1, 0 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::OfType<System.Object>(System.Collections.IEnumerable) */, { 10827, -1, 0 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::OfTypeIterator<System.Object>(System.Collections.IEnumerable) */, { 10828, -1, 0 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Cast<System.Object>(System.Collections.IEnumerable) */, { 10829, -1, 0 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::CastIterator<System.Object>(System.Collections.IEnumerable) */, { 10830, -1, 0 } /* TSource System.Linq.Enumerable::First<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>) */, { 10831, -1, 0 } /* TSource System.Linq.Enumerable::FirstOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>) */, { 10832, -1, 0 } /* TSource System.Linq.Enumerable::FirstOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10833, -1, 0 } /* TSource System.Linq.Enumerable::SingleOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10834, -1, 0 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Empty<System.Object>() */, { 10835, -1, 0 } /* System.Boolean System.Linq.Enumerable::Any<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>) */, { 10836, -1, 0 } /* System.Boolean System.Linq.Enumerable::Any<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10838, 0, -1 } /* TSource System.Linq.Enumerable/Iterator`1<System.Object>::get_Current() */, { 10845, 0, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<System.Object>::System.Collections.IEnumerator.get_Current() */, { 10837, 0, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::.ctor() */, { 10839, 0, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Object>::Clone() */, { 10840, 0, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, { 10841, 0, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<System.Object>::GetEnumerator() */, { 10842, 0, -1 } /* System.Boolean System.Linq.Enumerable/Iterator`1<System.Object>::MoveNext() */, { 10843, 0, 0 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/Iterator`1<System.Object>::Select<System.Object>(System.Func`2<TSource,TResult>) */, { 10844, 0, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/Iterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) */, { 10846, 0, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 10847, 0, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::System.Collections.IEnumerator.Reset() */, { 10848, 0, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10849, 0, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Clone() */, { 10850, 0, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Dispose() */, { 10851, 0, -1 } /* System.Boolean System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::MoveNext() */, { 10852, 0, 0 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Select<System.Object>(System.Func`2<TSource,TResult>) */, { 10853, 0, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) */, { 10854, 0, -1 } /* System.Void System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>) */, { 10855, 0, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::Clone() */, { 10856, 0, -1 } /* System.Boolean System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::MoveNext() */, { 10857, 0, 0 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::Select<System.Object>(System.Func`2<TSource,TResult>) */, { 10858, 0, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) */, { 10859, 0, -1 } /* System.Void System.Linq.Enumerable/WhereListIterator`1<System.Object>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10860, 0, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereListIterator`1<System.Object>::Clone() */, { 10861, 0, -1 } /* System.Boolean System.Linq.Enumerable/WhereListIterator`1<System.Object>::MoveNext() */, { 10862, 0, 0 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereListIterator`1<System.Object>::Select<System.Object>(System.Func`2<TSource,TResult>) */, { 10863, 0, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereListIterator`1<System.Object>::Where(System.Func`2<TSource,System.Boolean>) */, { 10864, 21, -1 } /* System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10865, 21, -1 } /* System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::Clone() */, { 10866, 21, -1 } /* System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::Dispose() */, { 10867, 21, -1 } /* System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::MoveNext() */, { 10868, 21, 0 } /* System.Collections.Generic.IEnumerable`1<TResult2> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::Select<System.Object>(System.Func`2<TResult,TResult2>) */, { 10869, 21, -1 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::Where(System.Func`2<TResult,System.Boolean>) */, { 10870, 21, -1 } /* System.Void System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10871, 21, -1 } /* System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::Clone() */, { 10872, 21, -1 } /* System.Boolean System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::MoveNext() */, { 10873, 21, 0 } /* System.Collections.Generic.IEnumerable`1<TResult2> System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::Select<System.Object>(System.Func`2<TResult,TResult2>) */, { 10874, 21, -1 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectArrayIterator`2<System.Object,System.Object>::Where(System.Func`2<TResult,System.Boolean>) */, { 10875, 21, -1 } /* System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10876, 21, -1 } /* System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::Clone() */, { 10877, 21, -1 } /* System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::MoveNext() */, { 10878, 21, 0 } /* System.Collections.Generic.IEnumerable`1<TResult2> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::Select<System.Object>(System.Func`2<TResult,TResult2>) */, { 10879, 21, -1 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::Where(System.Func`2<TResult,System.Boolean>) */, { 10884, 21, -1 } /* TResult System.Linq.Enumerable/<SelectIterator>d__5`2<System.Object,System.Object>::System.Collections.Generic.IEnumerator<TResult>.get_Current() */, { 10886, 21, -1 } /* System.Object System.Linq.Enumerable/<SelectIterator>d__5`2<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() */, { 10880, 21, -1 } /* System.Void System.Linq.Enumerable/<SelectIterator>d__5`2<System.Object,System.Object>::.ctor(System.Int32) */, { 10881, 21, -1 } /* System.Void System.Linq.Enumerable/<SelectIterator>d__5`2<System.Object,System.Object>::System.IDisposable.Dispose() */, { 10882, 21, -1 } /* System.Boolean System.Linq.Enumerable/<SelectIterator>d__5`2<System.Object,System.Object>::MoveNext() */, { 10883, 21, -1 } /* System.Void System.Linq.Enumerable/<SelectIterator>d__5`2<System.Object,System.Object>::<>m__Finally1() */, { 10885, 21, -1 } /* System.Void System.Linq.Enumerable/<SelectIterator>d__5`2<System.Object,System.Object>::System.Collections.IEnumerator.Reset() */, { 10887, 21, -1 } /* System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/<SelectIterator>d__5`2<System.Object,System.Object>::System.Collections.Generic.IEnumerable<TResult>.GetEnumerator() */, { 10888, 21, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/<SelectIterator>d__5`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 10889, 0, -1 } /* System.Void System.Linq.Enumerable/<>c__DisplayClass6_0`1<System.Object>::.ctor() */, { 10890, 0, -1 } /* System.Boolean System.Linq.Enumerable/<>c__DisplayClass6_0`1<System.Object>::<CombinePredicates>b__0(TSource) */, { 10891, 40, -1 } /* System.Void System.Linq.Enumerable/<>c__DisplayClass7_0`3<System.Object,System.Object,System.Object>::.ctor() */, { 10892, 40, -1 } /* TResult System.Linq.Enumerable/<>c__DisplayClass7_0`3<System.Object,System.Object,System.Object>::<CombineSelectors>b__0(TSource) */, { 10897, 0, -1 } /* TResult System.Linq.Enumerable/<OfTypeIterator>d__97`1<System.Object>::System.Collections.Generic.IEnumerator<TResult>.get_Current() */, { 10899, 0, -1 } /* System.Object System.Linq.Enumerable/<OfTypeIterator>d__97`1<System.Object>::System.Collections.IEnumerator.get_Current() */, { 10893, 0, -1 } /* System.Void System.Linq.Enumerable/<OfTypeIterator>d__97`1<System.Object>::.ctor(System.Int32) */, { 10894, 0, -1 } /* System.Void System.Linq.Enumerable/<OfTypeIterator>d__97`1<System.Object>::System.IDisposable.Dispose() */, { 10895, 0, -1 } /* System.Boolean System.Linq.Enumerable/<OfTypeIterator>d__97`1<System.Object>::MoveNext() */, { 10896, 0, -1 } /* System.Void System.Linq.Enumerable/<OfTypeIterator>d__97`1<System.Object>::<>m__Finally1() */, { 10898, 0, -1 } /* System.Void System.Linq.Enumerable/<OfTypeIterator>d__97`1<System.Object>::System.Collections.IEnumerator.Reset() */, { 10900, 0, -1 } /* System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/<OfTypeIterator>d__97`1<System.Object>::System.Collections.Generic.IEnumerable<TResult>.GetEnumerator() */, { 10901, 0, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/<OfTypeIterator>d__97`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 10906, 0, -1 } /* TResult System.Linq.Enumerable/<CastIterator>d__99`1<System.Object>::System.Collections.Generic.IEnumerator<TResult>.get_Current() */, { 10908, 0, -1 } /* System.Object System.Linq.Enumerable/<CastIterator>d__99`1<System.Object>::System.Collections.IEnumerator.get_Current() */, { 10902, 0, -1 } /* System.Void System.Linq.Enumerable/<CastIterator>d__99`1<System.Object>::.ctor(System.Int32) */, { 10903, 0, -1 } /* System.Void System.Linq.Enumerable/<CastIterator>d__99`1<System.Object>::System.IDisposable.Dispose() */, { 10904, 0, -1 } /* System.Boolean System.Linq.Enumerable/<CastIterator>d__99`1<System.Object>::MoveNext() */, { 10905, 0, -1 } /* System.Void System.Linq.Enumerable/<CastIterator>d__99`1<System.Object>::<>m__Finally1() */, { 10907, 0, -1 } /* System.Void System.Linq.Enumerable/<CastIterator>d__99`1<System.Object>::System.Collections.IEnumerator.Reset() */, { 10909, 0, -1 } /* System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/<CastIterator>d__99`1<System.Object>::System.Collections.Generic.IEnumerable<TResult>.GetEnumerator() */, { 10910, 0, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/<CastIterator>d__99`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 10911, 0, -1 } /* System.Void System.Linq.EmptyEnumerable`1<System.Object>::.cctor() */, { 10912, 0, -1 } /* System.Void System.Linq.Buffer`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>) */, { 10913, 0, -1 } /* TElement[] System.Linq.Buffer`1<System.Object>::ToArray() */, { 10925, 0, -1 } /* System.Int32 System.Collections.Generic.HashSet`1<System.Object>::get_Count() */, { 10926, 0, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Object>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 10936, 0, -1 } /* System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1<System.Object>::get_Comparer() */, { 10914, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::.ctor() */, { 10915, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<T>) */, { 10916, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 10917, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<T>,System.Collections.Generic.IEqualityComparer`1<T>) */, { 10918, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10919, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::CopyFrom(System.Collections.Generic.HashSet`1<T>) */, { 10920, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::System.Collections.Generic.ICollection<T>.Add(T) */, { 10921, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::Clear() */, { 10922, 0, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Object>::Contains(T) */, { 10923, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::CopyTo(T[],System.Int32) */, { 10924, 0, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Object>::Remove(T) */, { 10927, 0, -1 } /* System.Collections.Generic.HashSet`1/Enumerator<T> System.Collections.Generic.HashSet`1<System.Object>::GetEnumerator() */, { 10928, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.HashSet`1<System.Object>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 10929, 0, -1 } /* System.Collections.IEnumerator System.Collections.Generic.HashSet`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 10930, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10931, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::OnDeserialization(System.Object) */, { 10932, 0, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Object>::Add(T) */, { 10933, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::UnionWith(System.Collections.Generic.IEnumerable`1<T>) */, { 10934, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::CopyTo(T[]) */, { 10935, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::CopyTo(T[],System.Int32,System.Int32) */, { 10937, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::TrimExcess() */, { 10938, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::Initialize(System.Int32) */, { 10939, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::IncreaseCapacity() */, { 10940, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::SetCapacity(System.Int32) */, { 10941, 0, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Object>::AddIfNotPresent(T) */, { 10942, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Object>::AddValue(System.Int32,System.Int32,T) */, { 10943, 0, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Object>::AreEqualityComparersEqual(System.Collections.Generic.HashSet`1<T>,System.Collections.Generic.HashSet`1<T>) */, { 10944, 0, -1 } /* System.Int32 System.Collections.Generic.HashSet`1<System.Object>::InternalGetHashCode(T) */, { 10948, 0, -1 } /* T System.Collections.Generic.HashSet`1/Enumerator<System.Object>::get_Current() */, { 10949, 0, -1 } /* System.Object System.Collections.Generic.HashSet`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current() */, { 10945, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.HashSet`1<T>) */, { 10946, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::Dispose() */, { 10947, 0, -1 } /* System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Object>::MoveNext() */, { 10950, 0, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset() */, { 11061, -1, 0 } /* T UnityEngine.AttributeHelperEngine::GetCustomAttributeOfType<System.Object>(System.Type) */, { 11204, -1, 0 } /* T UnityEngine.Component::GetComponent<System.Object>() */, { 11206, -1, 0 } /* T UnityEngine.Component::GetComponentInChildren<System.Object>(System.Boolean) */, { 11207, -1, 0 } /* T UnityEngine.Component::GetComponentInChildren<System.Object>() */, { 11208, -1, 0 } /* T[] UnityEngine.Component::GetComponentsInChildren<System.Object>(System.Boolean) */, { 11209, -1, 0 } /* System.Void UnityEngine.Component::GetComponentsInChildren<System.Object>(System.Boolean,System.Collections.Generic.List`1<T>) */, { 11210, -1, 0 } /* T[] UnityEngine.Component::GetComponentsInChildren<System.Object>() */, { 11211, -1, 0 } /* System.Void UnityEngine.Component::GetComponentsInChildren<System.Object>(System.Collections.Generic.List`1<T>) */, { 11213, -1, 0 } /* T UnityEngine.Component::GetComponentInParent<System.Object>() */, { 11214, -1, 0 } /* System.Void UnityEngine.Component::GetComponentsInParent<System.Object>(System.Boolean,System.Collections.Generic.List`1<T>) */, { 11217, -1, 0 } /* System.Void UnityEngine.Component::GetComponents<System.Object>(System.Collections.Generic.List`1<T>) */, { 11218, -1, 0 } /* T[] UnityEngine.Component::GetComponents<System.Object>() */, { 11307, -1, 0 } /* T UnityEngine.GameObject::GetComponent<System.Object>() */, { 11311, -1, 0 } /* T UnityEngine.GameObject::GetComponentInChildren<System.Object>() */, { 11312, -1, 0 } /* T UnityEngine.GameObject::GetComponentInChildren<System.Object>(System.Boolean) */, { 11315, -1, 0 } /* T[] UnityEngine.GameObject::GetComponents<System.Object>() */, { 11316, -1, 0 } /* System.Void UnityEngine.GameObject::GetComponents<System.Object>(System.Collections.Generic.List`1<T>) */, { 11317, -1, 0 } /* T[] UnityEngine.GameObject::GetComponentsInChildren<System.Object>(System.Boolean) */, { 11318, -1, 0 } /* System.Void UnityEngine.GameObject::GetComponentsInChildren<System.Object>(System.Boolean,System.Collections.Generic.List`1<T>) */, { 11319, -1, 0 } /* T[] UnityEngine.GameObject::GetComponentsInChildren<System.Object>() */, { 11320, -1, 0 } /* System.Void UnityEngine.GameObject::GetComponentsInParent<System.Object>(System.Boolean,System.Collections.Generic.List`1<T>) */, { 11323, -1, 0 } /* T UnityEngine.GameObject::AddComponent<System.Object>() */, { 11667, -1, 0 } /* T[] UnityEngine.Mesh::GetAllocArrayFromChannel<System.Object>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh/InternalVertexChannelType,System.Int32) */, { 11668, -1, 0 } /* T[] UnityEngine.Mesh::GetAllocArrayFromChannel<System.Object>(UnityEngine.Rendering.VertexAttribute) */, { 11670, -1, 0 } /* System.Void UnityEngine.Mesh::SetArrayForChannel<System.Object>(UnityEngine.Rendering.VertexAttribute,T[]) */, { 11671, -1, 0 } /* System.Void UnityEngine.Mesh::SetListForChannel<System.Object>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh/InternalVertexChannelType,System.Int32,System.Collections.Generic.List`1<T>) */, { 11672, -1, 0 } /* System.Void UnityEngine.Mesh::SetListForChannel<System.Object>(UnityEngine.Rendering.VertexAttribute,System.Collections.Generic.List`1<T>) */, { 11688, -1, 0 } /* System.Void UnityEngine.Mesh::SetUvsImpl<System.Object>(System.Int32,System.Int32,System.Collections.Generic.List`1<T>) */, { 11746, -1, 0 } /* System.Int32 UnityEngine.NoAllocHelpers::SafeLength<System.Object>(System.Collections.Generic.List`1<T>) */, { 11847, -1, 0 } /* T[] UnityEngine.Resources::ConvertObjects<System.Object>(UnityEngine.Object[]) */, { 11848, -1, 0 } /* T UnityEngine.Resources::Load<System.Object>(System.String) */, { 11851, -1, 0 } /* T UnityEngine.Resources::GetBuiltinResource<System.Object>(System.String) */, { 11856, -1, 0 } /* T UnityEngine.ScriptableObject::CreateInstance<System.Object>() */, { 12043, -1, 0 } /* T UnityEngine.Object::Instantiate<System.Object>(T) */, { 12051, -1, 0 } /* T[] UnityEngine.Object::FindObjectsOfType<System.Object>() */, { 12052, -1, 0 } /* T UnityEngine.Object::FindObjectOfType<System.Object>() */, { 12077, -1, 0 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Object>(System.Object) */, { 12087, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12088, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 12089, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12090, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12091, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::Invoke(System.Object[]) */, { 12092, 0, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Object>::Invoke(T1) */, { 12093, 0, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<System.Object>::Find(System.Object,System.Reflection.MethodInfo) */, { 12094, 21, -1 } /* System.Void UnityEngine.Events.InvokableCall`2<System.Object,System.Object>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12095, 21, -1 } /* System.Void UnityEngine.Events.InvokableCall`2<System.Object,System.Object>::Invoke(System.Object[]) */, { 12096, 21, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`2<System.Object,System.Object>::Find(System.Object,System.Reflection.MethodInfo) */, { 12097, 40, -1 } /* System.Void UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12098, 40, -1 } /* System.Void UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>::Invoke(System.Object[]) */, { 12099, 40, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>::Find(System.Object,System.Reflection.MethodInfo) */, { 12100, 41, -1 } /* System.Void UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12101, 41, -1 } /* System.Void UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>::Invoke(System.Object[]) */, { 12102, 41, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>::Find(System.Object,System.Reflection.MethodInfo) */, { 12103, 0, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Object>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T) */, { 12104, 0, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Object>::Invoke(System.Object[]) */, { 12105, 0, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Object>::Invoke(T) */, { 12146, 0, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 12147, 0, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Object>::Invoke(T0) */, { 12148, 0, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Object>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 12149, 0, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 12150, 0, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Object>::.ctor() */, { 12151, 0, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Object>::AddListener(UnityEngine.Events.UnityAction`1<T0>) */, { 12152, 0, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Object>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) */, { 12153, 0, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Object>::FindMethod_Impl(System.String,System.Object) */, { 12154, 0, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12155, 0, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Object>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) */, { 12156, 0, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Object>::Invoke(T0) */, { 12157, 21, -1 } /* System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 12158, 21, -1 } /* System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::Invoke(T0,T1) */, { 12159, 21, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`2<System.Object,System.Object>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object) */, { 12160, 21, -1 } /* System.Void UnityEngine.Events.UnityAction`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 12161, 21, -1 } /* System.Void UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::.ctor() */, { 12162, 21, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::FindMethod_Impl(System.String,System.Object) */, { 12163, 21, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`2<System.Object,System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12164, 40, -1 } /* System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 12165, 40, -1 } /* System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::Invoke(T0,T1,T2) */, { 12166, 40, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::BeginInvoke(T0,T1,T2,System.AsyncCallback,System.Object) */, { 12167, 40, -1 } /* System.Void UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 12168, 40, -1 } /* System.Void UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>::.ctor() */, { 12169, 40, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>::FindMethod_Impl(System.String,System.Object) */, { 12170, 40, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12171, 41, -1 } /* System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 12172, 41, -1 } /* System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::Invoke(T0,T1,T2,T3) */, { 12173, 41, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::BeginInvoke(T0,T1,T2,T3,System.AsyncCallback,System.Object) */, { 12174, 41, -1 } /* System.Void UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 12175, 41, -1 } /* System.Void UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>::.ctor() */, { 12176, 41, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>::FindMethod_Impl(System.String,System.Object) */, { 12177, 41, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12250, -1, 0 } /* System.Void UnityEngine.Assertions.Assert::AreEqual<System.Object>(T,T,System.String) */, { 12251, -1, 0 } /* System.Void UnityEngine.Assertions.Assert::AreEqual<System.Object>(T,T,System.String,System.Collections.Generic.IEqualityComparer`1<T>) */, { 12297, -1, 0 } /* System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<System.Object>() */, { 13302, -1, 0 } /* T UnityEngine.JsonUtility::FromJson<System.Object>(System.String) */, { 13519, -1, 0 } /* T UnityEngine.EventSystems.ExecuteEvents::ValidateEventData<System.Object>(UnityEngine.EventSystems.BaseEventData) */, { 13555, -1, 0 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13556, -1, 0 } /* UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13557, -1, 0 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::ShouldSendToComponent<System.Object>(UnityEngine.Component) */, { 13558, -1, 0 } /* System.Void UnityEngine.EventSystems.ExecuteEvents::GetEventList<System.Object>(UnityEngine.GameObject,System.Collections.Generic.IList`1<UnityEngine.EventSystems.IEventSystemHandler>) */, { 13559, -1, 0 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::CanHandleEvent<System.Object>(UnityEngine.GameObject) */, { 13560, -1, 0 } /* UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<System.Object>(UnityEngine.GameObject) */, { 13563, 0, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>::.ctor(System.Object,System.IntPtr) */, { 13564, 0, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>::Invoke(T1,UnityEngine.EventSystems.BaseEventData) */, { 13565, 0, -1 } /* System.IAsyncResult UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>::BeginInvoke(T1,UnityEngine.EventSystems.BaseEventData,System.AsyncCallback,System.Object) */, { 13566, 0, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>::EndInvoke(System.IAsyncResult) */, { 13942, -1, 0 } /* T UnityEngine.UI.Dropdown::GetOrAddComponent<System.Object>(UnityEngine.GameObject) */, { 14618, -1, 0 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<System.Object>(T&,T) */, { 14943, -1, 0 } /* System.Void UnityEngine.UI.LayoutGroup::SetProperty<System.Object>(T&,T) */, { 15012, 0, -1 } /* System.Int32 UnityEngine.UI.Collections.IndexedSet`1<System.Object>::get_Count() */, { 15013, 0, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<System.Object>::get_IsReadOnly() */, { 15017, 0, -1 } /* T UnityEngine.UI.Collections.IndexedSet`1<System.Object>::get_Item(System.Int32) */, { 15018, 0, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::set_Item(System.Int32,T) */, { 15003, 0, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::.ctor() */, { 15004, 0, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::Add(T) */, { 15005, 0, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<System.Object>::AddUnique(T) */, { 15006, 0, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<System.Object>::Remove(T) */, { 15007, 0, -1 } /* System.Collections.Generic.IEnumerator`1<T> UnityEngine.UI.Collections.IndexedSet`1<System.Object>::GetEnumerator() */, { 15008, 0, -1 } /* System.Collections.IEnumerator UnityEngine.UI.Collections.IndexedSet`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 15009, 0, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::Clear() */, { 15010, 0, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<System.Object>::Contains(T) */, { 15011, 0, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::CopyTo(T[],System.Int32) */, { 15014, 0, -1 } /* System.Int32 UnityEngine.UI.Collections.IndexedSet`1<System.Object>::IndexOf(T) */, { 15015, 0, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::Insert(System.Int32,T) */, { 15016, 0, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::RemoveAt(System.Int32) */, { 15019, 0, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::RemoveAll(System.Predicate`1<T>) */, { 15020, 0, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<System.Object>::Sort(System.Comparison`1<T>) */, { 15021, 0, -1 } /* System.Void UnityEngine.UI.ListPool`1<System.Object>::Clear(System.Collections.Generic.List`1<T>) */, { 15022, 0, -1 } /* System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<System.Object>::Get() */, { 15023, 0, -1 } /* System.Void UnityEngine.UI.ListPool`1<System.Object>::Release(System.Collections.Generic.List`1<T>) */, { 15024, 0, -1 } /* System.Void UnityEngine.UI.ListPool`1<System.Object>::.cctor() */, { 15026, 0, -1 } /* System.Int32 UnityEngine.UI.ObjectPool`1<System.Object>::get_countAll() */, { 15027, 0, -1 } /* System.Void UnityEngine.UI.ObjectPool`1<System.Object>::set_countAll(System.Int32) */, { 15028, 0, -1 } /* System.Int32 UnityEngine.UI.ObjectPool`1<System.Object>::get_countActive() */, { 15029, 0, -1 } /* System.Int32 UnityEngine.UI.ObjectPool`1<System.Object>::get_countInactive() */, { 15025, 0, -1 } /* System.Void UnityEngine.UI.ObjectPool`1<System.Object>::.ctor(UnityEngine.Events.UnityAction`1<T>,UnityEngine.Events.UnityAction`1<T>) */, { 15030, 0, -1 } /* T UnityEngine.UI.ObjectPool`1<System.Object>::Get() */, { 15031, 0, -1 } /* System.Void UnityEngine.UI.ObjectPool`1<System.Object>::Release(T) */, { 15400, -1, 0 } /* T[] Vuforia.UnityComponentExtensions::GetComponentsOnlyInChildren<System.Object>(UnityEngine.Component) */, { 15401, -1, 0 } /* T[] Vuforia.UnityComponentExtensions::GetComponentsOnlyInChildren<System.Object>(UnityEngine.Component,System.Boolean) */, { 15712, -1, 0 } /* System.Void Vuforia.IEnumerableExtensionMethods::ForEach<System.Object>(System.Collections.Generic.IEnumerable`1<T>,System.Action`1<T>) */, { 15714, -1, 0 } /* System.Void Vuforia.DelegateHelper::InvokeWithExceptionHandling<System.Object>(System.Action`1<T>,T) */, { 15715, -1, 21 } /* System.Void Vuforia.DelegateHelper::InvokeWithExceptionHandling<System.Object,System.Object>(System.Action`2<T1,T2>,T1,T2) */, { 15875, -1, 0 } /* T Vuforia.MixedRealityController::InitializeDeviceTracker<System.Object>() */, { 17715, -1, 0 } /* Vuforia.TargetFinder Vuforia.ObjectTracker::GetTargetFinder<System.Object>() */, { 17889, -1, 0 } /* T Vuforia.VuforiaRuntimeUtilities::SafeInitTracker<System.Object>() */, { 17890, -1, 0 } /* System.Boolean Vuforia.VuforiaRuntimeUtilities::SafeDeinitTracker<System.Object>() */, { 17963, -1, 0 } /* T Vuforia.TrackerManager::GetTracker<System.Object>() */, { 17964, -1, 0 } /* T Vuforia.TrackerManager::InitTracker<System.Object>() */, { 17965, -1, 0 } /* System.Boolean Vuforia.TrackerManager::DeinitTracker<System.Object>() */, { 17967, -1, 0 } /* System.Type Vuforia.TrackerManager::GetMappableType<System.Object>() */, { 17969, -1, 0 } /* System.Boolean Vuforia.TrackerManager::IsTrackerSupportedNatively<System.Object>() */, { 17982, -1, 0 } /* T Vuforia.ITrackerManager::GetTracker<System.Object>() */, { 17983, -1, 0 } /* T Vuforia.ITrackerManager::InitTracker<System.Object>() */, { 17984, -1, 0 } /* System.Boolean Vuforia.ITrackerManager::DeinitTracker<System.Object>() */, { 9599, 1, -1 } /* System.Void System.Collections.Generic.List`1<System.String>::.ctor() */, { 9615, 1, -1 } /* System.Void System.Collections.Generic.List`1<System.String>::Add(T) */, { 9648, 1, -1 } /* T[] System.Collections.Generic.List`1<System.String>::ToArray() */, { 9400, 20, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor() */, { 9409, 20, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::set_Item(TKey,TValue) */, { 9405, 20, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.String,System.String>::get_Count() */, { 9418, 20, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.String,System.String>::GetEnumerator() */, { 9441, 20, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::get_Current() */, { 9372, 20, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Value() */, { 9440, 20, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::MoveNext() */, { 9442, 20, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::Dispose() */, { 9599, 32, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::.ctor() */, { 9599, 34, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::.ctor() */, { 9615, 32, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::Add(T) */, { 9615, 34, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::Add(T) */, { 9645, 32, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 1022, 34, -1 } /* System.Void System.Comparison`1<Mono.Globalization.Unicode.Level2Map>::.ctor(System.Object,System.IntPtr) */, { 9647, 34, -1 } /* System.Void System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::Sort(System.Comparison`1<T>) */, { 9648, 32, -1 } /* T[] System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>::ToArray() */, { 9648, 34, -1 } /* T[] System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>::ToArray() */, { 762, -1, 8 } /* System.Void System.Array::Reverse<System.Byte>(T[],System.Int32,System.Int32) */, { 761, -1, 8 } /* System.Void System.Array::Reverse<System.Byte>(T[]) */, { 9604, 1, -1 } /* System.Int32 System.Collections.Generic.List`1<System.String>::get_Count() */, { 9610, 1, -1 } /* T System.Collections.Generic.List`1<System.String>::get_Item(System.Int32) */, { 9619, 1, -1 } /* System.Void System.Collections.Generic.List`1<System.String>::Clear() */, { 9279, 42, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9601, 42, -1 } /* System.Void System.Collections.Generic.List`1<System.Exception>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9601, 44, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9280, 42, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::get_Count() */, { 9283, 42, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::CopyTo(T[],System.Int32) */, { 9599, 42, -1 } /* System.Void System.Collections.Generic.List`1<System.Exception>::.ctor() */, { 9599, 45, -1 } /* System.Void System.Collections.Generic.List`1<System.AggregateException>::.ctor() */, { 9615, 45, -1 } /* System.Void System.Collections.Generic.List`1<System.AggregateException>::Add(T) */, { 9610, 45, -1 } /* T System.Collections.Generic.List`1<System.AggregateException>::get_Item(System.Int32) */, { 9615, 42, -1 } /* System.Void System.Collections.Generic.List`1<System.Exception>::Add(T) */, { 9604, 45, -1 } /* System.Int32 System.Collections.Generic.List`1<System.AggregateException>::get_Count() */, { 9281, 42, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::get_Item(System.Int32) */, { 9400, 137, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Object>::.ctor() */, { 9415, 137, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Object>::ContainsKey(TKey) */, { 9409, 137, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Object>::set_Item(TKey,TValue) */, { 9427, 137, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Object>::Remove(TKey) */, { 9522, 8, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Byte>::.ctor() */, { 8879, 25, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::.ctor() */, { 9522, 1, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.String>::.ctor() */, { 8884, 25, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::Add(TKey,TValue) */, { 8886, 25, -1 } /* System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::TryGetValue(TKey,TValue&) */, { 8885, 25, -1 } /* System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::Remove(TKey) */, { 1030, 10, -1 } /* System.Void System.Predicate`1<System.Type>::.ctor(System.Object,System.IntPtr) */, { 6153, -1, 10 } /* System.Boolean System.Diagnostics.Contracts.Contract::ForAll<System.Type>(System.Collections.Generic.IEnumerable`1<T>,System.Predicate`1<T>) */, { 9599, 238, -1 } /* System.Void System.Collections.Generic.List`1<System.Diagnostics.StackFrame>::.ctor() */, { 9615, 238, -1 } /* System.Void System.Collections.Generic.List`1<System.Diagnostics.StackFrame>::Add(T) */, { 9648, 238, -1 } /* T[] System.Collections.Generic.List`1<System.Diagnostics.StackFrame>::ToArray() */, { 9497, 83, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.UInt64>::get_Default() */, { 782, -1, 717 } /* System.Void System.Array::Sort<System.UInt64,System.String>(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>) */, { 9402, 212, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9428, 212, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::TryGetValue(TKey,TValue&) */, { 9409, 212, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::set_Item(TKey,TValue) */, { 9400, 230, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>::.ctor() */, { 9400, 235, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>::.ctor() */, { 9409, 230, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>::set_Item(TKey,TValue) */, { 9409, 235, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>::set_Item(TKey,TValue) */, { 9428, 230, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>::TryGetValue(TKey,TValue&) */, { 9428, 235, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>::TryGetValue(TKey,TValue&) */, { 3302, 24, -1 } /* System.Boolean System.Nullable`1<System.Int32>::get_HasValue() */, { 3303, 24, -1 } /* T System.Nullable`1<System.Int32>::get_Value() */, { 9410, 20, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::Add(TKey,TValue) */, { 9428, 20, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.String>::TryGetValue(TKey,TValue&) */, { 9620, 1, -1 } /* System.Boolean System.Collections.Generic.List`1<System.String>::Contains(T) */, { 3302, 47, -1 } /* System.Boolean System.Nullable`1<System.Boolean>::get_HasValue() */, { 3301, 47, -1 } /* System.Void System.Nullable`1<System.Boolean>::.ctor(T) */, { 3303, 47, -1 } /* T System.Nullable`1<System.Boolean>::get_Value() */, { 9601, 1, -1 } /* System.Void System.Collections.Generic.List`1<System.String>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 5061, 1, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<System.String>::.ctor(System.String,System.String,System.String,System.IO.SearchOption,System.IO.SearchResultHandler`1<TSource>,System.Boolean) */, { 6758, -1, 24 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Int32>(System.Threading.CancellationToken) */, { 6619, 24, -1 } /* TResult System.Threading.Tasks.Task`1<System.Int32>::get_Result() */, { 6754, -1, 24 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromResult<System.Int32>(TResult) */, { 6759, -1, 24 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Int32>(System.OperationCanceledException) */, { 6756, -1, 24 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromException<System.Int32>(System.Exception) */, { 6759, -1, 186 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Threading.Tasks.VoidTaskResult>(System.OperationCanceledException) */, { 849, -1, 9 } /* T[] System.Array::Empty<System.Char>() */, { 1002, 189, -1 } /* System.Void System.Func`1<System.Threading.SemaphoreSlim>::.ctor(System.Object,System.IntPtr) */, { 6222, -1, 189 } /* T System.Threading.LazyInitializer::EnsureInitialized<System.Threading.SemaphoreSlim>(T&,System.Func`1<T>) */, { 1006, 185, -1 } /* System.Void System.Func`2<System.Object,System.Int32>::.ctor(System.Object,System.IntPtr) */, { 6626, 24, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::GetAwaiter() */, { 8837, 24, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult() */, { 1018, 190, -1 } /* System.Void System.Func`5<System.IO.Stream,System.IO.Stream/ReadWriteParameters,System.AsyncCallback,System.Object,System.IAsyncResult>::.ctor(System.Object,System.IntPtr) */, { 1010, 192, -1 } /* System.Void System.Func`3<System.IO.Stream,System.IAsyncResult,System.Int32>::.ctor(System.Object,System.IntPtr) */, { 6634, 24, 718 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Int32>::FromAsyncTrim<System.IO.Stream,System.IO.Stream/ReadWriteParameters>(!!0,!!1,System.Func`5<!!0,!!1,System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`3<!!0,System.IAsyncResult,TResult>) */, { 994, 197, -1 } /* System.Void System.Action`2<System.Threading.Tasks.Task,System.Object>::.ctor(System.Object,System.IntPtr) */, { 896, -1, 198 } /* System.Tuple`2<T1,T2> System.Tuple::Create<System.IO.Stream,System.IO.Stream/ReadWriteTask>(T1,T2) */, { 1010, 199, -1 } /* System.Void System.Func`3<System.IO.Stream,System.IAsyncResult,System.Threading.Tasks.VoidTaskResult>::.ctor(System.Object,System.IntPtr) */, { 6634, 186, 718 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::FromAsyncTrim<System.IO.Stream,System.IO.Stream/ReadWriteParameters>(!!0,!!1,System.Func`5<!!0,!!1,System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`3<!!0,System.IAsyncResult,TResult>) */, { 900, 198, -1 } /* T1 System.Tuple`2<System.IO.Stream,System.IO.Stream/ReadWriteTask>::get_Item1() */, { 901, 198, -1 } /* T2 System.Tuple`2<System.IO.Stream,System.IO.Stream/ReadWriteTask>::get_Item2() */, { 6611, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6612, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) */, { 1002, 204, -1 } /* System.Void System.Func`1<System.Threading.ManualResetEvent>::.ctor(System.Object,System.IntPtr) */, { 6222, -1, 204 } /* T System.Threading.LazyInitializer::EnsureInitialized<System.Threading.ManualResetEvent>(T&,System.Func`1<T>) */, { 5076, 1, -1 } /* System.Void System.IO.SearchResultHandler`1<System.String>::.ctor() */, { 1006, 205, -1 } /* System.Void System.Func`2<System.Object,System.String>::.ctor(System.Object,System.IntPtr) */, { 923, 206, -1 } /* T1 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item1() */, { 924, 206, -1 } /* T2 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item2() */, { 925, 206, -1 } /* T3 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item3() */, { 926, 206, -1 } /* T4 System.Tuple`4<System.IO.TextReader,System.Char[],System.Int32,System.Int32>::get_Item4() */, { 900, 208, -1 } /* T1 System.Tuple`2<System.IO.TextWriter,System.Char>::get_Item1() */, { 901, 208, -1 } /* T2 System.Tuple`2<System.IO.TextWriter,System.Char>::get_Item2() */, { 900, 210, -1 } /* T1 System.Tuple`2<System.IO.TextWriter,System.String>::get_Item1() */, { 901, 210, -1 } /* T2 System.Tuple`2<System.IO.TextWriter,System.String>::get_Item2() */, { 923, 211, -1 } /* T1 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item1() */, { 924, 211, -1 } /* T2 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item2() */, { 925, 211, -1 } /* T3 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item3() */, { 926, 211, -1 } /* T4 System.Tuple`4<System.IO.TextWriter,System.Char[],System.Int32,System.Int32>::get_Item4() */, { 9615, 48, -1 } /* System.Void System.Collections.Generic.List`1<System.LocalDataStore>::Add(T) */, { 9637, 48, -1 } /* System.Boolean System.Collections.Generic.List`1<System.LocalDataStore>::Remove(T) */, { 9410, 49, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::Add(TKey,TValue) */, { 9367, -1, 49 } /* TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<System.String,System.LocalDataStoreSlot>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey) */, { 9427, 49, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::Remove(TKey) */, { 9610, 48, -1 } /* T System.Collections.Generic.List`1<System.LocalDataStore>::get_Item(System.Int32) */, { 9604, 48, -1 } /* System.Int32 System.Collections.Generic.List`1<System.LocalDataStore>::get_Count() */, { 9599, 48, -1 } /* System.Void System.Collections.Generic.List`1<System.LocalDataStore>::.ctor() */, { 9400, 49, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>::.ctor() */, { 9401, 146, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::.ctor(System.Int32) */, { 9428, 146, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::TryGetValue(TKey,TValue&) */, { 9410, 146, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>::Add(TKey,TValue) */, { 704, -1, 108 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeData>(T[]) */, { 9400, 142, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::.ctor() */, { 9428, 142, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::TryGetValue(TKey,TValue&) */, { 9409, 142, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>::set_Item(TKey,TValue) */, { 756, -1, 141 } /* System.Int32 System.Array::LastIndexOf<System.Delegate>(T[],T) */, { 705, -1, 9 } /* System.Void System.Array::Resize<System.Char>(T[]&,System.Int32) */, { 4467, -1, 172 } /* T[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeTypedArgument>(System.Object[]) */, { 704, -1, 172 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeTypedArgument>(T[]) */, { 4467, -1, 173 } /* T[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeNamedArgument>(System.Object[]) */, { 704, -1, 173 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeNamedArgument>(T[]) */, { 9279, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9600, 170, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.Module>::.ctor(System.Int32) */, { 9615, 170, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.Module>::Add(T) */, { 9648, 170, -1 } /* T[] System.Collections.Generic.List`1<System.Reflection.Module>::ToArray() */, { 4263, -1, 719 } /* T System.Reflection.CustomAttributeExtensions::GetCustomAttribute<System.Resources.NeutralResourcesLanguageAttribute>(System.Reflection.Assembly) */, { 9400, 158, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet>::.ctor() */, { 9428, 163, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceLocator>::TryGetValue(TKey,TValue&) */, { 9402, 163, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9409, 163, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceLocator>::set_Item(TKey,TValue) */, { 9410, 163, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceLocator>::Add(TKey,TValue) */, { 8796, -1, 24 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Int32>(TResult) */, { 8796, -1, 47 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Boolean>(TResult) */, { 8787, 186, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 8789, 186, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::get_Task() */, { 8791, 186, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(System.Threading.Tasks.Task`1<TResult>) */, { 8792, 186, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetException(System.Exception) */, { 9280, 44, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Count() */, { 9281, 44, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Item(System.Int32) */, { 849, -1, 1 } /* T[] System.Array::Empty<System.String>() */, { 9648, 291, -1 } /* T[] System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::ToArray() */, { 9629, 291, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::GetEnumerator() */, { 9655, 291, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Runtime.Remoting.Contexts.IContextProperty>::get_Current() */, { 9653, 291, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.Remoting.Contexts.IContextProperty>::MoveNext() */, { 9652, 291, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.Remoting.Contexts.IContextProperty>::Dispose() */, { 9599, 291, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::.ctor() */, { 9615, 291, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::Add(T) */, { 9604, 291, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::get_Count() */, { 9610, 291, -1 } /* T System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::get_Item(System.Int32) */, { 9314, 265, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.Runtime.Serialization.MemberHolder,System.Reflection.MemberInfo[]>::.ctor() */, { 9599, 270, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.Serialization.SerializationFieldInfo>::.ctor() */, { 9615, 270, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.Serialization.SerializationFieldInfo>::Add(T) */, { 9604, 270, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Runtime.Serialization.SerializationFieldInfo>::get_Count() */, { 1006, 265, -1 } /* System.Void System.Func`2<System.Runtime.Serialization.MemberHolder,System.Reflection.MemberInfo[]>::.ctor(System.Object,System.IntPtr) */, { 9331, 265, -1 } /* TValue System.Collections.Concurrent.ConcurrentDictionary`2<System.Runtime.Serialization.MemberHolder,System.Reflection.MemberInfo[]>::GetOrAdd(TKey,System.Func`2<TKey,TValue>) */, { 9428, 282, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>::TryGetValue(TKey,TValue&) */, { 9410, 282, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>::Add(TKey,TValue) */, { 9400, 282, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>::.ctor() */, { 9318, 137, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.Object>::TryGetValue(TKey,TValue&) */, { 9327, 137, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.Object>::set_Item(TKey,TValue) */, { 9314, 137, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.Object>::.ctor() */, { 1006, 132, -1 } /* System.Void System.Func`2<System.Reflection.AssemblyName,System.Reflection.Assembly>::.ctor(System.Object,System.IntPtr) */, { 1014, 133, -1 } /* System.Void System.Func`4<System.Reflection.Assembly,System.String,System.Boolean,System.Type>::.ctor(System.Object,System.IntPtr) */, { 9600, 10, -1 } /* System.Void System.Collections.Generic.List`1<System.Type>::.ctor(System.Int32) */, { 9610, 10, -1 } /* T System.Collections.Generic.List`1<System.Type>::get_Item(System.Int32) */, { 1755, 273, -1 } /* System.Void System.EventHandler`1<System.Runtime.Serialization.SafeSerializationEventArgs>::Invoke(System.Object,TEventArgs) */, { 9599, 97, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::.ctor() */, { 9615, 97, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::Add(T) */, { 9642, 97, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::Reverse() */, { 9604, 97, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Reflection.MethodInfo>::get_Count() */, { 9629, 97, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Reflection.MethodInfo>::GetEnumerator() */, { 9655, 97, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Reflection.MethodInfo>::get_Current() */, { 9653, 97, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Reflection.MethodInfo>::MoveNext() */, { 9652, 97, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Reflection.MethodInfo>::Dispose() */, { 9400, 274, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::.ctor() */, { 9415, 274, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::ContainsKey(TKey) */, { 9410, 274, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, { 9428, 274, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&) */, { 2371, 97, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::.ctor(System.Int32) */, { 2376, 97, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::Add(T) */, { 2371, 100, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::.ctor(System.Int32) */, { 2376, 100, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::Add(T) */, { 2371, 80, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::.ctor(System.Int32) */, { 2376, 80, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::Add(T) */, { 2371, 104, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.EventInfo>::.ctor(System.Int32) */, { 2376, 104, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.EventInfo>::Add(T) */, { 2371, 56, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.FieldInfo>::.ctor(System.Int32) */, { 2376, 56, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.FieldInfo>::Add(T) */, { 2371, 10, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Type>::.ctor(System.Int32) */, { 2376, 10, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Type>::Add(T) */, { 2373, 97, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::ToArray() */, { 2373, 100, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::ToArray() */, { 2373, 56, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Reflection.FieldInfo>::ToArray() */, { 2375, 97, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::get_Count() */, { 2372, 97, -1 } /* T System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::get_Item(System.Int32) */, { 2375, 100, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::get_Count() */, { 2372, 100, -1 } /* T System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::get_Item(System.Int32) */, { 2375, 80, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::get_Count() */, { 2372, 80, -1 } /* T System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::get_Item(System.Int32) */, { 2373, 80, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::ToArray() */, { 2373, 104, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Reflection.EventInfo>::ToArray() */, { 2375, 104, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Reflection.EventInfo>::get_Count() */, { 2375, 56, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Reflection.FieldInfo>::get_Count() */, { 2373, 10, -1 } /* T[] System.RuntimeType/ListBuilder`1<System.Type>::ToArray() */, { 2375, 10, -1 } /* System.Int32 System.RuntimeType/ListBuilder`1<System.Type>::get_Count() */, { 2374, 97, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.MethodInfo>::CopyTo(System.Object[],System.Int32) */, { 2374, 100, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.ConstructorInfo>::CopyTo(System.Object[],System.Int32) */, { 2374, 80, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.PropertyInfo>::CopyTo(System.Object[],System.Int32) */, { 2374, 104, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.EventInfo>::CopyTo(System.Object[],System.Int32) */, { 2374, 56, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Reflection.FieldInfo>::CopyTo(System.Object[],System.Int32) */, { 2374, 10, -1 } /* System.Void System.RuntimeType/ListBuilder`1<System.Type>::CopyTo(System.Object[],System.Int32) */, { 743, -1, 83 } /* System.Int32 System.Array::BinarySearch<System.UInt64>(T[],T) */, { 750, -1, 1 } /* System.Int32 System.Array::IndexOf<System.String>(T[],T) */, { 9600, 97, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::.ctor(System.Int32) */, { 9622, 97, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodInfo>::CopyTo(T[]) */, { 9600, 63, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodBase>::.ctor(System.Int32) */, { 9615, 63, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodBase>::Add(T) */, { 9604, 63, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Reflection.MethodBase>::get_Count() */, { 9622, 63, -1 } /* System.Void System.Collections.Generic.List`1<System.Reflection.MethodBase>::CopyTo(T[]) */, { 6214, 240, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>::get_Source() */, { 6215, 240, -1 } /* System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>::get_Index() */, { 6221, 240, -1 } /* T System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::SafeAtomicRemove(System.Int32,T) */, { 6210, 240, -1 } /* System.Void System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>::.ctor(System.Int32) */, { 6212, 240, -1 } /* System.Threading.SparselyPopulatedArrayAddInfo`1<T> System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>::Add(T) */, { 6211, 240, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>::get_Tail() */, { 6219, 240, -1 } /* System.Int32 System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::get_Length() */, { 6218, 240, -1 } /* T System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::get_Item(System.Int32) */, { 6220, 240, -1 } /* System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::get_Prev() */, { 9629, 250, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Threading.IAsyncLocal>::GetEnumerator() */, { 9655, 250, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Threading.IAsyncLocal>::get_Current() */, { 9428, 248, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object>::TryGetValue(TKey,TValue&) */, { 9653, 250, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Threading.IAsyncLocal>::MoveNext() */, { 9652, 250, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Threading.IAsyncLocal>::Dispose() */, { 6626, 47, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::GetAwaiter() */, { 8837, 47, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::GetResult() */, { 6758, -1, 47 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Boolean>(System.Threading.CancellationToken) */, { 8785, 47, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::Create() */, { 8786, 47, 720 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::Start<System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(!!0&) */, { 8789, 47, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::get_Task() */, { 6611, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6627, 181, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::ConfigureAwait(System.Boolean) */, { 8846, 181, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.Task>::GetAwaiter() */, { 8848, 181, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.Task>::get_IsCompleted() */, { 8788, 47, 721 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.Task>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(!!0&,!!1&) */, { 8850, 181, -1 } /* TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.Task>::GetResult() */, { 6627, 47, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::ConfigureAwait(System.Boolean) */, { 8846, 47, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::GetAwaiter() */, { 8848, 47, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::get_IsCompleted() */, { 8788, 47, 722 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(!!0&,!!1&) */, { 8850, 47, -1 } /* TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::GetResult() */, { 8792, 47, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetException(System.Exception) */, { 8790, 47, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(TResult) */, { 8787, 47, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 6609, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor() */, { 6617, 47, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetResult(TResult) */, { 987, 181, -1 } /* System.Void System.Action`1<System.Threading.Tasks.Task>::Invoke(T) */, { 995, 197, -1 } /* System.Void System.Action`2<System.Threading.Tasks.Task,System.Object>::Invoke(T1,T2) */, { 9409, 258, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>::set_Item(TKey,TValue) */, { 9427, 258, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>::Remove(TKey) */, { 914, 262, -1 } /* System.Void System.Tuple`3<System.Threading.Tasks.Task,System.Threading.Tasks.Task,System.Threading.Tasks.TaskContinuation>::.ctor(T1,T2,T3) */, { 6639, 239, -1 } /* System.Void System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration>::.ctor(T) */, { 911, 262, -1 } /* T1 System.Tuple`3<System.Threading.Tasks.Task,System.Threading.Tasks.Task,System.Threading.Tasks.TaskContinuation>::get_Item1() */, { 912, 262, -1 } /* T2 System.Tuple`3<System.Threading.Tasks.Task,System.Threading.Tasks.Task,System.Threading.Tasks.TaskContinuation>::get_Item2() */, { 913, 262, -1 } /* T3 System.Tuple`3<System.Threading.Tasks.Task,System.Threading.Tasks.Task,System.Threading.Tasks.TaskContinuation>::get_Item3() */, { 6222, -1, 261 } /* T System.Threading.LazyInitializer::EnsureInitialized<System.Threading.Tasks.Task/ContingentProperties>(T&,System.Func`1<T>) */, { 9279, 44, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9639, 181, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Threading.Tasks.Task>::RemoveAll(System.Predicate`1<T>) */, { 9599, 181, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Tasks.Task>::.ctor() */, { 9615, 181, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Tasks.Task>::Add(T) */, { 9629, 181, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Threading.Tasks.Task>::GetEnumerator() */, { 9655, 181, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Threading.Tasks.Task>::get_Current() */, { 9653, 181, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Threading.Tasks.Task>::MoveNext() */, { 9652, 181, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Threading.Tasks.Task>::Dispose() */, { 6756, -1, 186 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromException<System.Threading.Tasks.VoidTaskResult>(System.Exception) */, { 9400, 258, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>::.ctor() */, { 1002, 261, -1 } /* System.Void System.Func`1<System.Threading.Tasks.Task/ContingentProperties>::.ctor(System.Object,System.IntPtr) */, { 1030, 181, -1 } /* System.Void System.Predicate`1<System.Threading.Tasks.Task>::.ctor(System.Object,System.IntPtr) */, { 6609, 186, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor() */, { 6623, 186, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetCanceled(System.Threading.CancellationToken) */, { 6617, 186, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetResult(TResult) */, { 9629, 44, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::GetEnumerator() */, { 9655, 44, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Current() */, { 9284, 42, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::GetEnumerator() */, { 9653, 44, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::MoveNext() */, { 9652, 44, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::Dispose() */, { 9600, 44, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::.ctor(System.Int32) */, { 9615, 44, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::Add(T) */, { 9617, 44, -1 } /* System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9610, 44, -1 } /* T System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Item(System.Int32) */, { 9604, 44, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Count() */, { 6609, 181, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::.ctor() */, { 6617, 181, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::TrySetResult(TResult) */, { 8879, 263, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object>::.ctor() */, { 8884, 263, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object>::Add(TKey,TValue) */, { 1755, 264, -1 } /* System.Void System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs>::Invoke(System.Object,TEventArgs) */, { 6473, 253, -1 } /* T[] System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::get_Current() */, { 6472, 253, -1 } /* System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::.ctor(System.Int32) */, { 6474, 253, -1 } /* System.Int32 System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::Add(T) */, { 6475, 253, -1 } /* System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::Remove(T) */, { 9600, 255, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Timer>::.ctor(System.Int32) */, { 9615, 255, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Timer>::Add(T) */, { 9604, 255, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Threading.Timer>::get_Count() */, { 9610, 255, -1 } /* T System.Collections.Generic.List`1<System.Threading.Timer>::get_Item(System.Int32) */, { 9619, 255, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Timer>::Clear() */, { 9602, 255, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Threading.Timer>::get_Capacity() */, { 9603, 255, -1 } /* System.Void System.Collections.Generic.List`1<System.Threading.Timer>::set_Capacity(System.Int32) */, { 9599, 117, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::.ctor() */, { 9615, 117, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::Add(T) */, { 9604, 117, -1 } /* System.Int32 System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::get_Count() */, { 9617, 117, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 1022, 117, -1 } /* System.Void System.Comparison`1<System.TimeZoneInfo/AdjustmentRule>::.ctor(System.Object,System.IntPtr) */, { 9647, 117, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::Sort(System.Comparison`1<T>) */, { 9648, 117, -1 } /* T[] System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::ToArray() */, { 9284, 112, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo>::GetEnumerator() */, { 9599, 112, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo>::.ctor() */, { 9615, 112, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo>::Add(T) */, { 9604, 112, -1 } /* System.Int32 System.Collections.Generic.List`1<System.TimeZoneInfo>::get_Count() */, { 9617, 112, -1 } /* System.Void System.Collections.Generic.List`1<System.TimeZoneInfo>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9279, 112, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9637, 117, -1 } /* System.Boolean System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::Remove(T) */, { 9405, 127, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::get_Count() */, { 9408, 127, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::get_Item(TKey) */, { 9610, 113, -1 } /* T System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::get_Item(System.Int32) */, { 9371, 114, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>::get_Key() */, { 9372, 114, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>::get_Value() */, { 9604, 113, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::get_Count() */, { 9400, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::.ctor() */, { 9410, 121, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::Add(TKey,TValue) */, { 9401, 127, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::.ctor(System.Int32) */, { 9408, 121, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32,System.String>::get_Item(TKey) */, { 9410, 127, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::Add(TKey,TValue) */, { 9600, 113, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::.ctor(System.Int32) */, { 9370, 114, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>::.ctor(TKey,TValue) */, { 9615, 113, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::Add(T) */, { 9629, 154, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.TypeIdentifier>::GetEnumerator() */, { 9655, 154, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.TypeIdentifier>::get_Current() */, { 9653, 154, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.TypeIdentifier>::MoveNext() */, { 9652, 154, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.TypeIdentifier>::Dispose() */, { 9610, 156, -1 } /* T System.Collections.Generic.List`1<System.TypeSpec>::get_Item(System.Int32) */, { 9604, 156, -1 } /* System.Int32 System.Collections.Generic.List`1<System.TypeSpec>::get_Count() */, { 9629, 153, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.ModifierSpec>::GetEnumerator() */, { 9655, 153, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.ModifierSpec>::get_Current() */, { 9653, 153, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.ModifierSpec>::MoveNext() */, { 9652, 153, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.ModifierSpec>::Dispose() */, { 1007, 132, -1 } /* TResult System.Func`2<System.Reflection.AssemblyName,System.Reflection.Assembly>::Invoke(T) */, { 1015, 133, -1 } /* TResult System.Func`4<System.Reflection.Assembly,System.String,System.Boolean,System.Type>::Invoke(T1,T2,T3) */, { 9599, 154, -1 } /* System.Void System.Collections.Generic.List`1<System.TypeIdentifier>::.ctor() */, { 9615, 154, -1 } /* System.Void System.Collections.Generic.List`1<System.TypeIdentifier>::Add(T) */, { 9599, 153, -1 } /* System.Void System.Collections.Generic.List`1<System.ModifierSpec>::.ctor() */, { 9615, 153, -1 } /* System.Void System.Collections.Generic.List`1<System.ModifierSpec>::Add(T) */, { 9599, 156, -1 } /* System.Void System.Collections.Generic.List`1<System.TypeSpec>::.ctor() */, { 9615, 156, -1 } /* System.Void System.Collections.Generic.List`1<System.TypeSpec>::Add(T) */, { 9599, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::.ctor() */, { 9615, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Add(T) */, { 9648, 24, -1 } /* T[] System.Collections.Generic.List`1<System.Int32>::ToArray() */, { 8785, 293, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::Create() */, { 8786, 293, 723 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::Start<Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(!!0&) */, { 8789, 293, -1 } /* System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::get_Task() */, { 8778, -1, 724 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&) */, { 8785, 296, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Create() */, { 8786, 296, 725 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Start<Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(!!0&) */, { 8789, 296, -1 } /* System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::get_Task() */, { 6627, 24, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<System.Int32>::ConfigureAwait(System.Boolean) */, { 8846, 24, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter() */, { 8848, 24, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted() */, { 8788, 296, 726 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(!!0&,!!1&) */, { 8850, 24, -1 } /* !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::GetResult() */, { 3301, 24, -1 } /* System.Void System.Nullable`1<System.Int32>::.ctor(!0) */, { 3307, 24, -1 } /* !0 System.Nullable`1<System.Int32>::GetValueOrDefault() */, { 8792, 296, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetException(System.Exception) */, { 8790, 296, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetResult(!0) */, { 8787, 296, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 6627, 296, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::ConfigureAwait(System.Boolean) */, { 8846, 296, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>::GetAwaiter() */, { 8848, 296, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::get_IsCompleted() */, { 8780, -1, 727 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&) */, { 8850, 296, -1 } /* !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::GetResult() */, { 8780, -1, 728 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&) */, { 8788, 293, 729 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(!!0&,!!1&) */, { 8792, 293, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetException(System.Exception) */, { 8790, 293, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetResult(!0) */, { 8787, 293, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 6871, -1, 24 } /* !!0 System.Threading.Tasks.TaskToApm::End<System.Int32>(System.IAsyncResult) */, { 8785, 24, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Create() */, { 8786, 24, 730 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(!!0&) */, { 8789, 24, -1 } /* System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::get_Task() */, { 8786, 24, 731 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(!!0&) */, { 8778, -1, 732 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(!!0&) */, { 1002, 24, -1 } /* System.Void System.Func`1<System.Int32>::.ctor(System.Object,System.IntPtr) */, { 6761, -1, 24 } /* System.Threading.Tasks.Task`1<!!0> System.Threading.Tasks.Task::Run<System.Int32>(System.Func`1<!!0>) */, { 8788, 24, 733 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(!!0&,!!1&) */, { 8792, 24, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetException(System.Exception) */, { 8790, 24, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(!0) */, { 8787, 24, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) */, { 8780, -1, 734 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(!!0&,!!1&) */, { 6627, 293, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult>::ConfigureAwait(System.Boolean) */, { 8846, 293, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<Mono.Net.Security.AsyncProtocolResult>::GetAwaiter() */, { 8848, 293, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>::get_IsCompleted() */, { 8788, 24, 735 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>,Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(!!0&,!!1&) */, { 8850, 293, -1 } /* !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>::GetResult() */, { 8977, -1, 736 } /* !!0 System.Runtime.InteropServices.Marshal::PtrToStructure<Mono.Unity.UnityTls/unitytls_interface_struct>(System.IntPtr) */, { 9428, 121, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.String>::TryGetValue(!0,!1&) */, { 9371, 305, -1 } /* !0 System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Key() */, { 9372, 305, -1 } /* !1 System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Value() */, { 9370, 305, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::.ctor(!0,!1) */, { 9604, 314, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::get_Count() */, { 9610, 314, -1 } /* !0 System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::get_Item(System.Int32) */, { 9629, 314, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::GetEnumerator() */, { 9655, 314, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::get_Current() */, { 9653, 314, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::MoveNext() */, { 9652, 314, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::Dispose() */, { 9619, 314, -1 } /* System.Void System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl>::Clear() */, { 10719, 306, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::get_First() */, { 10756, 306, -1 } /* T System.Collections.Generic.LinkedListNode`1<System.Text.RegularExpressions.CachedCodeEntry>::get_Value() */, { 10732, 306, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::Remove(System.Collections.Generic.LinkedListNode`1<T>) */, { 10723, 306, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::AddFirst(System.Collections.Generic.LinkedListNode`1<T>) */, { 10755, 306, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1<System.Text.RegularExpressions.CachedCodeEntry>::get_Next() */, { 10722, 306, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::AddFirst(T) */, { 10718, 306, -1 } /* System.Int32 System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::get_Count() */, { 10733, 306, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::RemoveLast() */, { 10716, 306, -1 } /* System.Void System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>::.ctor() */, { 9401, 20, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor(System.Int32) */, { 9600, 307, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::.ctor(System.Int32) */, { 9615, 307, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::Add(!0) */, { 9604, 307, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::get_Count() */, { 9610, 307, -1 } /* !0 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::get_Item(System.Int32) */, { 9408, 20, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.String,System.String>::get_Item(!0) */, { 9646, 307, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<!0>) */, { 9611, 307, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::set_Item(System.Int32,!0) */, { 9641, 307, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>::RemoveRange(System.Int32,System.Int32) */, { 9624, 1, -1 } /* System.Void System.Collections.Generic.List`1<System.String>::CopyTo(System.Int32,!0[],System.Int32,System.Int32) */, { 9604, 310, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::get_Count() */, { 9610, 310, -1 } /* !0 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::get_Item(System.Int32) */, { 9643, 310, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::Reverse(System.Int32,System.Int32) */, { 9611, 310, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::set_Item(System.Int32,!0) */, { 9636, 310, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<!0>) */, { 9641, 310, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::RemoveRange(System.Int32,System.Int32) */, { 9600, 310, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::.ctor(System.Int32) */, { 9615, 310, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::Add(!0) */, { 9599, 313, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::.ctor() */, { 9604, 313, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::get_Count() */, { 9641, 313, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::RemoveRange(System.Int32,System.Int32) */, { 9497, 24, -1 } /* System.Collections.Generic.Comparer`1<!0> System.Collections.Generic.Comparer`1<System.Int32>::get_Default() */, { 777, -1, 24 } /* System.Void System.Array::Sort<System.Int32>(!!0[],System.Collections.Generic.IComparer`1<!!0>) */, { 9615, 313, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::Add(!0) */, { 9610, 313, -1 } /* !0 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::get_Item(System.Int32) */, { 9640, 313, -1 } /* System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::RemoveAt(System.Int32) */, { 9643, 1, -1 } /* System.Void System.Collections.Generic.List`1<System.String>::Reverse(System.Int32,System.Int32) */, { 9408, 274, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.String,System.Int32>::get_Item(!0) */, { 9409, 274, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::set_Item(!0,!1) */, { 9401, 301, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::.ctor(System.Int32) */, { 9409, 301, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::set_Item(!0,!1) */, { 9428, 301, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::TryGetValue(!0,!1&) */, { 9405, 301, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.String,System.UriParser>::get_Count() */, { 1003, 47, -1 } /* !0 System.Func`1<System.Boolean>::Invoke() */, { 12250, -1, 24 } /* System.Void UnityEngine.Assertions.Assert::AreEqual<System.Int32>(T,T,System.String) */, { 987, 320, -1 } /* System.Void System.Action`1<UnityEngine.AsyncOperation>::Invoke(!0) */, { 9599, 10, -1 } /* System.Void System.Collections.Generic.List`1<System.Type>::.ctor() */, { 9615, 10, -1 } /* System.Void System.Collections.Generic.List`1<System.Type>::Add(!0) */, { 9648, 10, -1 } /* !0[] System.Collections.Generic.List`1<System.Type>::ToArray() */, { 11061, -1, 737 } /* T UnityEngine.AttributeHelperEngine::GetCustomAttributeOfType<UnityEngine.DefaultExecutionOrder>(System.Type) */, { 9610, 324, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Item(System.Int32) */, { 9611, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::set_Item(System.Int32,!0) */, { 9604, 324, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Count() */, { 9634, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Insert(System.Int32,!0) */, { 9640, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::RemoveAt(System.Int32) */, { 9599, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 9599, 350, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::.ctor() */, { 9615, 350, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::Add(!0) */, { 9610, 350, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Item(System.Int32) */, { 9604, 350, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::get_Count() */, { 9620, 350, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::Contains(!0) */, { 1030, 350, -1 } /* System.Void System.Predicate`1<UnityEngine.Events.BaseInvokableCall>::.ctor(System.Object,System.IntPtr) */, { 9639, 350, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::RemoveAll(System.Predicate`1<!0>) */, { 9619, 350, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::Clear() */, { 9617, 350, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>::AddRange(System.Collections.Generic.IEnumerable`1<!0>) */, { 12103, 110, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Single>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T) */, { 12103, 24, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Int32>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T) */, { 12103, 1, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.String>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T) */, { 12103, 47, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Boolean>::.ctor(UnityEngine.Object,System.Reflection.MethodInfo,T) */, { 9599, 349, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Events.PersistentCall>::.ctor() */, { 9629, 349, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.Events.PersistentCall>::GetEnumerator() */, { 9655, 349, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.Events.PersistentCall>::get_Current() */, { 9653, 349, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Events.PersistentCall>::MoveNext() */, { 9652, 349, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Events.PersistentCall>::Dispose() */, { 11668, -1, 336 } /* T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector3>(UnityEngine.Rendering.VertexAttribute) */, { 11670, -1, 336 } /* System.Void UnityEngine.Mesh::SetArrayForChannel<UnityEngine.Vector3>(UnityEngine.Rendering.VertexAttribute,T[]) */, { 11668, -1, 338 } /* T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector4>(UnityEngine.Rendering.VertexAttribute) */, { 11668, -1, 339 } /* T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector2>(UnityEngine.Rendering.VertexAttribute) */, { 11670, -1, 339 } /* System.Void UnityEngine.Mesh::SetArrayForChannel<UnityEngine.Vector2>(UnityEngine.Rendering.VertexAttribute,T[]) */, { 11667, -1, 340 } /* T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Color32>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh/InternalVertexChannelType,System.Int32) */, { 11672, -1, 336 } /* System.Void UnityEngine.Mesh::SetListForChannel<UnityEngine.Vector3>(UnityEngine.Rendering.VertexAttribute,System.Collections.Generic.List`1<T>) */, { 11672, -1, 338 } /* System.Void UnityEngine.Mesh::SetListForChannel<UnityEngine.Vector4>(UnityEngine.Rendering.VertexAttribute,System.Collections.Generic.List`1<T>) */, { 11671, -1, 340 } /* System.Void UnityEngine.Mesh::SetListForChannel<UnityEngine.Color32>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh/InternalVertexChannelType,System.Int32,System.Collections.Generic.List`1<T>) */, { 11688, -1, 339 } /* System.Void UnityEngine.Mesh::SetUvsImpl<UnityEngine.Vector2>(System.Int32,System.Int32,System.Collections.Generic.List`1<T>) */, { 11746, -1, 24 } /* System.Int32 UnityEngine.NoAllocHelpers::SafeLength<System.Int32>(System.Collections.Generic.List`1<T>) */, { 11856, -1, 738 } /* T UnityEngine.ScriptableObject::CreateInstance<UnityEngine.Networking.PlayerConnection.PlayerConnection>() */, { 1006, 362, -1 } /* System.Void System.Func`2<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 10836, -1, 361 } /* System.Boolean System.Linq.Enumerable::Any<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 12151, 360, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::AddListener(UnityEngine.Events.UnityAction`1<T0>) */, { 9629, 24, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Int32>::GetEnumerator() */, { 9655, 24, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current() */, { 12147, 24, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Int32>::Invoke(T0) */, { 9653, 24, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext() */, { 9652, 24, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose() */, { 12151, 24, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::AddListener(UnityEngine.Events.UnityAction`1<T0>) */, { 12146, 360, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::.ctor(System.Object,System.IntPtr) */, { 12156, 24, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::Invoke(T0) */, { 9637, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::Remove(!0) */, { 9599, 361, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>::.ctor() */, { 10818, -1, 361 } /* System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 10835, -1, 361 } /* System.Boolean System.Linq.Enumerable::Any<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 12156, 360, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::Invoke(T0) */, { 10833, -1, 361 } /* !!0 System.Linq.Enumerable::SingleOrDefault<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 9615, 361, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>::Add(!0) */, { 12152, 360, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) */, { 9637, 361, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>::Remove(!0) */, { 12150, 24, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::.ctor() */, { 12150, 360, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::.ctor() */, { 987, 368, -1 } /* System.Void System.Action`1<UnityEngine.Profiling.Memory.Experimental.MetaData>::Invoke(!0) */, { 995, 367, -1 } /* System.Void System.Action`2<System.String,System.Boolean>::Invoke(!0,!1) */, { 995, 346, -1 } /* System.Void System.Action`2<UnityEngine.ReflectionProbe,UnityEngine.ReflectionProbe/ReflectionProbeEvent>::Invoke(!0,!1) */, { 987, 348, -1 } /* System.Void System.Action`1<UnityEngine.Cubemap>::Invoke(!0) */, { 12158, 363, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>::Invoke(T0,T1) */, { 12147, 365, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::Invoke(T0) */, { 12158, 366, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::Invoke(T0,T1) */, { 11204, -1, 739 } /* T UnityEngine.Component::GetComponent<UnityEngine.GUILayer>() */, { 986, 370, -1 } /* System.Void System.Action`1<UnityEngine.U2D.SpriteAtlas>::.ctor(System.Object,System.IntPtr) */, { 995, 369, -1 } /* System.Void System.Action`2<System.String,System.Action`1<UnityEngine.U2D.SpriteAtlas>>::Invoke(!0,!1) */, { 987, 370, -1 } /* System.Void System.Action`1<UnityEngine.U2D.SpriteAtlas>::Invoke(!0) */, { 10759, 351, -1 } /* System.Void System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Int32) */, { 10764, 351, -1 } /* System.Void System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Enqueue(!0) */, { 10760, 351, -1 } /* System.Int32 System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Count() */, { 10767, 351, -1 } /* !0 System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dequeue() */, { 987, 47, -1 } /* System.Void System.Action`1<System.Boolean>::Invoke(!0) */, { 999, 374, -1 } /* System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::Invoke(!0,!1,!2) */, { 9629, 375, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.AudioSpatializerExtensionDefinition>::GetEnumerator() */, { 9655, 375, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioSpatializerExtensionDefinition>::get_Current() */, { 9653, 375, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioSpatializerExtensionDefinition>::MoveNext() */, { 9652, 375, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioSpatializerExtensionDefinition>::Dispose() */, { 9629, 376, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.AudioAmbisonicExtensionDefinition>::GetEnumerator() */, { 9655, 376, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioAmbisonicExtensionDefinition>::get_Current() */, { 9653, 376, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioAmbisonicExtensionDefinition>::MoveNext() */, { 9652, 376, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.AudioAmbisonicExtensionDefinition>::Dispose() */, { 9615, 377, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::Add(!0) */, { 9604, 377, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::get_Count() */, { 9610, 377, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::get_Item(System.Int32) */, { 9611, 377, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::set_Item(System.Int32,!0) */, { 9640, 377, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::RemoveAt(System.Int32) */, { 9599, 375, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioSpatializerExtensionDefinition>::.ctor() */, { 9599, 376, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioAmbisonicExtensionDefinition>::.ctor() */, { 9599, 377, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.AudioSourceExtension>::.ctor() */, { 987, 386, -1 } /* System.Void System.Action`1<UnityEngine.Font>::Invoke(!0) */, { 9600, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::.ctor(System.Int32) */, { 9600, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::.ctor(System.Int32) */, { 9600, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::.ctor(System.Int32) */, { 9629, 390, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystemDescriptor>::GetEnumerator() */, { 9655, 390, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.Experimental.ISubsystemDescriptor>::get_Current() */, { 9653, 390, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Experimental.ISubsystemDescriptor>::MoveNext() */, { 9652, 390, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Experimental.ISubsystemDescriptor>::Dispose() */, { 9615, 390, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystemDescriptor>::Add(!0) */, { 9615, 389, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystemDescriptorImpl>::Add(!0) */, { 9629, 389, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystemDescriptorImpl>::GetEnumerator() */, { 9655, 389, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.Experimental.ISubsystemDescriptorImpl>::get_Current() */, { 9653, 389, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Experimental.ISubsystemDescriptorImpl>::MoveNext() */, { 9652, 389, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Experimental.ISubsystemDescriptorImpl>::Dispose() */, { 9619, 389, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystemDescriptorImpl>::Clear() */, { 9599, 389, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystemDescriptorImpl>::.ctor() */, { 9599, 390, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystemDescriptor>::.ctor() */, { 9615, 388, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystem>::Add(!0) */, { 9629, 388, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystem>::GetEnumerator() */, { 9655, 388, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.Experimental.ISubsystem>::get_Current() */, { 9653, 388, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Experimental.ISubsystem>::MoveNext() */, { 9652, 388, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Experimental.ISubsystem>::Dispose() */, { 9619, 388, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystem>::Clear() */, { 9604, 388, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystem>::get_Count() */, { 9610, 388, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystem>::get_Item(System.Int32) */, { 9640, 388, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystem>::RemoveAt(System.Int32) */, { 9599, 388, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Experimental.ISubsystem>::.ctor() */, { 987, 393, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.FrameReceivedEventArgs>::Invoke(!0) */, { 987, 396, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs>::Invoke(!0) */, { 987, 398, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.MeshGenerationResult>::Invoke(!0) */, { 987, 402, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PlaneAddedEventArgs>::Invoke(!0) */, { 987, 403, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PlaneUpdatedEventArgs>::Invoke(!0) */, { 987, 404, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PlaneRemovedEventArgs>::Invoke(!0) */, { 987, 407, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs>::Invoke(!0) */, { 987, 410, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs>::Invoke(!0) */, { 987, 391, -1 } /* System.Void System.Action`1<UnityEngine.XR.XRNodeState>::Invoke(!0) */, { 12297, -1, 413 } /* System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationLayerMixerPlayable>() */, { 12297, -1, 414 } /* System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationMixerPlayable>() */, { 12297, -1, 415 } /* System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationMotionXToDeltaPlayable>() */, { 12297, -1, 416 } /* System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationOffsetPlayable>() */, { 12297, -1, 417 } /* System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationPosePlayable>() */, { 12297, -1, 418 } /* System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimationRemoveScalePlayable>() */, { 12297, -1, 420 } /* System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Animations.AnimatorControllerPlayable>() */, { 12297, -1, 419 } /* System.Boolean UnityEngine.Playables.PlayableHandle::IsPlayableOfType<UnityEngine.Experimental.Animations.AnimationScriptPlayable>() */, { 987, 428, -1 } /* System.Void System.Action`1<UnityEngine.SocialPlatforms.IAchievementDescription[]>::Invoke(!0) */, { 995, 423, -1 } /* System.Void System.Action`2<System.Boolean,System.String>::Invoke(!0,!1) */, { 987, 429, -1 } /* System.Void System.Action`1<UnityEngine.SocialPlatforms.IAchievement[]>::Invoke(!0) */, { 987, 433, -1 } /* System.Void System.Action`1<UnityEngine.SocialPlatforms.IScore[]>::Invoke(!0) */, { 994, 423, -1 } /* System.Void System.Action`2<System.Boolean,System.String>::.ctor(System.Object,System.IntPtr) */, { 9615, 427, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::Add(!0) */, { 9629, 427, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::GetEnumerator() */, { 9655, 427, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::get_Current() */, { 9653, 427, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::MoveNext() */, { 9652, 427, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::Dispose() */, { 987, 437, -1 } /* System.Void System.Action`1<UnityEngine.SocialPlatforms.IUserProfile[]>::Invoke(!0) */, { 9599, 427, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.SocialPlatforms.GameCenter.GcLeaderboard>::.ctor() */, { 9599, 443, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::.ctor() */, { 9604, 443, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::get_Count() */, { 9629, 443, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::GetEnumerator() */, { 9655, 443, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.GUILayoutEntry>::get_Current() */, { 9653, 443, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.GUILayoutEntry>::MoveNext() */, { 9652, 443, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.GUILayoutEntry>::Dispose() */, { 9610, 443, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>::get_Item(System.Int32) */, { 9428, 439, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>::TryGetValue(!0,!1&) */, { 9409, 439, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>::set_Item(!0,!1) */, { 9400, 439, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>::.ctor() */, { 9402, 445, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>) */, { 9409, 445, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>::set_Item(!0,!1) */, { 9428, 445, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>::TryGetValue(!0,!1&) */, { 9407, 445, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>::get_Values() */, { 9469, 445, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.String,UnityEngine.GUIStyle>::GetEnumerator() */, { 1011, 448, -1 } /* !2 System.Func`3<System.Int32,System.IntPtr,System.Boolean>::Invoke(!0,!1) */, { 1007, 449, -1 } /* !1 System.Func`2<System.Exception,System.Boolean>::Invoke(!0) */, { 987, 452, -1 } /* System.Void System.Action`1<UnityEngineInternal.Input.NativeInputUpdateType>::Invoke(!0) */, { 999, 450, -1 } /* System.Void System.Action`3<UnityEngineInternal.Input.NativeInputUpdateType,System.Int32,System.IntPtr>::Invoke(!0,!1,!2) */, { 995, 121, -1 } /* System.Void System.Action`2<System.Int32,System.String>::Invoke(!0,!1) */, { 9599, 453, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>::.ctor() */, { 987, 1, -1 } /* System.Void System.Action`1<System.String>::Invoke(!0) */, { 9599, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::.ctor() */, { 11218, -1, 486 } /* !!0[] UnityEngine.Component::GetComponents<UnityEngine.EventSystems.BaseInput>() */, { 11323, -1, 486 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.EventSystems.BaseInput>() */, { 11204, -1, 455 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.EventSystems.EventSystem>() */, { 9610, 459, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::get_Item(System.Int32) */, { 9604, 459, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::get_Count() */, { 9610, 485, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.GameObject>::get_Item(System.Int32) */, { 13555, -1, 470 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerExitHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 9604, 485, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.GameObject>::get_Count() */, { 9619, 485, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.GameObject>::Clear() */, { 9637, 485, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.GameObject>::Remove(!0) */, { 13555, -1, 469 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerEnterHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 9615, 485, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.GameObject>::Add(!0) */, { 9599, 458, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>::.ctor() */, { 9604, 455, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::get_Count() */, { 9610, 455, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::get_Item(System.Int32) */, { 9632, 455, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::IndexOf(!0) */, { 9640, 455, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::RemoveAt(System.Int32) */, { 9634, 455, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::Insert(System.Int32,!0) */, { 11217, -1, 458 } /* System.Void UnityEngine.Component::GetComponents<UnityEngine.EventSystems.BaseInputModule>(System.Collections.Generic.List`1<!!0>) */, { 9604, 458, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>::get_Count() */, { 9610, 458, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>::get_Item(System.Int32) */, { 9640, 458, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>::RemoveAt(System.Int32) */, { 13555, -1, 460 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IDeselectHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13555, -1, 465 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.ISelectHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 9619, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Clear() */, { 9610, 466, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::get_Item(System.Int32) */, { 9604, 466, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::get_Count() */, { 9647, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Sort(System.Comparison`1<!0>) */, { 9615, 455, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::Add(!0) */, { 9637, 455, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::Remove(!0) */, { 9599, 455, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>::.ctor() */, { 1022, 459, -1 } /* System.Void System.Comparison`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Object,System.IntPtr) */, { 9599, 467, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>::.ctor() */, { 9604, 467, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>::get_Count() */, { 9610, 467, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>::get_Item(System.Int32) */, { 12156, 468, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.EventSystems.BaseEventData>::Invoke(!0) */, { 12150, 468, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.EventSystems.BaseEventData>::.ctor() */, { 13519, -1, 489 } /* T UnityEngine.EventSystems.ExecuteEvents::ValidateEventData<UnityEngine.EventSystems.PointerEventData>(UnityEngine.EventSystems.BaseEventData) */, { 13519, -1, 740 } /* T UnityEngine.EventSystems.ExecuteEvents::ValidateEventData<UnityEngine.EventSystems.AxisEventData>(UnityEngine.EventSystems.BaseEventData) */, { 13563, 469, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerEnterHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 470, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerExitHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 471, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerDownHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 472, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerUpHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 473, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IPointerClickHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 474, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IInitializePotentialDragHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 475, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IBeginDragHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 476, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDragHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 477, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IEndDragHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 478, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDropHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 479, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IScrollHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 480, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IUpdateSelectedHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 465, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISelectHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 460, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IDeselectHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 481, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.IMoveHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 482, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ISubmitHandler>::.ctor(System.Object,System.IntPtr) */, { 13563, 483, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<UnityEngine.EventSystems.ICancelHandler>::.ctor(System.Object,System.IntPtr) */, { 12146, 462, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>::.ctor(System.Object,System.IntPtr) */, { 15025, 462, -1 } /* System.Void UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>::.ctor(UnityEngine.Events.UnityAction`1<T>,UnityEngine.Events.UnityAction`1<T>) */, { 9600, 484, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Transform>::.ctor(System.Int32) */, { 9619, 461, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>::Clear() */, { 11307, -1, 741 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.SpriteRenderer>() */, { 9615, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Add(!0) */, { 11204, -1, 326 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.Camera>() */, { 1022, 373, -1 } /* System.Void System.Comparison`1<UnityEngine.RaycastHit>::.ctor(System.Object,System.IntPtr) */, { 779, -1, 373 } /* System.Void System.Array::Sort<UnityEngine.RaycastHit>(!!0[],System.Comparison`1<!!0>) */, { 9599, 485, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.GameObject>::.ctor() */, { 9400, 487, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::.ctor() */, { 9428, 487, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::TryGetValue(!0,!1&) */, { 9410, 487, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::Add(!0,!1) */, { 9427, 487, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::Remove(!0) */, { 13555, -1, 475 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IBeginDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13555, -1, 472 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerUpHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13555, -1, 476 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 9407, 487, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::get_Values() */, { 9469, 487, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,UnityEngine.EventSystems.PointerEventData>::GetEnumerator() */, { 9485, 487, -1 } /* !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::get_Current() */, { 9484, 487, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::MoveNext() */, { 9483, 487, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::Dispose() */, { 9414, 487, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::Clear() */, { 9418, 487, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::GetEnumerator() */, { 9441, 487, -1 } /* System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::get_Current() */, { 9372, 487, -1 } /* !1 System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::get_Value() */, { 9371, 487, -1 } /* !0 System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::get_Key() */, { 9440, 487, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::MoveNext() */, { 9442, 487, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,UnityEngine.EventSystems.PointerEventData>::Dispose() */, { 13560, -1, 465 } /* UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.ISelectHandler>(UnityEngine.GameObject) */, { 9599, 492, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>::.ctor() */, { 9610, 492, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>::get_Item(System.Int32) */, { 9604, 492, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>::get_Count() */, { 9615, 492, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>::Add(!0) */, { 9620, 466, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::Contains(!0) */, { 9615, 466, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::Add(!0) */, { 9637, 466, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::Remove(!0) */, { 9599, 466, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>::.ctor() */, { 13555, -1, 477 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IEndDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13556, -1, 471 } /* UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<UnityEngine.EventSystems.IPointerDownHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13560, -1, 473 } /* UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.IPointerClickHandler>(UnityEngine.GameObject) */, { 13560, -1, 476 } /* UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.IDragHandler>(UnityEngine.GameObject) */, { 13555, -1, 474 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IInitializePotentialDragHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13555, -1, 473 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IPointerClickHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13556, -1, 478 } /* UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<UnityEngine.EventSystems.IDropHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13556, -1, 470 } /* UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<UnityEngine.EventSystems.IPointerExitHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13555, -1, 482 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.ISubmitHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13555, -1, 483 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.ICancelHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13555, -1, 481 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IMoveHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13560, -1, 479 } /* UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::GetEventHandler<UnityEngine.EventSystems.IScrollHandler>(UnityEngine.GameObject) */, { 13556, -1, 479 } /* UnityEngine.GameObject UnityEngine.EventSystems.ExecuteEvents::ExecuteHierarchy<UnityEngine.EventSystems.IScrollHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13555, -1, 480 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<UnityEngine.EventSystems.IUpdateSelectedHandler>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 9373, 487, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.EventSystems.PointerEventData>::ToString() */, { 14617, -1, 742 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.AspectRatioFitter/AspectMode>(T&,T) */, { 14617, -1, 110 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Single>(T&,T) */, { 11204, -1, 546 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.RectTransform>() */, { 11204, -1, 513 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.UI.Graphic>() */, { 11204, -1, 503 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.Canvas>() */, { 15003, 494, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::.ctor() */, { 15012, 494, -1 } /* System.Int32 UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::get_Count() */, { 15017, 494, -1 } /* T UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::get_Item(System.Int32) */, { 15016, 494, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::RemoveAt(System.Int32) */, { 15020, 494, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::Sort(System.Comparison`1<T>) */, { 15009, 494, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::Clear() */, { 15010, 494, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::Contains(T) */, { 15005, 494, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::AddUnique(T) */, { 15006, 494, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.ICanvasElement>::Remove(T) */, { 1022, 494, -1 } /* System.Void System.Comparison`1<UnityEngine.UI.ICanvasElement>::.ctor(System.Object,System.IntPtr) */, { 15003, 528, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>::.ctor() */, { 15017, 528, -1 } /* T UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>::get_Item(System.Int32) */, { 15012, 528, -1 } /* System.Int32 UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>::get_Count() */, { 15005, 528, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>::AddUnique(T) */, { 15006, 528, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.IClipper>::Remove(T) */, { 9604, 536, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>::get_Count() */, { 9610, 536, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>::get_Item(System.Int32) */, { 14617, -1, 743 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.ContentSizeFitter/FitMode>(T&,T) */, { 12156, 330, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::Invoke(!0) */, { 12151, 330, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::AddListener(UnityEngine.Events.UnityAction`1<!0>) */, { 12150, 330, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::.ctor() */, { 12156, 110, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Single>::Invoke(!0) */, { 12151, 110, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Single>::AddListener(UnityEngine.Events.UnityAction`1<!0>) */, { 12150, 110, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Single>::.ctor() */, { 11323, -1, 546 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.RectTransform>() */, { 11307, -1, 546 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.RectTransform>() */, { 11323, -1, 530 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Image>() */, { 11323, -1, 744 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Button>() */, { 11323, -1, 506 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Text>() */, { 11323, -1, 745 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.RawImage>() */, { 11323, -1, 746 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Slider>() */, { 11323, -1, 747 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Scrollbar>() */, { 11323, -1, 544 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Toggle>() */, { 11323, -1, 748 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.InputField>() */, { 11307, -1, 747 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.UI.Scrollbar>() */, { 11323, -1, 749 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.ScrollRect>() */, { 11323, -1, 534 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Mask>() */, { 11323, -1, 750 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Dropdown>() */, { 9615, 499, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>::Add(!0) */, { 9599, 500, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>::.ctor() */, { 9604, 499, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>::get_Count() */, { 13823, 501, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::.ctor() */, { 13825, 501, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::Init(UnityEngine.MonoBehaviour) */, { 9610, 499, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>::get_Item(System.Int32) */, { 9617, 499, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>::AddRange(System.Collections.Generic.IEnumerable`1<!0>) */, { 9610, 502, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.Sprite>::get_Item(System.Int32) */, { 9604, 502, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Sprite>::get_Count() */, { 9619, 499, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>::Clear() */, { 11207, -1, 544 } /* !!0 UnityEngine.Component::GetComponentInChildren<UnityEngine.UI.Toggle>() */, { 11323, -1, 500 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.Dropdown/DropdownItem>() */, { 13942, -1, 503 } /* T UnityEngine.UI.Dropdown::GetOrAddComponent<UnityEngine.Canvas>(UnityEngine.GameObject) */, { 13942, -1, 751 } /* T UnityEngine.UI.Dropdown::GetOrAddComponent<UnityEngine.UI.GraphicRaycaster>(UnityEngine.GameObject) */, { 13942, -1, 542 } /* T UnityEngine.UI.Dropdown::GetOrAddComponent<UnityEngine.CanvasGroup>(UnityEngine.GameObject) */, { 15022, 503, -1 } /* System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<UnityEngine.Canvas>::Get() */, { 11320, -1, 503 } /* System.Void UnityEngine.GameObject::GetComponentsInParent<UnityEngine.Canvas>(System.Boolean,System.Collections.Generic.List`1<!!0>) */, { 9604, 503, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Canvas>::get_Count() */, { 9610, 503, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.Canvas>::get_Item(System.Int32) */, { 15023, 503, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Canvas>::Release(System.Collections.Generic.List`1<T>) */, { 11311, -1, 500 } /* !!0 UnityEngine.GameObject::GetComponentInChildren<UnityEngine.UI.Dropdown/DropdownItem>() */, { 9619, 500, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>::Clear() */, { 12146, 47, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 12151, 47, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::AddListener(UnityEngine.Events.UnityAction`1<!0>) */, { 9604, 500, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>::get_Count() */, { 9610, 500, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>::get_Item(System.Int32) */, { 11323, -1, 503 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.Canvas>() */, { 11307, -1, 503 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.Canvas>() */, { 11323, -1, 751 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.GraphicRaycaster>() */, { 12043, -1, 485 } /* !!0 UnityEngine.Object::Instantiate<UnityEngine.GameObject>(!!0) */, { 12043, -1, 500 } /* !!0 UnityEngine.Object::Instantiate<UnityEngine.UI.Dropdown/DropdownItem>(!!0) */, { 9615, 500, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>::Add(!0) */, { 11307, -1, 542 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.CanvasGroup>() */, { 12146, 110, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Single>::.ctor(System.Object,System.IntPtr) */, { 13826, 501, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::StartTween(T) */, { 11213, -1, 750 } /* !!0 UnityEngine.Component::GetComponentInParent<UnityEngine.UI.Dropdown>() */, { 9599, 499, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>::.ctor() */, { 9428, 505, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>::TryGetValue(!0,!1&) */, { 9405, 505, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>::get_Count() */, { 986, 386, -1 } /* System.Void System.Action`1<UnityEngine.Font>::.ctor(System.Object,System.IntPtr) */, { 10914, 506, -1 } /* System.Void System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>::.ctor() */, { 9410, 505, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>::Add(!0,!1) */, { 10922, 506, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>::Contains(!0) */, { 10932, 506, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>::Add(!0) */, { 10927, 506, -1 } /* System.Collections.Generic.HashSet`1/Enumerator<!0> System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>::GetEnumerator() */, { 10948, 506, -1 } /* !0 System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UI.Text>::get_Current() */, { 10947, 506, -1 } /* System.Boolean System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UI.Text>::MoveNext() */, { 10946, 506, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UI.Text>::Dispose() */, { 10924, 506, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>::Remove(!0) */, { 10925, 506, -1 } /* System.Int32 System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>::get_Count() */, { 9427, 505, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>::Remove(!0) */, { 9400, 505, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>::.ctor() */, { 13823, 518, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::.ctor() */, { 13825, 518, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::Init(UnityEngine.MonoBehaviour) */, { 11204, -1, 752 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.CanvasRenderer>() */, { 15022, 328, -1 } /* System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<UnityEngine.Component>::Get() */, { 9610, 328, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.Component>::get_Item(System.Int32) */, { 9604, 328, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Component>::get_Count() */, { 15023, 328, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Component>::Release(System.Collections.Generic.List`1<T>) */, { 11217, -1, 328 } /* System.Void UnityEngine.Component::GetComponents<UnityEngine.Component>(System.Collections.Generic.List`1<!!0>) */, { 13827, 518, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::StopTween() */, { 12146, 330, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Color>::.ctor(System.Object,System.IntPtr) */, { 13826, 518, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::StartTween(T) */, { 9599, 513, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Graphic>::.ctor() */, { 9619, 513, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Graphic>::Clear() */, { 9604, 513, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.Graphic>::get_Count() */, { 9610, 513, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.UI.Graphic>::get_Item(System.Int32) */, { 9615, 513, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Graphic>::Add(!0) */, { 1022, 513, -1 } /* System.Void System.Comparison`1<UnityEngine.UI.Graphic>::.ctor(System.Object,System.IntPtr) */, { 9647, 513, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Graphic>::Sort(System.Comparison`1<!0>) */, { 9400, 519, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>::.ctor() */, { 9400, 520, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.UI.Graphic,System.Int32>::.ctor() */, { 9400, 495, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.UI.ICanvasElement,System.Int32>::.ctor() */, { 9400, 526, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.UI.IClipper,System.Int32>::.ctor() */, { 9428, 519, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>::TryGetValue(!0,!1&) */, { 15005, 513, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>::AddUnique(T) */, { 15003, 513, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>::.ctor() */, { 15004, 513, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>::Add(T) */, { 9410, 519, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>::Add(!0,!1) */, { 15006, 513, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>::Remove(T) */, { 15012, 513, -1 } /* System.Int32 UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>::get_Count() */, { 9427, 519, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>::Remove(!0) */, { 14943, -1, 753 } /* System.Void UnityEngine.UI.LayoutGroup::SetProperty<UnityEngine.UI.GridLayoutGroup/Corner>(T&,T) */, { 14943, -1, 754 } /* System.Void UnityEngine.UI.LayoutGroup::SetProperty<UnityEngine.UI.GridLayoutGroup/Axis>(T&,T) */, { 14943, -1, 339 } /* System.Void UnityEngine.UI.LayoutGroup::SetProperty<UnityEngine.Vector2>(T&,T) */, { 14943, -1, 755 } /* System.Void UnityEngine.UI.LayoutGroup::SetProperty<UnityEngine.UI.GridLayoutGroup/Constraint>(T&,T) */, { 14943, -1, 24 } /* System.Void UnityEngine.UI.LayoutGroup::SetProperty<System.Int32>(T&,T) */, { 9604, 546, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.RectTransform>::get_Count() */, { 9610, 546, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.RectTransform>::get_Item(System.Int32) */, { 14943, -1, 110 } /* System.Void UnityEngine.UI.LayoutGroup::SetProperty<System.Single>(T&,T) */, { 14943, -1, 47 } /* System.Void UnityEngine.UI.LayoutGroup::SetProperty<System.Boolean>(T&,T) */, { 14618, -1, 502 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<UnityEngine.Sprite>(T&,T) */, { 14617, -1, 756 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Image/Type>(T&,T) */, { 14617, -1, 47 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Boolean>(T&,T) */, { 14617, -1, 757 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Image/FillMethod>(T&,T) */, { 14617, -1, 24 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Int32>(T&,T) */, { 9604, 530, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.Image>::get_Count() */, { 9610, 530, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.UI.Image>::get_Item(System.Int32) */, { 9640, 530, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Image>::RemoveAt(System.Int32) */, { 9615, 530, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Image>::Add(!0) */, { 9637, 530, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UI.Image>::Remove(!0) */, { 9599, 530, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Image>::.ctor() */, { 14618, -1, 506 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<UnityEngine.UI.Text>(T&,T) */, { 14618, -1, 513 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<UnityEngine.UI.Graphic>(T&,T) */, { 14618, -1, 758 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<UnityEngine.UI.InputField/SubmitEvent>(T&,T) */, { 14618, -1, 759 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<UnityEngine.UI.InputField/OnChangeEvent>(T&,T) */, { 14618, -1, 760 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<UnityEngine.UI.InputField/OnValidateInput>(T&,T) */, { 14617, -1, 533 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/ContentType>(T&,T) */, { 14617, -1, 761 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/LineType>(T&,T) */, { 14617, -1, 762 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/InputType>(T&,T) */, { 14617, -1, 763 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.TouchScreenKeyboardType>(T&,T) */, { 14617, -1, 764 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/CharacterValidation>(T&,T) */, { 14617, -1, 9 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Char>(T&,T) */, { 12156, 1, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.String>::Invoke(!0) */, { 11307, -1, 752 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.CanvasRenderer>() */, { 11323, -1, 765 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.UI.LayoutElement>() */, { 12150, 1, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.String>::.ctor() */, { 9599, 546, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.RectTransform>::.ctor() */, { 14943, -1, 766 } /* System.Void UnityEngine.UI.LayoutGroup::SetProperty<UnityEngine.RectOffset>(T&,T) */, { 14943, -1, 767 } /* System.Void UnityEngine.UI.LayoutGroup::SetProperty<UnityEngine.TextAnchor>(T&,T) */, { 9619, 546, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.RectTransform>::Clear() */, { 9615, 546, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.RectTransform>::Add(!0) */, { 12146, 547, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.UI.LayoutRebuilder>::.ctor(System.Object,System.IntPtr) */, { 15025, 547, -1 } /* System.Void UnityEngine.UI.ObjectPool`1<UnityEngine.UI.LayoutRebuilder>::.ctor(UnityEngine.Events.UnityAction`1<T>,UnityEngine.Events.UnityAction`1<T>) */, { 1030, 328, -1 } /* System.Void System.Predicate`1<UnityEngine.Component>::.ctor(System.Object,System.IntPtr) */, { 9639, 328, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Component>::RemoveAll(System.Predicate`1<!0>) */, { 15030, 547, -1 } /* T UnityEngine.UI.ObjectPool`1<UnityEngine.UI.LayoutRebuilder>::Get() */, { 15031, 547, -1 } /* System.Void UnityEngine.UI.ObjectPool`1<UnityEngine.UI.LayoutRebuilder>::Release(T) */, { 12146, 328, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Component>::.ctor(System.Object,System.IntPtr) */, { 12147, 328, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Component>::Invoke(!0) */, { 1006, 548, -1 } /* System.Void System.Func`2<UnityEngine.UI.ILayoutElement,System.Single>::.ctor(System.Object,System.IntPtr) */, { 1007, 548, -1 } /* !1 System.Func`2<UnityEngine.UI.ILayoutElement,System.Single>::Invoke(!0) */, { 11211, -1, 328 } /* System.Void UnityEngine.Component::GetComponentsInChildren<UnityEngine.Component>(System.Collections.Generic.List`1<!!0>) */, { 11214, -1, 503 } /* System.Void UnityEngine.Component::GetComponentsInParent<UnityEngine.Canvas>(System.Boolean,System.Collections.Generic.List`1<!!0>) */, { 15022, 534, -1 } /* System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<UnityEngine.UI.Mask>::Get() */, { 11217, -1, 534 } /* System.Void UnityEngine.Component::GetComponents<UnityEngine.UI.Mask>(System.Collections.Generic.List`1<!!0>) */, { 9610, 534, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.UI.Mask>::get_Item(System.Int32) */, { 9604, 534, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.Mask>::get_Count() */, { 15023, 534, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.UI.Mask>::Release(System.Collections.Generic.List`1<T>) */, { 15022, 536, -1 } /* System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<UnityEngine.UI.RectMask2D>::Get() */, { 11214, -1, 536 } /* System.Void UnityEngine.Component::GetComponentsInParent<UnityEngine.UI.RectMask2D>(System.Boolean,System.Collections.Generic.List`1<!!0>) */, { 15023, 536, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.UI.RectMask2D>::Release(System.Collections.Generic.List`1<T>) */, { 9619, 536, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>::Clear() */, { 9615, 536, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>::Add(!0) */, { 11204, -1, 534 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.UI.Mask>() */, { 12156, 47, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::Invoke(!0) */, { 12150, 47, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::.ctor() */, { 15022, 383, -1 } /* System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<UnityEngine.UIVertex>::Get() */, { 9604, 383, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UIVertex>::get_Count() */, { 9602, 383, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UIVertex>::get_Capacity() */, { 9603, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::set_Capacity(System.Int32) */, { 15023, 383, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.UIVertex>::Release(System.Collections.Generic.List`1<T>) */, { 10914, 510, -1 } /* System.Void System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>::.ctor() */, { 9599, 536, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>::.ctor() */, { 10921, 510, -1 } /* System.Void System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>::Clear() */, { 10927, 510, -1 } /* System.Collections.Generic.HashSet`1/Enumerator<!0> System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>::GetEnumerator() */, { 10948, 510, -1 } /* !0 System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UI.IClippable>::get_Current() */, { 10947, 510, -1 } /* System.Boolean System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UI.IClippable>::MoveNext() */, { 10946, 510, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UI.IClippable>::Dispose() */, { 10922, 510, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>::Contains(!0) */, { 10932, 510, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>::Add(!0) */, { 10924, 510, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>::Remove(!0) */, { 11204, -1, 484 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.Transform>() */, { 12152, 110, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Single>::RemoveListener(UnityEngine.Events.UnityAction`1<!0>) */, { 12156, 339, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::Invoke(!0) */, { 12150, 339, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::.ctor() */, { 14618, -1, 546 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<UnityEngine.RectTransform>(T&,T) */, { 14617, -1, 768 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Scrollbar/Direction>(T&,T) */, { 9599, 542, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.CanvasGroup>::.ctor() */, { 14617, -1, 538 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Navigation>(T&,T) */, { 14617, -1, 769 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Selectable/Transition>(T&,T) */, { 14617, -1, 498 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.ColorBlock>(T&,T) */, { 14617, -1, 541 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.SpriteState>(T&,T) */, { 14618, -1, 770 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<UnityEngine.UI.AnimationTriggers>(T&,T) */, { 11204, -1, 771 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.Animator>() */, { 11217, -1, 542 } /* System.Void UnityEngine.Component::GetComponents<UnityEngine.CanvasGroup>(System.Collections.Generic.List`1<!!0>) */, { 9610, 542, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.CanvasGroup>::get_Item(System.Int32) */, { 9604, 542, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.CanvasGroup>::get_Count() */, { 9615, 540, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Selectable>::Add(!0) */, { 9637, 540, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UI.Selectable>::Remove(!0) */, { 9610, 540, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.UI.Selectable>::get_Item(System.Int32) */, { 9604, 540, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.Selectable>::get_Count() */, { 9599, 540, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Selectable>::.ctor() */, { 9610, 383, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.UIVertex>::get_Item(System.Int32) */, { 9615, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::Add(!0) */, { 9611, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::set_Item(System.Int32,!0) */, { 14617, -1, 772 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Slider/Direction>(T&,T) */, { 11204, -1, 530 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.UI.Image>() */, { 9610, 543, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial/MatEntry>::get_Item(System.Int32) */, { 9604, 543, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial/MatEntry>::get_Count() */, { 9615, 543, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial/MatEntry>::Add(!0) */, { 9640, 543, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial/MatEntry>::RemoveAt(System.Int32) */, { 9619, 543, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial/MatEntry>::Clear() */, { 9599, 543, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial/MatEntry>::.ctor() */, { 11851, -1, 386 } /* !!0 UnityEngine.Resources::GetBuiltinResource<UnityEngine.Font>(System.String) */, { 9599, 544, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Toggle>::.ctor() */, { 9620, 544, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UI.Toggle>::Contains(!0) */, { 9610, 544, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.UI.Toggle>::get_Item(System.Int32) */, { 9604, 544, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.Toggle>::get_Count() */, { 9637, 544, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UI.Toggle>::Remove(!0) */, { 9615, 544, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UI.Toggle>::Add(!0) */, { 1030, 544, -1 } /* System.Void System.Predicate`1<UnityEngine.UI.Toggle>::.ctor(System.Object,System.IntPtr) */, { 9627, 544, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.UI.Toggle>::Find(System.Predicate`1<!0>) */, { 1006, 545, -1 } /* System.Void System.Func`2<UnityEngine.UI.Toggle,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 10818, -1, 544 } /* System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<UnityEngine.UI.Toggle>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 9617, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::AddRange(System.Collections.Generic.IEnumerable`1<!0>) */, { 9617, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::AddRange(System.Collections.Generic.IEnumerable`1<!0>) */, { 9617, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::AddRange(System.Collections.Generic.IEnumerable`1<!0>) */, { 9617, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::AddRange(System.Collections.Generic.IEnumerable`1<!0>) */, { 9617, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::AddRange(System.Collections.Generic.IEnumerable`1<!0>) */, { 15022, 336, -1 } /* System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<UnityEngine.Vector3>::Get() */, { 15022, 340, -1 } /* System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<UnityEngine.Color32>::Get() */, { 15022, 339, -1 } /* System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<UnityEngine.Vector2>::Get() */, { 15022, 338, -1 } /* System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<UnityEngine.Vector4>::Get() */, { 15022, 24, -1 } /* System.Collections.Generic.List`1<T> UnityEngine.UI.ListPool`1<System.Int32>::Get() */, { 15023, 336, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Vector3>::Release(System.Collections.Generic.List`1<T>) */, { 15023, 340, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Color32>::Release(System.Collections.Generic.List`1<T>) */, { 15023, 339, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Vector2>::Release(System.Collections.Generic.List`1<T>) */, { 15023, 338, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Vector4>::Release(System.Collections.Generic.List`1<T>) */, { 15023, 24, -1 } /* System.Void UnityEngine.UI.ListPool`1<System.Int32>::Release(System.Collections.Generic.List`1<T>) */, { 9619, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::Clear() */, { 9619, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::Clear() */, { 9619, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::Clear() */, { 9619, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::Clear() */, { 9619, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Clear() */, { 9604, 336, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector3>::get_Count() */, { 9604, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count() */, { 9610, 336, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.Vector3>::get_Item(System.Int32) */, { 9610, 340, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.Color32>::get_Item(System.Int32) */, { 9610, 339, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.Vector2>::get_Item(System.Int32) */, { 9610, 338, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.Vector4>::get_Item(System.Int32) */, { 9611, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::set_Item(System.Int32,!0) */, { 9611, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::set_Item(System.Int32,!0) */, { 9611, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::set_Item(System.Int32,!0) */, { 9611, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::set_Item(System.Int32,!0) */, { 9615, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::Add(!0) */, { 9615, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::Add(!0) */, { 9615, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::Add(!0) */, { 9615, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::Add(!0) */, { 986, 556, -1 } /* System.Void System.Action`1<Vuforia.VuforiaUnity/InitError>::.ctor(System.Object,System.IntPtr) */, { 986, 557, -1 } /* System.Void System.Action`1<Vuforia.VuforiaBehaviour>::.ctor(System.Object,System.IntPtr) */, { 986, 47, -1 } /* System.Void System.Action`1<System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 17982, -1, 773 } /* T Vuforia.ITrackerManager::GetTracker<Vuforia.PositionalDeviceTracker>() */, { 11204, -1, 700 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.MeshRenderer>() */, { 11204, -1, 774 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.MeshFilter>() */, { 11323, -1, 774 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.MeshFilter>() */, { 11204, -1, 591 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.Renderer>() */, { 11319, -1, 591 } /* !!0[] UnityEngine.GameObject::GetComponentsInChildren<UnityEngine.Renderer>() */, { 9400, 611, -1 } /* System.Void System.Collections.Generic.Dictionary`2<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::.ctor() */, { 9599, 616, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.Image/PIXEL_FORMAT>::.ctor() */, { 9415, 611, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::ContainsKey(!0) */, { 9410, 611, -1 } /* System.Void System.Collections.Generic.Dictionary`2<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::Add(!0,!1) */, { 9620, 616, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.Image/PIXEL_FORMAT>::Contains(!0) */, { 9427, 611, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::Remove(!0) */, { 9408, 611, -1 } /* !1 System.Collections.Generic.Dictionary`2<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::get_Item(!0) */, { 9599, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::.ctor() */, { 9615, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Add(!0) */, { 9637, 616, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.Image/PIXEL_FORMAT>::Remove(!0) */, { 9615, 616, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.Image/PIXEL_FORMAT>::Add(!0) */, { 9414, 611, -1 } /* System.Void System.Collections.Generic.Dictionary`2<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::Clear() */, { 17715, -1, 775 } /* Vuforia.TargetFinder Vuforia.ObjectTracker::GetTargetFinder<Vuforia.ImageTargetFinder>() */, { 9599, 640, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VirtualButton>::.ctor() */, { 12150, 485, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.GameObject>::.ctor() */, { 1006, 598, -1 } /* System.Void System.Func`2<System.String,Vuforia.Anchor>::.ctor(System.Object,System.IntPtr) */, { 1007, 598, -1 } /* !1 System.Func`2<System.String,Vuforia.Anchor>::Invoke(!0) */, { 11307, -1, 570 } /* !!0 UnityEngine.GameObject::GetComponent<Vuforia.AnchorBehaviour>() */, { 12156, 485, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.GameObject>::Invoke(!0) */, { 986, 566, -1 } /* System.Void System.Action`1<Vuforia.Anchor>::.ctor(System.Object,System.IntPtr) */, { 1006, 599, -1 } /* System.Void System.Func`2<Vuforia.AnchorBehaviour,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 10832, -1, 570 } /* !!0 System.Linq.Enumerable::FirstOrDefault<Vuforia.AnchorBehaviour>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 17889, -1, 773 } /* T Vuforia.VuforiaRuntimeUtilities::SafeInitTracker<Vuforia.PositionalDeviceTracker>() */, { 17890, -1, 773 } /* System.Boolean Vuforia.VuforiaRuntimeUtilities::SafeDeinitTracker<Vuforia.PositionalDeviceTracker>() */, { 9599, 570, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.AnchorBehaviour>::.ctor() */, { 987, 336, -1 } /* System.Void System.Action`1<UnityEngine.Vector3>::Invoke(!0) */, { 986, 336, -1 } /* System.Void System.Action`1<UnityEngine.Vector3>::.ctor(System.Object,System.IntPtr) */, { 9400, 637, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.Trackable>::.ctor() */, { 9407, 637, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.Trackable>::get_Values() */, { 9409, 637, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.Trackable>::set_Item(!0,!1) */, { 9427, 637, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.Trackable>::Remove(!0) */, { 9416, 637, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.Trackable>::ContainsValue(!1) */, { 9601, 560, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.Trackable>::.ctor(System.Collections.Generic.IEnumerable`1<!0>) */, { 9629, 560, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.Trackable>::GetEnumerator() */, { 9655, 560, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<Vuforia.Trackable>::get_Current() */, { 9653, 560, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.Trackable>::MoveNext() */, { 9652, 560, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.Trackable>::Dispose() */, { 9415, 637, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.Trackable>::ContainsKey(!0) */, { 10914, 1, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.String>::.ctor() */, { 17982, -1, 776 } /* T Vuforia.ITrackerManager::GetTracker<Vuforia.ObjectTracker>() */, { 10927, 1, -1 } /* System.Collections.Generic.HashSet`1/Enumerator<!0> System.Collections.Generic.HashSet`1<System.String>::GetEnumerator() */, { 10948, 1, -1 } /* !0 System.Collections.Generic.HashSet`1/Enumerator<System.String>::get_Current() */, { 9629, 1, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.String>::GetEnumerator() */, { 9655, 1, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<System.String>::get_Current() */, { 9653, 1, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.String>::MoveNext() */, { 9652, 1, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.String>::Dispose() */, { 10922, 1, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.String>::Contains(!0) */, { 10947, 1, -1 } /* System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.String>::MoveNext() */, { 10946, 1, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<System.String>::Dispose() */, { 10932, 1, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.String>::Add(!0) */, { 10921, 1, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.String>::Clear() */, { 11207, -1, 704 } /* !!0 UnityEngine.Component::GetComponentInChildren<Vuforia.BackgroundPlaneBehaviour>() */, { 11204, -1, 702 } /* !!0 UnityEngine.Component::GetComponent<Vuforia.VideoBackgroundBehaviour>() */, { 17982, -1, 777 } /* T Vuforia.ITrackerManager::GetTracker<Vuforia.DeviceTracker>() */, { 17983, -1, 778 } /* T Vuforia.ITrackerManager::InitTracker<Vuforia.RotationalDeviceTracker>() */, { 17983, -1, 773 } /* T Vuforia.ITrackerManager::InitTracker<Vuforia.PositionalDeviceTracker>() */, { 17982, -1, 778 } /* T Vuforia.ITrackerManager::GetTracker<Vuforia.RotationalDeviceTracker>() */, { 12052, -1, 557 } /* !!0 UnityEngine.Object::FindObjectOfType<Vuforia.VuforiaBehaviour>() */, { 987, 603, -1 } /* System.Void System.Action`1<Vuforia.TrackableBehaviour/Status>::Invoke(!0) */, { 995, 605, -1 } /* System.Void System.Action`2<Vuforia.TrackableBehaviour/Status,Vuforia.TrackableBehaviour/StatusInfo>::Invoke(!0,!1) */, { 12157, 363, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>::.ctor(System.Object,System.IntPtr) */, { 10824, -1, 1 } /* !!0[] System.Linq.Enumerable::ToArray<System.String>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 13302, -1, 779 } /* !!0 UnityEngine.JsonUtility::FromJson<Vuforia.EulaJsonUtility/EulaVersionStrings>(System.String) */, { 9409, 571, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>::set_Item(!0,!1) */, { 11206, -1, 780 } /* !!0 UnityEngine.Component::GetComponentInChildren<Vuforia.GuideViewCameraBehaviour>(System.Boolean) */, { 11210, -1, 591 } /* !!0[] UnityEngine.Component::GetComponentsInChildren<UnityEngine.Renderer>() */, { 11307, -1, 604 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.Collider>() */, { 11307, -1, 591 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.Renderer>() */, { 11323, -1, 781 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.GuideView2DBehaviour>() */, { 11323, -1, 782 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.GuideView3DBehaviour>() */, { 10826, -1, 592 } /* System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::OfType<Vuforia.ModelTargetBehaviour>(System.Collections.IEnumerable) */, { 10831, -1, 592 } /* !!0 System.Linq.Enumerable::FirstOrDefault<Vuforia.ModelTargetBehaviour>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 11206, -1, 782 } /* !!0 UnityEngine.Component::GetComponentInChildren<Vuforia.GuideView3DBehaviour>(System.Boolean) */, { 11206, -1, 781 } /* !!0 UnityEngine.Component::GetComponentInChildren<Vuforia.GuideView2DBehaviour>(System.Boolean) */, { 11208, -1, 591 } /* !!0[] UnityEngine.Component::GetComponentsInChildren<UnityEngine.Renderer>(System.Boolean) */, { 12150, 600, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<Vuforia.HitTestResult>::.ctor() */, { 3301, 110, -1 } /* System.Void System.Nullable`1<System.Single>::.ctor(!0) */, { 3307, 110, -1 } /* !0 System.Nullable`1<System.Single>::GetValueOrDefault() */, { 3302, 110, -1 } /* System.Boolean System.Nullable`1<System.Single>::get_HasValue() */, { 11323, -1, 659 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.VirtualButtonBehaviour>() */, { 11311, -1, 601 } /* !!0 UnityEngine.GameObject::GetComponentInChildren<Vuforia.ImageTargetBehaviour>() */, { 9407, 679, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButtonBehaviour>::get_Values() */, { 9601, 659, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VirtualButtonBehaviour>::.ctor(System.Collections.Generic.IEnumerable`1<!0>) */, { 9629, 659, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.VirtualButtonBehaviour>::GetEnumerator() */, { 9655, 659, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<Vuforia.VirtualButtonBehaviour>::get_Current() */, { 9427, 679, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButtonBehaviour>::Remove(!0) */, { 9653, 659, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.VirtualButtonBehaviour>::MoveNext() */, { 9652, 659, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.VirtualButtonBehaviour>::Dispose() */, { 9400, 679, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButtonBehaviour>::.ctor() */, { 9415, 679, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButtonBehaviour>::ContainsKey(!0) */, { 9410, 679, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButtonBehaviour>::Add(!0,!1) */, { 9428, 679, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButtonBehaviour>::TryGetValue(!0,!1&) */, { 9407, 561, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.ObjectTarget>::get_Values() */, { 10824, -1, 559 } /* !!0[] System.Linq.Enumerable::ToArray<Vuforia.ObjectTarget>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 9620, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::Contains(!0) */, { 9427, 561, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.ObjectTarget>::Remove(!0) */, { 9400, 641, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButton>::.ctor() */, { 9407, 641, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButton>::get_Values() */, { 9469, 641, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.VirtualButton>::GetEnumerator() */, { 9485, 641, -1 } /* !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.VirtualButton>::get_Current() */, { 9484, 641, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.VirtualButton>::MoveNext() */, { 9483, 641, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.VirtualButton>::Dispose() */, { 9427, 641, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButton>::Remove(!0) */, { 9415, 641, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButton>::ContainsKey(!0) */, { 9410, 641, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButton>::Add(!0,!1) */, { 9408, 641, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.VirtualButton>::get_Item(!0) */, { 12156, 484, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Transform>::Invoke(!0) */, { 12150, 484, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Transform>::.ctor() */, { 15875, -1, 773 } /* T Vuforia.MixedRealityController::InitializeDeviceTracker<Vuforia.PositionalDeviceTracker>() */, { 15875, -1, 778 } /* T Vuforia.MixedRealityController::InitializeDeviceTracker<Vuforia.RotationalDeviceTracker>() */, { 11207, -1, 780 } /* !!0 UnityEngine.Component::GetComponentInChildren<Vuforia.GuideViewCameraBehaviour>() */, { 11323, -1, 783 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.GuideViewRenderingBehaviour>() */, { 11307, -1, 783 } /* !!0 UnityEngine.GameObject::GetComponent<Vuforia.GuideViewRenderingBehaviour>() */, { 9400, 593, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.GuideView>::.ctor() */, { 9428, 593, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.GuideView>::TryGetValue(!0,!1&) */, { 9409, 593, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.GuideView>::set_Item(!0,!1) */, { 9629, 564, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.ICloudRecoEventHandler>::GetEnumerator() */, { 9655, 564, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<Vuforia.ICloudRecoEventHandler>::get_Current() */, { 9653, 564, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.ICloudRecoEventHandler>::MoveNext() */, { 9652, 564, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.ICloudRecoEventHandler>::Dispose() */, { 9615, 564, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.ICloudRecoEventHandler>::Add(!0) */, { 9637, 564, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.ICloudRecoEventHandler>::Remove(!0) */, { 9599, 564, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.ICloudRecoEventHandler>::.ctor() */, { 9599, 644, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.DataSet>::.ctor() */, { 9629, 644, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.DataSet>::GetEnumerator() */, { 9655, 644, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<Vuforia.DataSet>::get_Current() */, { 9653, 644, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.DataSet>::MoveNext() */, { 9652, 644, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.DataSet>::Dispose() */, { 9615, 644, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.DataSet>::Add(!0) */, { 9637, 644, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.DataSet>::Remove(!0) */, { 10828, -1, 644 } /* System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Cast<Vuforia.DataSet>(System.Collections.IEnumerable) */, { 9601, 644, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.DataSet>::.ctor(System.Collections.Generic.IEnumerable`1<!0>) */, { 9604, 644, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.DataSet>::get_Count() */, { 9610, 644, -1 } /* !0 System.Collections.Generic.List`1<Vuforia.DataSet>::get_Item(System.Int32) */, { 9619, 644, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.DataSet>::Clear() */, { 12156, 600, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<Vuforia.HitTestResult>::Invoke(!0) */, { 986, 603, -1 } /* System.Void System.Action`1<Vuforia.TrackableBehaviour/Status>::.ctor(System.Object,System.IntPtr) */, { 11317, -1, 591 } /* !!0[] UnityEngine.GameObject::GetComponentsInChildren<UnityEngine.Renderer>(System.Boolean) */, { 986, 591, -1 } /* System.Void System.Action`1<UnityEngine.Renderer>::.ctor(System.Object,System.IntPtr) */, { 15712, -1, 591 } /* System.Void Vuforia.IEnumerableExtensionMethods::ForEach<UnityEngine.Renderer>(System.Collections.Generic.IEnumerable`1<T>,System.Action`1<T>) */, { 11317, -1, 604 } /* !!0[] UnityEngine.GameObject::GetComponentsInChildren<UnityEngine.Collider>(System.Boolean) */, { 986, 604, -1 } /* System.Void System.Action`1<UnityEngine.Collider>::.ctor(System.Object,System.IntPtr) */, { 15712, -1, 604 } /* System.Void Vuforia.IEnumerableExtensionMethods::ForEach<UnityEngine.Collider>(System.Collections.Generic.IEnumerable`1<T>,System.Action`1<T>) */, { 11317, -1, 503 } /* !!0[] UnityEngine.GameObject::GetComponentsInChildren<UnityEngine.Canvas>(System.Boolean) */, { 986, 503, -1 } /* System.Void System.Action`1<UnityEngine.Canvas>::.ctor(System.Object,System.IntPtr) */, { 15712, -1, 503 } /* System.Void Vuforia.IEnumerableExtensionMethods::ForEach<UnityEngine.Canvas>(System.Collections.Generic.IEnumerable`1<T>,System.Action`1<T>) */, { 17889, -1, 784 } /* T Vuforia.VuforiaRuntimeUtilities::SafeInitTracker<Vuforia.SmartTerrain>() */, { 17982, -1, 784 } /* T Vuforia.ITrackerManager::GetTracker<Vuforia.SmartTerrain>() */, { 17890, -1, 784 } /* System.Boolean Vuforia.VuforiaRuntimeUtilities::SafeDeinitTracker<Vuforia.SmartTerrain>() */, { 1006, 645, -1 } /* System.Void System.Func`2<System.String,System.Version>::.ctor(System.Object,System.IntPtr) */, { 10819, -1, 645 } /* System.Collections.Generic.IEnumerable`1<!!1> System.Linq.Enumerable::Select<System.String,System.Version>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>) */, { 10916, 136, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Version>::.ctor(System.Collections.Generic.IEnumerable`1<!0>) */, { 10922, 136, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Version>::Contains(!0) */, { 1006, 569, -1 } /* System.Void System.Func`2<Vuforia.TrackableBehaviour,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 10818, -1, 567 } /* System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<Vuforia.TrackableBehaviour>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 10828, -1, 601 } /* System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Cast<Vuforia.ImageTargetBehaviour>(System.Collections.IEnumerable) */, { 1006, 602, -1 } /* System.Void System.Func`2<Vuforia.ImageTargetBehaviour,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 10832, -1, 601 } /* !!0 System.Linq.Enumerable::FirstOrDefault<Vuforia.ImageTargetBehaviour>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 11323, -1, 785 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.BoxCollider>() */, { 986, 567, -1 } /* System.Void System.Action`1<Vuforia.TrackableBehaviour>::.ctor(System.Object,System.IntPtr) */, { 15712, -1, 567 } /* System.Void Vuforia.IEnumerableExtensionMethods::ForEach<Vuforia.TrackableBehaviour>(System.Collections.Generic.IEnumerable`1<T>,System.Action`1<T>) */, { 987, 566, -1 } /* System.Void System.Action`1<Vuforia.Anchor>::Invoke(!0) */, { 12051, -1, 570 } /* !!0[] UnityEngine.Object::FindObjectsOfType<Vuforia.AnchorBehaviour>() */, { 986, 570, -1 } /* System.Void System.Action`1<Vuforia.AnchorBehaviour>::.ctor(System.Object,System.IntPtr) */, { 15712, -1, 570 } /* System.Void Vuforia.IEnumerableExtensionMethods::ForEach<Vuforia.AnchorBehaviour>(System.Collections.Generic.IEnumerable`1<T>,System.Action`1<T>) */, { 1006, 367, -1 } /* System.Void System.Func`2<System.String,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 10836, -1, 1 } /* System.Boolean System.Linq.Enumerable::Any<System.String>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 1010, 620, -1 } /* System.Void System.Func`3<System.String,System.Int32,System.String>::.ctor(System.Object,System.IntPtr) */, { 10820, -1, 20 } /* System.Collections.Generic.IEnumerable`1<!!1> System.Linq.Enumerable::Select<System.String,System.String>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`3<!!0,System.Int32,!!1>) */, { 1006, 20, -1 } /* System.Void System.Func`2<System.String,System.String>::.ctor(System.Object,System.IntPtr) */, { 10819, -1, 20 } /* System.Collections.Generic.IEnumerable`1<!!1> System.Linq.Enumerable::Select<System.String,System.String>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>) */, { 17983, -1, 784 } /* T Vuforia.ITrackerManager::InitTracker<Vuforia.SmartTerrain>() */, { 10831, -1, 600 } /* !!0 System.Linq.Enumerable::FirstOrDefault<Vuforia.HitTestResult>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 10835, -1, 600 } /* System.Boolean System.Linq.Enumerable::Any<Vuforia.HitTestResult>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 9400, 656, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour>::.ctor() */, { 9599, 567, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackableBehaviour>::.ctor() */, { 9617, 567, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackableBehaviour>::AddRange(System.Collections.Generic.IEnumerable`1<!0>) */, { 9615, 567, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackableBehaviour>::Add(!0) */, { 9407, 656, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour>::get_Values() */, { 9428, 656, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour>::TryGetValue(!0,!1&) */, { 9408, 656, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour>::get_Item(!0) */, { 9427, 656, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour>::Remove(!0) */, { 10825, -1, 644 } /* System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<Vuforia.DataSet>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 9620, 644, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.DataSet>::Contains(!0) */, { 9415, 656, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour>::ContainsKey(!0) */, { 9410, 656, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour>::Add(!0,!1) */, { 9620, 567, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackableBehaviour>::Contains(!0) */, { 9409, 656, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour>::set_Item(!0,!1) */, { 9406, 656, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour>::get_Keys() */, { 10824, -1, 24 } /* !!0[] System.Linq.Enumerable::ToArray<System.Int32>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 9414, 656, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour>::Clear() */, { 9619, 567, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackableBehaviour>::Clear() */, { 11307, -1, 626 } /* !!0 UnityEngine.GameObject::GetComponent<Vuforia.DataSetTrackableBehaviour>() */, { 11323, -1, 601 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.ImageTargetBehaviour>() */, { 11323, -1, 592 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.ModelTargetBehaviour>() */, { 10719, 608, -1 } /* System.Collections.Generic.LinkedListNode`1<!0> System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::get_First() */, { 10755, 608, -1 } /* System.Collections.Generic.LinkedListNode`1<!0> System.Collections.Generic.LinkedListNode`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Next() */, { 10756, 608, -1 } /* !0 System.Collections.Generic.LinkedListNode`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Value() */, { 10732, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::Remove(System.Collections.Generic.LinkedListNode`1<!0>) */, { 9400, 660, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour/Status>::.ctor() */, { 9410, 660, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour/Status>::Add(!0,!1) */, { 10824, -1, 567 } /* !!0[] System.Linq.Enumerable::ToArray<Vuforia.TrackableBehaviour>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 9428, 660, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackableBehaviour/Status>::TryGetValue(!0,!1&) */, { 9400, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::.ctor() */, { 9410, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::Add(!0,!1) */, { 9599, 659, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VirtualButtonBehaviour>::.ctor() */, { 9469, 656, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackableBehaviour>::GetEnumerator() */, { 9485, 656, -1 } /* !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.TrackableBehaviour>::get_Current() */, { 9615, 659, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VirtualButtonBehaviour>::Add(!0) */, { 9484, 656, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.TrackableBehaviour>::MoveNext() */, { 9483, 656, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.TrackableBehaviour>::Dispose() */, { 9428, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::TryGetValue(!0,!1&) */, { 10825, -1, 625 } /* System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<Vuforia.VuMarkBehaviour>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 9629, 625, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>::GetEnumerator() */, { 9655, 625, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<Vuforia.VuMarkBehaviour>::get_Current() */, { 9653, 625, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.VuMarkBehaviour>::MoveNext() */, { 9652, 625, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.VuMarkBehaviour>::Dispose() */, { 11323, -1, 786 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.MultiTargetBehaviour>() */, { 11323, -1, 787 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.CylinderTargetBehaviour>() */, { 11323, -1, 625 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.VuMarkBehaviour>() */, { 11323, -1, 788 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.ObjectTargetBehaviour>() */, { 9400, 578, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>::.ctor() */, { 9400, 584, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Camera/StereoscopicEye,System.Single>::.ctor() */, { 9410, 578, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>::Add(!0,!1) */, { 9410, 584, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Camera/StereoscopicEye,System.Single>::Add(!0,!1) */, { 9408, 578, -1 } /* !1 System.Collections.Generic.Dictionary`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>::get_Item(!0) */, { 9409, 578, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Matrix4x4>::set_Item(!0,!1) */, { 9409, 584, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Camera/StereoscopicEye,System.Single>::set_Item(!0,!1) */, { 9408, 584, -1 } /* !1 System.Collections.Generic.Dictionary`2<UnityEngine.Camera/StereoscopicEye,System.Single>::get_Item(!0) */, { 9400, 561, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.ObjectTarget>::.ctor() */, { 9599, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor() */, { 9615, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Add(!0) */, { 9409, 561, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.ObjectTarget>::set_Item(!0,!1) */, { 9469, 561, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.ObjectTarget>::GetEnumerator() */, { 9485, 561, -1 } /* !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.ObjectTarget>::get_Current() */, { 9484, 561, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.ObjectTarget>::MoveNext() */, { 9483, 561, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.ObjectTarget>::Dispose() */, { 9414, 561, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.ObjectTarget>::Clear() */, { 11323, -1, 326 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.Camera>() */, { 11307, -1, 700 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.MeshRenderer>() */, { 11307, -1, 774 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.MeshFilter>() */, { 9615, 684, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.ITrackableEventHandler>::Add(!0) */, { 9637, 684, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.ITrackableEventHandler>::Remove(!0) */, { 9629, 684, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.ITrackableEventHandler>::GetEnumerator() */, { 9655, 684, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<Vuforia.ITrackableEventHandler>::get_Current() */, { 9653, 684, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.ITrackableEventHandler>::MoveNext() */, { 9652, 684, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.ITrackableEventHandler>::Dispose() */, { 9599, 684, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.ITrackableEventHandler>::.ctor() */, { 9400, 685, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>::.ctor() */, { 9410, 685, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>::Add(!0,!1) */, { 9400, 689, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>::.ctor() */, { 1006, 685, -1 } /* System.Void System.Func`2<System.Type,Vuforia.Tracker>::.ctor(System.Object,System.IntPtr) */, { 9410, 689, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>::Add(!0,!1) */, { 9400, 694, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>::.ctor() */, { 1006, 695, -1 } /* System.Void System.Func`2<Vuforia.Tracker,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 9410, 694, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>::Add(!0,!1) */, { 9408, 650, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.Type,System.UInt16>::get_Item(!0) */, { 9400, 650, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.UInt16>::.ctor() */, { 9410, 650, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,System.UInt16>::Add(!0,!1) */, { 9615, 699, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.IUserDefinedTargetEventHandler>::Add(!0) */, { 9637, 699, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.IUserDefinedTargetEventHandler>::Remove(!0) */, { 9629, 699, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.IUserDefinedTargetEventHandler>::GetEnumerator() */, { 9655, 699, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<Vuforia.IUserDefinedTargetEventHandler>::get_Current() */, { 9653, 699, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.IUserDefinedTargetEventHandler>::MoveNext() */, { 9652, 699, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.IUserDefinedTargetEventHandler>::Dispose() */, { 9599, 699, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.IUserDefinedTargetEventHandler>::.ctor() */, { 9400, 571, -1 } /* System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>::.ctor() */, { 9408, 571, -1 } /* !1 System.Collections.Generic.Dictionary`2<UnityEngine.Camera/StereoscopicEye,UnityEngine.Vector2>::get_Item(!0) */, { 10924, 1, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.String>::Remove(!0) */, { 10925, 1, -1 } /* System.Int32 System.Collections.Generic.HashSet`1<System.String>::get_Count() */, { 10922, 700, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.MeshRenderer>::Contains(!0) */, { 10932, 700, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.MeshRenderer>::Add(!0) */, { 10927, 700, -1 } /* System.Collections.Generic.HashSet`1/Enumerator<!0> System.Collections.Generic.HashSet`1<UnityEngine.MeshRenderer>::GetEnumerator() */, { 10948, 700, -1 } /* !0 System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.MeshRenderer>::get_Current() */, { 10947, 700, -1 } /* System.Boolean System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.MeshRenderer>::MoveNext() */, { 10946, 700, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.MeshRenderer>::Dispose() */, { 10921, 700, -1 } /* System.Void System.Collections.Generic.HashSet`1<UnityEngine.MeshRenderer>::Clear() */, { 11323, -1, 700 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.MeshRenderer>() */, { 11323, -1, 704 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.BackgroundPlaneBehaviour>() */, { 10914, 700, -1 } /* System.Void System.Collections.Generic.HashSet`1<UnityEngine.MeshRenderer>::.ctor() */, { 9599, 558, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.AMigratableVideoBackgroundConfigProperty>::.ctor() */, { 9615, 558, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.AMigratableVideoBackgroundConfigProperty>::Add(!0) */, { 986, 558, -1 } /* System.Void System.Action`1<Vuforia.AMigratableVideoBackgroundConfigProperty>::.ctor(System.Object,System.IntPtr) */, { 9628, 558, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.AMigratableVideoBackgroundConfigProperty>::ForEach(System.Action`1<!0>) */, { 9599, 590, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.AValidatableVideoBackgroundConfigProperty>::.ctor() */, { 9615, 590, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.AValidatableVideoBackgroundConfigProperty>::Add(!0) */, { 986, 590, -1 } /* System.Void System.Action`1<Vuforia.AValidatableVideoBackgroundConfigProperty>::.ctor(System.Object,System.IntPtr) */, { 9628, 590, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.AValidatableVideoBackgroundConfigProperty>::ForEach(System.Action`1<!0>) */, { 10914, 702, -1 } /* System.Void System.Collections.Generic.HashSet`1<Vuforia.VideoBackgroundBehaviour>::.ctor() */, { 11317, -1, 702 } /* !!0[] UnityEngine.GameObject::GetComponentsInChildren<Vuforia.VideoBackgroundBehaviour>(System.Boolean) */, { 10932, 702, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<Vuforia.VideoBackgroundBehaviour>::Add(!0) */, { 10927, 702, -1 } /* System.Collections.Generic.HashSet`1/Enumerator<!0> System.Collections.Generic.HashSet`1<Vuforia.VideoBackgroundBehaviour>::GetEnumerator() */, { 10948, 702, -1 } /* !0 System.Collections.Generic.HashSet`1/Enumerator<Vuforia.VideoBackgroundBehaviour>::get_Current() */, { 10947, 702, -1 } /* System.Boolean System.Collections.Generic.HashSet`1/Enumerator<Vuforia.VideoBackgroundBehaviour>::MoveNext() */, { 10946, 702, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<Vuforia.VideoBackgroundBehaviour>::Dispose() */, { 10914, 704, -1 } /* System.Void System.Collections.Generic.HashSet`1<Vuforia.BackgroundPlaneBehaviour>::.ctor() */, { 11317, -1, 704 } /* !!0[] UnityEngine.GameObject::GetComponentsInChildren<Vuforia.BackgroundPlaneBehaviour>(System.Boolean) */, { 10932, 704, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<Vuforia.BackgroundPlaneBehaviour>::Add(!0) */, { 10927, 704, -1 } /* System.Collections.Generic.HashSet`1/Enumerator<!0> System.Collections.Generic.HashSet`1<Vuforia.BackgroundPlaneBehaviour>::GetEnumerator() */, { 10948, 704, -1 } /* !0 System.Collections.Generic.HashSet`1/Enumerator<Vuforia.BackgroundPlaneBehaviour>::get_Current() */, { 10947, 704, -1 } /* System.Boolean System.Collections.Generic.HashSet`1/Enumerator<Vuforia.BackgroundPlaneBehaviour>::MoveNext() */, { 10946, 704, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<Vuforia.BackgroundPlaneBehaviour>::Dispose() */, { 9600, 610, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.IViewerParameters>::.ctor(System.Int32) */, { 9615, 610, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.IViewerParameters>::Add(!0) */, { 9615, 706, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.IVirtualButtonEventHandler>::Add(!0) */, { 9637, 706, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.IVirtualButtonEventHandler>::Remove(!0) */, { 9629, 706, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.IVirtualButtonEventHandler>::GetEnumerator() */, { 9655, 706, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<Vuforia.IVirtualButtonEventHandler>::get_Current() */, { 9653, 706, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.IVirtualButtonEventHandler>::MoveNext() */, { 9652, 706, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.IVirtualButtonEventHandler>::Dispose() */, { 11307, -1, 601 } /* !!0 UnityEngine.GameObject::GetComponent<Vuforia.ImageTargetBehaviour>() */, { 9599, 706, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.IVirtualButtonEventHandler>::.ctor() */, { 9400, 624, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::.ctor() */, { 9599, 631, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuMarkTarget>::.ctor() */, { 9599, 625, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>::.ctor() */, { 9415, 624, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::ContainsKey(!0) */, { 10834, -1, 625 } /* System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Empty<Vuforia.VuMarkBehaviour>() */, { 9408, 624, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::get_Item(!0) */, { 9615, 625, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>::Add(!0) */, { 9407, 624, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::get_Values() */, { 9469, 624, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::GetEnumerator() */, { 9485, 624, -1 } /* !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::get_Current() */, { 9484, 624, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::MoveNext() */, { 9483, 624, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::Dispose() */, { 10914, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::.ctor() */, { 10932, 24, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Int32>::Add(!0) */, { 9620, 625, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>::Contains(!0) */, { 9409, 624, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::set_Item(!0,!1) */, { 9406, 624, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<!0,!1> System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::get_Keys() */, { 9449, 624, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::GetEnumerator() */, { 9465, 624, -1 } /* !0 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::get_Current() */, { 9464, 624, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::MoveNext() */, { 9463, 624, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::Dispose() */, { 9414, 624, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::Clear() */, { 9619, 631, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuMarkTarget>::Clear() */, { 9619, 625, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>::Clear() */, { 9610, 625, -1 } /* !0 System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>::get_Item(System.Int32) */, { 9604, 625, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>::get_Count() */, { 9640, 625, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>::RemoveAt(System.Int32) */, { 9427, 624, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<Vuforia.VuMarkBehaviour>>::Remove(!0) */, { 9615, 631, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuMarkTarget>::Add(!0) */, { 15714, -1, 631 } /* System.Void Vuforia.DelegateHelper::InvokeWithExceptionHandling<Vuforia.VuMarkTarget>(System.Action`1<T>,T) */, { 9629, 631, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.VuMarkTarget>::GetEnumerator() */, { 9655, 631, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<Vuforia.VuMarkTarget>::get_Current() */, { 10922, 24, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Int32>::Contains(!0) */, { 9653, 631, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.VuMarkTarget>::MoveNext() */, { 9652, 631, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.VuMarkTarget>::Dispose() */, { 9637, 631, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.VuMarkTarget>::Remove(!0) */, { 15714, -1, 625 } /* System.Void Vuforia.DelegateHelper::InvokeWithExceptionHandling<Vuforia.VuMarkBehaviour>(System.Action`1<T>,T) */, { 11307, -1, 625 } /* !!0 UnityEngine.GameObject::GetComponent<Vuforia.VuMarkBehaviour>() */, { 9400, 634, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<System.Int32>>::.ctor() */, { 9415, 634, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<System.Int32>>::ContainsKey(!0) */, { 9409, 634, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<System.Int32>>::set_Item(!0,!1) */, { 9408, 634, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.Int32,System.Collections.Generic.List`1<System.Int32>>::get_Item(!0) */, { 9599, 682, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.IVideoBackgroundEventHandler>::.ctor() */, { 9615, 682, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.IVideoBackgroundEventHandler>::Add(!0) */, { 9637, 682, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.IVideoBackgroundEventHandler>::Remove(!0) */, { 15714, -1, 47 } /* System.Void Vuforia.DelegateHelper::InvokeWithExceptionHandling<System.Boolean>(System.Action`1<T>,T) */, { 17984, -1, 776 } /* System.Boolean Vuforia.ITrackerManager::DeinitTracker<Vuforia.ObjectTracker>() */, { 17984, -1, 777 } /* System.Boolean Vuforia.ITrackerManager::DeinitTracker<Vuforia.DeviceTracker>() */, { 17984, -1, 784 } /* System.Boolean Vuforia.ITrackerManager::DeinitTracker<Vuforia.SmartTerrain>() */, { 17983, -1, 776 } /* T Vuforia.ITrackerManager::InitTracker<Vuforia.ObjectTracker>() */, { 9629, 682, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.IVideoBackgroundEventHandler>::GetEnumerator() */, { 9655, 682, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<Vuforia.IVideoBackgroundEventHandler>::get_Current() */, { 9653, 682, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.IVideoBackgroundEventHandler>::MoveNext() */, { 9652, 682, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.IVideoBackgroundEventHandler>::Dispose() */, { 15714, -1, 557 } /* System.Void Vuforia.DelegateHelper::InvokeWithExceptionHandling<Vuforia.VuforiaBehaviour>(System.Action`1<T>,T) */, { 11323, -1, 702 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.VideoBackgroundBehaviour>() */, { 11848, -1, 789 } /* !!0 UnityEngine.Resources::Load<Vuforia.VuforiaConfiguration>(System.String) */, { 12043, -1, 789 } /* !!0 UnityEngine.Object::Instantiate<Vuforia.VuforiaConfiguration>(!!0) */, { 11856, -1, 789 } /* !!0 UnityEngine.ScriptableObject::CreateInstance<Vuforia.VuforiaConfiguration>() */, { 10834, -1, 608 } /* System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Empty<Vuforia.VuforiaManager/TrackableIdPair>() */, { 10716, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor() */, { 10718, 608, -1 } /* System.Int32 System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Count() */, { 1006, 683, -1 } /* System.Void System.Func`2<Vuforia.TrackerData/TrackableResultData,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 10818, -1, 621 } /* System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Where<Vuforia.TrackerData/TrackableResultData>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,System.Boolean>) */, { 10825, -1, 621 } /* System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<Vuforia.TrackerData/TrackableResultData>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 10835, -1, 621 } /* System.Boolean System.Linq.Enumerable::Any<Vuforia.TrackerData/TrackableResultData>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 10830, -1, 621 } /* !!0 System.Linq.Enumerable::First<Vuforia.TrackerData/TrackableResultData>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 9405, 611, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::get_Count() */, { 9407, 611, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<!0,!1> System.Collections.Generic.Dictionary`2<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::get_Values() */, { 9469, 611, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2/ValueCollection<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::GetEnumerator() */, { 9485, 611, -1 } /* !1 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::get_Current() */, { 9484, 611, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::MoveNext() */, { 9483, 611, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<Vuforia.Image/PIXEL_FORMAT,Vuforia.Image>::Dispose() */, { 9601, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Collections.Generic.IEnumerable`1<!0>) */, { 9629, 608, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::GetEnumerator() */, { 9655, 608, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::get_Current() */, { 1030, 621, -1 } /* System.Void System.Predicate`1<Vuforia.TrackerData/TrackableResultData>::.ctor(System.Object,System.IntPtr) */, { 784, -1, 621 } /* System.Boolean System.Array::Exists<Vuforia.TrackerData/TrackableResultData>(!!0[],System.Predicate`1<!!0>) */, { 1030, 622, -1 } /* System.Void System.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor(System.Object,System.IntPtr) */, { 784, -1, 622 } /* System.Boolean System.Array::Exists<Vuforia.TrackerData/VuMarkTargetResultData>(!!0[],System.Predicate`1<!!0>) */, { 10731, 608, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::Remove(!0) */, { 9653, 608, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::MoveNext() */, { 9652, 608, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::Dispose() */, { 10726, 608, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::Contains(!0) */, { 10724, 608, -1 } /* System.Collections.Generic.LinkedListNode`1<!0> System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::AddLast(!0) */, { 10729, 608, -1 } /* System.Collections.Generic.LinkedList`1/Enumerator<!0> System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::GetEnumerator() */, { 10747, 608, -1 } /* !0 System.Collections.Generic.LinkedList`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::get_Current() */, { 9632, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::IndexOf(!0) */, { 9610, 24, -1 } /* !0 System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32) */, { 10749, 608, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::MoveNext() */, { 10751, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::Dispose() */, { 10824, -1, 608 } /* !!0[] System.Linq.Enumerable::ToArray<Vuforia.VuforiaManager/TrackableIdPair>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 9640, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::RemoveAt(System.Int32) */, { 10825, -1, 622 } /* System.Collections.Generic.List`1<!!0> System.Linq.Enumerable::ToList<Vuforia.TrackerData/VuMarkTargetResultData>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 9615, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Add(!0) */, { 9648, 622, -1 } /* !0[] System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::ToArray() */, { 9599, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor() */, { 9615, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Add(!0) */, { 9648, 632, -1 } /* !0[] System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::ToArray() */, { 987, 556, -1 } /* System.Void System.Action`1<Vuforia.VuforiaUnity/InitError>::Invoke(!0) */, { 15714, -1, 556 } /* System.Void Vuforia.DelegateHelper::InvokeWithExceptionHandling<Vuforia.VuforiaUnity/InitError>(System.Action`1<T>,T) */, { 11307, -1, 557 } /* !!0 UnityEngine.GameObject::GetComponent<Vuforia.VuforiaBehaviour>() */, { 11323, -1, 557 } /* !!0 UnityEngine.GameObject::AddComponent<Vuforia.VuforiaBehaviour>() */, { 11323, -1, 790 } /* !!0 UnityEngine.GameObject::AddComponent<DefaultInitializationErrorHandlerInternal>() */, { 12051, -1, 568 } /* !!0[] UnityEngine.Object::FindObjectsOfType<VuforiaMonoBehaviour>() */, { 10835, -1, 568 } /* System.Boolean System.Linq.Enumerable::Any<VuforiaMonoBehaviour>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 10835, -1, 644 } /* System.Boolean System.Linq.Enumerable::Any<Vuforia.DataSet>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 10835, -1, 559 } /* System.Boolean System.Linq.Enumerable::Any<Vuforia.ObjectTarget>(System.Collections.Generic.IEnumerable`1<!!0>) */, { 1011, 670, -1 } /* !2 System.Func`3<System.String,Vuforia.WebCamProfile/ProfileData,Vuforia.IWebCamTexAdaptor>::Invoke(!0,!1) */, { 1010, 670, -1 } /* System.Void System.Func`3<System.String,Vuforia.WebCamProfile/ProfileData,Vuforia.IWebCamTexAdaptor>::.ctor(System.Object,System.IntPtr) */, { 15400, -1, 326 } /* T[] Vuforia.UnityComponentExtensions::GetComponentsOnlyInChildren<UnityEngine.Camera>(UnityEngine.Component) */, { 9428, 672, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,Vuforia.WebCamProfile/ProfileData>::TryGetValue(!0,!1&) */, { 9415, 672, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,Vuforia.WebCamProfile/ProfileData>::ContainsKey(!0) */, { 11319, -1, 326 } /* !!0[] UnityEngine.GameObject::GetComponentsInChildren<UnityEngine.Camera>() */, { 11204, -1, 567 } /* !!0 UnityEngine.Component::GetComponent<Vuforia.TrackableBehaviour>() */, { 11208, -1, 604 } /* !!0[] UnityEngine.Component::GetComponentsInChildren<UnityEngine.Collider>(System.Boolean) */, { 11208, -1, 707 } /* !!0[] UnityEngine.Component::GetComponentsInChildren<Vuforia.WireframeBehaviour>(System.Boolean) */, { 11208, -1, 503 } /* !!0[] UnityEngine.Component::GetComponentsInChildren<UnityEngine.Canvas>(System.Boolean) */, { 11307, -1, 791 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.Video.VideoPlayer>() */, { 11204, -1, 785 } /* !!0 UnityEngine.Component::GetComponent<UnityEngine.BoxCollider>() */, { 11307, -1, 708 } /* !!0 UnityEngine.GameObject::GetComponent<Depthkit.Depthkit_ClipPlayer>() */, { 11218, -1, 708 } /* !!0[] UnityEngine.Component::GetComponents<Depthkit.Depthkit_ClipPlayer>() */, { 11323, -1, 792 } /* !!0 UnityEngine.GameObject::AddComponent<Depthkit.Depthkit_UnityVideoPlayer>() */, { 11307, -1, 709 } /* !!0 UnityEngine.GameObject::GetComponent<Depthkit.Depthkit_ClipRenderer>() */, { 11218, -1, 709 } /* !!0[] UnityEngine.Component::GetComponents<Depthkit.Depthkit_ClipRenderer>() */, { 11323, -1, 793 } /* !!0 UnityEngine.GameObject::AddComponent<Depthkit.Depthkit_PhotoLook>() */, { 9400, 711, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,Depthkit.PlayerType>::.ctor() */, { 9410, 711, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.String,Depthkit.PlayerType>::Add(!0,!1) */, { 13302, -1, 794 } /* !!0 UnityEngine.JsonUtility::FromJson<Depthkit.Depthkit_Metadata/MetadataVersion>(System.String) */, { 13302, -1, 795 } /* !!0 UnityEngine.JsonUtility::FromJson<Depthkit.Depthkit_Metadata/MetadataSinglePerspective>(System.String) */, { 13302, -1, 796 } /* !!0 UnityEngine.JsonUtility::FromJson<Depthkit.Depthkit_Metadata>(System.String) */, { 11323, -1, 791 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.Video.VideoPlayer>() */, { 11307, -1, 797 } /* !!0 UnityEngine.GameObject::GetComponent<UnityEngine.AudioSource>() */, { 11323, -1, 797 } /* !!0 UnityEngine.GameObject::AddComponent<UnityEngine.AudioSource>() */, { 856, -1, 798 } /* R System.Array::UnsafeMov<System.Int32Enum,System.Int32>(S) */, { 805, -1, 31 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) */, { 805, -1, 47 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Boolean>(T) */, { 805, -1, 8 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Byte>(T) */, { 805, -1, 9 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Char>(T) */, { 805, -1, 27 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.DictionaryEntry>(T) */, { 805, -1, 663 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>(T) */, { 805, -1, 124 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T) */, { 805, -1, 668 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) */, { 805, -1, 614 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>(T) */, { 805, -1, 587 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>(T) */, { 805, -1, 581 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>(T) */, { 805, -1, 574 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>(T) */, { 805, -1, 276 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T) */, { 805, -1, 713 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>(T) */, { 805, -1, 23 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T) */, { 805, -1, 166 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T) */, { 805, -1, 653 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>(T) */, { 805, -1, 675 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) */, { 805, -1, 633 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.HashSet`1/Slot<System.Int32>>(T) */, { 805, -1, 317 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.HashSet`1/Slot<System.Object>>(T) */, { 805, -1, 115 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) */, { 805, -1, 662 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(T) */, { 805, -1, 123 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) */, { 805, -1, 667 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) */, { 805, -1, 613 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>(T) */, { 805, -1, 586 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>(T) */, { 805, -1, 580 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>(T) */, { 805, -1, 573 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>(T) */, { 805, -1, 275 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) */, { 805, -1, 712 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(T) */, { 805, -1, 22 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) */, { 805, -1, 165 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) */, { 805, -1, 652 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>(T) */, { 805, -1, 674 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) */, { 805, -1, 292 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Hashtable/bucket>(T) */, { 805, -1, 61 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.DateTime>(T) */, { 805, -1, 62 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Decimal>(T) */, { 805, -1, 82 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Double>(T) */, { 805, -1, 228 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Globalization.InternalCodePageDataItem>(T) */, { 805, -1, 229 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Globalization.InternalEncodingDataItem>(T) */, { 805, -1, 96 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int16>(T) */, { 805, -1, 24 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int32>(T) */, { 805, -1, 91 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int32Enum>(T) */, { 805, -1, 30 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int64>(T) */, { 805, -1, 86 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.IntPtr>(T) */, { 805, -1, 150 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.ParameterizedStrings/FormatParam>(T) */, { 805, -1, 173 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.CustomAttributeNamedArgument>(T) */, { 805, -1, 172 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.CustomAttributeTypedArgument>(T) */, { 805, -1, 65 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.ParameterModifier>(T) */, { 805, -1, 167 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Resources.ResourceLocator>(T) */, { 805, -1, 26 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Runtime.CompilerServices.Ephemeron>(T) */, { 805, -1, 109 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.SByte>(T) */, { 805, -1, 315 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) */, { 805, -1, 110 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Single>(T) */, { 805, -1, 308 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T) */, { 805, -1, 239 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.Threading.CancellationTokenRegistration>(T) */, { 805, -1, 111 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.TimeSpan>(T) */, { 805, -1, 135 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt16>(T) */, { 805, -1, 35 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt32>(T) */, { 805, -1, 83 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt64>(T) */, { 805, -1, 324 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.BeforeRenderHelper/OrderBlock>(T) */, { 805, -1, 340 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Color32>(T) */, { 805, -1, 330 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Color>(T) */, { 805, -1, 371 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.ContactPoint>(T) */, { 805, -1, 459 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.EventSystems.RaycastResult>(T) */, { 805, -1, 342 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) */, { 805, -1, 319 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Keyframe>(T) */, { 805, -1, 335 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Matrix4x4>(T) */, { 805, -1, 332 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Plane>(T) */, { 805, -1, 355 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Playables.PlayableBinding>(T) */, { 805, -1, 493 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.RaycastHit2D>(T) */, { 805, -1, 373 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.RaycastHit>(T) */, { 805, -1, 381 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Resolution>(T) */, { 805, -1, 341 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SendMouseEvents/HitInfo>(T) */, { 805, -1, 431 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) */, { 805, -1, 435 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) */, { 805, -1, 498 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.ColorBlock>(T) */, { 805, -1, 538 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.Navigation>(T) */, { 805, -1, 541 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.SpriteState>(T) */, { 805, -1, 384 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UICharInfo>(T) */, { 805, -1, 385 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UILineInfo>(T) */, { 805, -1, 383 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UIVertex>(T) */, { 805, -1, 351 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UnitySynchronizationContext/WorkRequest>(T) */, { 805, -1, 339 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector2>(T) */, { 805, -1, 336 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector3>(T) */, { 805, -1, 338 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector4>(T) */, { 805, -1, 382 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.WebCamDevice>(T) */, { 805, -1, 619 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.CameraDevice/CameraField>(T) */, { 805, -1, 607 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.EyewearDevice/EyewearCalibrationReading>(T) */, { 805, -1, 609 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>(T) */, { 805, -1, 565 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.TargetFinder/TargetSearchResult>(T) */, { 805, -1, 621 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.TrackerData/TrackableResultData>(T) */, { 805, -1, 669 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.TrackerData/VirtualButtonData>(T) */, { 805, -1, 632 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.TrackerData/VuMarkTargetData>(T) */, { 805, -1, 622 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.TrackerData/VuMarkTargetResultData>(T) */, { 805, -1, 608 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.VuforiaManager/TrackableIdPair>(T) */, { 805, -1, 676 } /* System.Boolean System.Array::InternalArray__ICollection_Contains<Vuforia.WebCamProfile/ProfileData>(T) */, { 804, -1, 31 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) */, { 804, -1, 47 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Boolean>(T) */, { 804, -1, 8 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Byte>(T) */, { 804, -1, 9 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Char>(T) */, { 804, -1, 27 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.DictionaryEntry>(T) */, { 804, -1, 663 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>(T) */, { 804, -1, 124 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T) */, { 804, -1, 668 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) */, { 804, -1, 614 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>(T) */, { 804, -1, 587 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>(T) */, { 804, -1, 581 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>(T) */, { 804, -1, 574 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>(T) */, { 804, -1, 276 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T) */, { 804, -1, 713 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>(T) */, { 804, -1, 23 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T) */, { 804, -1, 166 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T) */, { 804, -1, 653 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>(T) */, { 804, -1, 675 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) */, { 804, -1, 633 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.HashSet`1/Slot<System.Int32>>(T) */, { 804, -1, 317 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.HashSet`1/Slot<System.Object>>(T) */, { 804, -1, 115 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) */, { 804, -1, 662 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(T) */, { 804, -1, 123 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) */, { 804, -1, 667 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) */, { 804, -1, 613 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>(T) */, { 804, -1, 586 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>(T) */, { 804, -1, 580 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>(T) */, { 804, -1, 573 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>(T) */, { 804, -1, 275 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) */, { 804, -1, 712 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(T) */, { 804, -1, 22 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) */, { 804, -1, 165 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) */, { 804, -1, 652 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>(T) */, { 804, -1, 674 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) */, { 804, -1, 292 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Hashtable/bucket>(T) */, { 804, -1, 61 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.DateTime>(T) */, { 804, -1, 62 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Decimal>(T) */, { 804, -1, 82 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Double>(T) */, { 804, -1, 228 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Globalization.InternalCodePageDataItem>(T) */, { 804, -1, 229 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Globalization.InternalEncodingDataItem>(T) */, { 804, -1, 96 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int16>(T) */, { 804, -1, 24 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int32>(T) */, { 804, -1, 91 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int32Enum>(T) */, { 804, -1, 30 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int64>(T) */, { 804, -1, 86 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.IntPtr>(T) */, { 804, -1, 150 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.ParameterizedStrings/FormatParam>(T) */, { 804, -1, 173 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.CustomAttributeNamedArgument>(T) */, { 804, -1, 172 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.CustomAttributeTypedArgument>(T) */, { 804, -1, 65 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.ParameterModifier>(T) */, { 804, -1, 167 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Resources.ResourceLocator>(T) */, { 804, -1, 26 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Runtime.CompilerServices.Ephemeron>(T) */, { 804, -1, 109 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.SByte>(T) */, { 804, -1, 315 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) */, { 804, -1, 110 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Single>(T) */, { 804, -1, 308 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T) */, { 804, -1, 239 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.Threading.CancellationTokenRegistration>(T) */, { 804, -1, 111 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.TimeSpan>(T) */, { 804, -1, 135 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt16>(T) */, { 804, -1, 35 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt32>(T) */, { 804, -1, 83 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt64>(T) */, { 804, -1, 324 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.BeforeRenderHelper/OrderBlock>(T) */, { 804, -1, 340 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Color32>(T) */, { 804, -1, 330 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Color>(T) */, { 804, -1, 371 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.ContactPoint>(T) */, { 804, -1, 459 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.EventSystems.RaycastResult>(T) */, { 804, -1, 342 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) */, { 804, -1, 319 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Keyframe>(T) */, { 804, -1, 335 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Matrix4x4>(T) */, { 804, -1, 332 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Plane>(T) */, { 804, -1, 355 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Playables.PlayableBinding>(T) */, { 804, -1, 493 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.RaycastHit2D>(T) */, { 804, -1, 373 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.RaycastHit>(T) */, { 804, -1, 381 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Resolution>(T) */, { 804, -1, 341 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SendMouseEvents/HitInfo>(T) */, { 804, -1, 431 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) */, { 804, -1, 435 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) */, { 804, -1, 498 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.ColorBlock>(T) */, { 804, -1, 538 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.Navigation>(T) */, { 804, -1, 541 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.SpriteState>(T) */, { 804, -1, 384 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UICharInfo>(T) */, { 804, -1, 385 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UILineInfo>(T) */, { 804, -1, 383 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UIVertex>(T) */, { 804, -1, 351 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UnitySynchronizationContext/WorkRequest>(T) */, { 804, -1, 339 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector2>(T) */, { 804, -1, 336 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector3>(T) */, { 804, -1, 338 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector4>(T) */, { 804, -1, 382 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.WebCamDevice>(T) */, { 804, -1, 619 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.CameraDevice/CameraField>(T) */, { 804, -1, 607 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.EyewearDevice/EyewearCalibrationReading>(T) */, { 804, -1, 609 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>(T) */, { 804, -1, 565 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.TargetFinder/TargetSearchResult>(T) */, { 804, -1, 621 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.TrackerData/TrackableResultData>(T) */, { 804, -1, 669 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.TrackerData/VirtualButtonData>(T) */, { 804, -1, 632 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.TrackerData/VuMarkTargetData>(T) */, { 804, -1, 622 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.TrackerData/VuMarkTargetResultData>(T) */, { 804, -1, 608 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.VuforiaManager/TrackableIdPair>(T) */, { 804, -1, 676 } /* System.Boolean System.Array::InternalArray__ICollection_Remove<Vuforia.WebCamProfile/ProfileData>(T) */, { 8892, -1, 24 } /* System.Boolean System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences<System.Int32>() */, { 8892, -1, 351 } /* System.Boolean System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences<UnityEngine.UnitySynchronizationContext/WorkRequest>() */, { 15030, 462, -1 } /* T UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>::Get() */, { 9604, 461, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>::get_Count() */, { 15031, 462, -1 } /* System.Void UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>>::Release(T) */, { 9610, 461, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>::get_Item(System.Int32) */, { 14617, -1, 91 } /* System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Int32Enum>(T&,T) */, { 9415, 685, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>::ContainsKey(!0) */, { 9408, 694, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<Vuforia.Tracker,System.Boolean>>::get_Item(!0) */, { 9408, 685, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>::get_Item(!0) */, { 1007, 695, -1 } /* !1 System.Func`2<Vuforia.Tracker,System.Boolean>::Invoke(!0) */, { 9409, 685, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>::set_Item(!0,!1) */, { 801, -1, 31 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Globalization.Unicode.CodePointIndexer/TableRange>() */, { 801, -1, 47 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Boolean>() */, { 801, -1, 8 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Byte>() */, { 801, -1, 9 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Char>() */, { 801, -1, 27 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.DictionaryEntry>() */, { 801, -1, 663 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>() */, { 801, -1, 124 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>() */, { 801, -1, 668 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>() */, { 801, -1, 614 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>() */, { 801, -1, 587 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>() */, { 801, -1, 581 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>() */, { 801, -1, 574 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>() */, { 801, -1, 276 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>() */, { 801, -1, 713 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>() */, { 801, -1, 23 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>() */, { 801, -1, 166 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>() */, { 801, -1, 653 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>() */, { 801, -1, 675 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>() */, { 801, -1, 633 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.HashSet`1/Slot<System.Int32>>() */, { 801, -1, 317 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.HashSet`1/Slot<System.Object>>() */, { 801, -1, 115 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>() */, { 801, -1, 662 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>() */, { 801, -1, 123 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>() */, { 801, -1, 667 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>() */, { 801, -1, 613 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>() */, { 801, -1, 586 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>() */, { 801, -1, 580 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>() */, { 801, -1, 573 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>() */, { 801, -1, 275 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>() */, { 801, -1, 712 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>() */, { 801, -1, 22 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>() */, { 801, -1, 165 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>() */, { 801, -1, 652 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>() */, { 801, -1, 674 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>() */, { 801, -1, 292 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Hashtable/bucket>() */, { 801, -1, 61 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.DateTime>() */, { 801, -1, 62 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Decimal>() */, { 801, -1, 82 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Double>() */, { 801, -1, 228 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Globalization.InternalCodePageDataItem>() */, { 801, -1, 229 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Globalization.InternalEncodingDataItem>() */, { 801, -1, 96 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int16>() */, { 801, -1, 24 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int32>() */, { 801, -1, 91 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int32Enum>() */, { 801, -1, 30 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int64>() */, { 801, -1, 86 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.IntPtr>() */, { 801, -1, 150 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.ParameterizedStrings/FormatParam>() */, { 801, -1, 173 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.CustomAttributeNamedArgument>() */, { 801, -1, 172 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.CustomAttributeTypedArgument>() */, { 801, -1, 65 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.ParameterModifier>() */, { 801, -1, 167 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Resources.ResourceLocator>() */, { 801, -1, 26 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Runtime.CompilerServices.Ephemeron>() */, { 801, -1, 109 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.SByte>() */, { 801, -1, 315 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Security.Cryptography.X509Certificates.X509ChainStatus>() */, { 801, -1, 110 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Single>() */, { 801, -1, 308 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>() */, { 801, -1, 239 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Threading.CancellationTokenRegistration>() */, { 801, -1, 111 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.TimeSpan>() */, { 801, -1, 135 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt16>() */, { 801, -1, 35 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt32>() */, { 801, -1, 83 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt64>() */, { 801, -1, 324 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.BeforeRenderHelper/OrderBlock>() */, { 801, -1, 340 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Color32>() */, { 801, -1, 330 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Color>() */, { 801, -1, 371 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.ContactPoint>() */, { 801, -1, 459 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.EventSystems.RaycastResult>() */, { 801, -1, 342 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>() */, { 801, -1, 319 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Keyframe>() */, { 801, -1, 335 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Matrix4x4>() */, { 801, -1, 332 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Plane>() */, { 801, -1, 355 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Playables.PlayableBinding>() */, { 801, -1, 493 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.RaycastHit2D>() */, { 801, -1, 373 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.RaycastHit>() */, { 801, -1, 381 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Resolution>() */, { 801, -1, 341 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SendMouseEvents/HitInfo>() */, { 801, -1, 431 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>() */, { 801, -1, 435 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>() */, { 801, -1, 498 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.ColorBlock>() */, { 801, -1, 538 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.Navigation>() */, { 801, -1, 541 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.SpriteState>() */, { 801, -1, 384 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UICharInfo>() */, { 801, -1, 385 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UILineInfo>() */, { 801, -1, 383 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UIVertex>() */, { 801, -1, 351 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>() */, { 801, -1, 339 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Vector2>() */, { 801, -1, 336 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Vector3>() */, { 801, -1, 338 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Vector4>() */, { 801, -1, 382 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.WebCamDevice>() */, { 801, -1, 619 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Vuforia.CameraDevice/CameraField>() */, { 801, -1, 607 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Vuforia.EyewearDevice/EyewearCalibrationReading>() */, { 801, -1, 609 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>() */, { 801, -1, 565 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Vuforia.TargetFinder/TargetSearchResult>() */, { 801, -1, 621 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Vuforia.TrackerData/TrackableResultData>() */, { 801, -1, 669 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Vuforia.TrackerData/VirtualButtonData>() */, { 801, -1, 632 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Vuforia.TrackerData/VuMarkTargetData>() */, { 801, -1, 622 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Vuforia.TrackerData/VuMarkTargetResultData>() */, { 801, -1, 608 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Vuforia.VuforiaManager/TrackableIdPair>() */, { 801, -1, 676 } /* System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Vuforia.WebCamProfile/ProfileData>() */, { 10822, -1, 621 } /* System.Func`2<TSource,System.Boolean> System.Linq.Enumerable::CombinePredicates<Vuforia.TrackerData/TrackableResultData>(System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,System.Boolean>) */, { 746, -1, 83 } /* System.Int32 System.Array::BinarySearch<System.UInt64>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 791, -1, 621 } /* System.Int32 System.Array::FindIndex<Vuforia.TrackerData/TrackableResultData>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 789, -1, 621 } /* System.Int32 System.Array::FindIndex<Vuforia.TrackerData/TrackableResultData>(T[],System.Predicate`1<T>) */, { 791, -1, 622 } /* System.Int32 System.Array::FindIndex<Vuforia.TrackerData/VuMarkTargetResultData>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 789, -1, 622 } /* System.Int32 System.Array::FindIndex<Vuforia.TrackerData/VuMarkTargetResultData>(T[],System.Predicate`1<T>) */, { 752, -1, 115 } /* System.Int32 System.Array::IndexOf<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],T,System.Int32,System.Int32) */, { 752, -1, 24 } /* System.Int32 System.Array::IndexOf<System.Int32>(T[],T,System.Int32,System.Int32) */, { 752, -1, 91 } /* System.Int32 System.Array::IndexOf<System.Int32Enum>(T[],T,System.Int32,System.Int32) */, { 752, -1, 324 } /* System.Int32 System.Array::IndexOf<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],T,System.Int32,System.Int32) */, { 752, -1, 340 } /* System.Int32 System.Array::IndexOf<UnityEngine.Color32>(T[],T,System.Int32,System.Int32) */, { 752, -1, 459 } /* System.Int32 System.Array::IndexOf<UnityEngine.EventSystems.RaycastResult>(T[],T,System.Int32,System.Int32) */, { 752, -1, 384 } /* System.Int32 System.Array::IndexOf<UnityEngine.UICharInfo>(T[],T,System.Int32,System.Int32) */, { 752, -1, 385 } /* System.Int32 System.Array::IndexOf<UnityEngine.UILineInfo>(T[],T,System.Int32,System.Int32) */, { 752, -1, 383 } /* System.Int32 System.Array::IndexOf<UnityEngine.UIVertex>(T[],T,System.Int32,System.Int32) */, { 752, -1, 339 } /* System.Int32 System.Array::IndexOf<UnityEngine.Vector2>(T[],T,System.Int32,System.Int32) */, { 752, -1, 336 } /* System.Int32 System.Array::IndexOf<UnityEngine.Vector3>(T[],T,System.Int32,System.Int32) */, { 752, -1, 338 } /* System.Int32 System.Array::IndexOf<UnityEngine.Vector4>(T[],T,System.Int32,System.Int32) */, { 752, -1, 619 } /* System.Int32 System.Array::IndexOf<Vuforia.CameraDevice/CameraField>(T[],T,System.Int32,System.Int32) */, { 752, -1, 565 } /* System.Int32 System.Array::IndexOf<Vuforia.TargetFinder/TargetSearchResult>(T[],T,System.Int32,System.Int32) */, { 752, -1, 621 } /* System.Int32 System.Array::IndexOf<Vuforia.TrackerData/TrackableResultData>(T[],T,System.Int32,System.Int32) */, { 752, -1, 632 } /* System.Int32 System.Array::IndexOf<Vuforia.TrackerData/VuMarkTargetData>(T[],T,System.Int32,System.Int32) */, { 752, -1, 622 } /* System.Int32 System.Array::IndexOf<Vuforia.TrackerData/VuMarkTargetResultData>(T[],T,System.Int32,System.Int32) */, { 752, -1, 608 } /* System.Int32 System.Array::IndexOf<Vuforia.VuforiaManager/TrackableIdPair>(T[],T,System.Int32,System.Int32) */, { 851, -1, 115 } /* System.Int32 System.Array::IndexOfImpl<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],T,System.Int32,System.Int32) */, { 851, -1, 24 } /* System.Int32 System.Array::IndexOfImpl<System.Int32>(T[],T,System.Int32,System.Int32) */, { 851, -1, 91 } /* System.Int32 System.Array::IndexOfImpl<System.Int32Enum>(T[],T,System.Int32,System.Int32) */, { 851, -1, 324 } /* System.Int32 System.Array::IndexOfImpl<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],T,System.Int32,System.Int32) */, { 851, -1, 340 } /* System.Int32 System.Array::IndexOfImpl<UnityEngine.Color32>(T[],T,System.Int32,System.Int32) */, { 851, -1, 459 } /* System.Int32 System.Array::IndexOfImpl<UnityEngine.EventSystems.RaycastResult>(T[],T,System.Int32,System.Int32) */, { 851, -1, 384 } /* System.Int32 System.Array::IndexOfImpl<UnityEngine.UICharInfo>(T[],T,System.Int32,System.Int32) */, { 851, -1, 385 } /* System.Int32 System.Array::IndexOfImpl<UnityEngine.UILineInfo>(T[],T,System.Int32,System.Int32) */, { 851, -1, 383 } /* System.Int32 System.Array::IndexOfImpl<UnityEngine.UIVertex>(T[],T,System.Int32,System.Int32) */, { 851, -1, 339 } /* System.Int32 System.Array::IndexOfImpl<UnityEngine.Vector2>(T[],T,System.Int32,System.Int32) */, { 851, -1, 336 } /* System.Int32 System.Array::IndexOfImpl<UnityEngine.Vector3>(T[],T,System.Int32,System.Int32) */, { 851, -1, 338 } /* System.Int32 System.Array::IndexOfImpl<UnityEngine.Vector4>(T[],T,System.Int32,System.Int32) */, { 851, -1, 619 } /* System.Int32 System.Array::IndexOfImpl<Vuforia.CameraDevice/CameraField>(T[],T,System.Int32,System.Int32) */, { 851, -1, 565 } /* System.Int32 System.Array::IndexOfImpl<Vuforia.TargetFinder/TargetSearchResult>(T[],T,System.Int32,System.Int32) */, { 851, -1, 621 } /* System.Int32 System.Array::IndexOfImpl<Vuforia.TrackerData/TrackableResultData>(T[],T,System.Int32,System.Int32) */, { 851, -1, 632 } /* System.Int32 System.Array::IndexOfImpl<Vuforia.TrackerData/VuMarkTargetData>(T[],T,System.Int32,System.Int32) */, { 851, -1, 622 } /* System.Int32 System.Array::IndexOfImpl<Vuforia.TrackerData/VuMarkTargetResultData>(T[],T,System.Int32,System.Int32) */, { 851, -1, 608 } /* System.Int32 System.Array::IndexOfImpl<Vuforia.VuforiaManager/TrackableIdPair>(T[],T,System.Int32,System.Int32) */, { 811, -1, 31 } /* System.Int32 System.Array::InternalArray__IndexOf<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) */, { 811, -1, 47 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Boolean>(T) */, { 811, -1, 8 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Byte>(T) */, { 811, -1, 9 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Char>(T) */, { 811, -1, 27 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.DictionaryEntry>(T) */, { 811, -1, 663 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>(T) */, { 811, -1, 124 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T) */, { 811, -1, 668 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) */, { 811, -1, 614 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>(T) */, { 811, -1, 587 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>(T) */, { 811, -1, 581 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>(T) */, { 811, -1, 574 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>(T) */, { 811, -1, 276 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T) */, { 811, -1, 713 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>(T) */, { 811, -1, 23 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T) */, { 811, -1, 166 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T) */, { 811, -1, 653 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>(T) */, { 811, -1, 675 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) */, { 811, -1, 633 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.HashSet`1/Slot<System.Int32>>(T) */, { 811, -1, 317 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.HashSet`1/Slot<System.Object>>(T) */, { 811, -1, 115 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) */, { 811, -1, 662 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(T) */, { 811, -1, 123 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) */, { 811, -1, 667 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) */, { 811, -1, 613 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>(T) */, { 811, -1, 586 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>(T) */, { 811, -1, 580 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>(T) */, { 811, -1, 573 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>(T) */, { 811, -1, 275 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) */, { 811, -1, 712 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(T) */, { 811, -1, 22 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) */, { 811, -1, 165 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) */, { 811, -1, 652 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>(T) */, { 811, -1, 674 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) */, { 811, -1, 292 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Hashtable/bucket>(T) */, { 811, -1, 61 } /* System.Int32 System.Array::InternalArray__IndexOf<System.DateTime>(T) */, { 811, -1, 62 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Decimal>(T) */, { 811, -1, 82 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Double>(T) */, { 811, -1, 228 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Globalization.InternalCodePageDataItem>(T) */, { 811, -1, 229 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Globalization.InternalEncodingDataItem>(T) */, { 811, -1, 96 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Int16>(T) */, { 811, -1, 24 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Int32>(T) */, { 811, -1, 91 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Int32Enum>(T) */, { 811, -1, 30 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Int64>(T) */, { 811, -1, 86 } /* System.Int32 System.Array::InternalArray__IndexOf<System.IntPtr>(T) */, { 811, -1, 150 } /* System.Int32 System.Array::InternalArray__IndexOf<System.ParameterizedStrings/FormatParam>(T) */, { 811, -1, 173 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeNamedArgument>(T) */, { 811, -1, 172 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeTypedArgument>(T) */, { 811, -1, 65 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.ParameterModifier>(T) */, { 811, -1, 167 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Resources.ResourceLocator>(T) */, { 811, -1, 26 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Runtime.CompilerServices.Ephemeron>(T) */, { 811, -1, 109 } /* System.Int32 System.Array::InternalArray__IndexOf<System.SByte>(T) */, { 811, -1, 315 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) */, { 811, -1, 110 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Single>(T) */, { 811, -1, 308 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T) */, { 811, -1, 239 } /* System.Int32 System.Array::InternalArray__IndexOf<System.Threading.CancellationTokenRegistration>(T) */, { 811, -1, 111 } /* System.Int32 System.Array::InternalArray__IndexOf<System.TimeSpan>(T) */, { 811, -1, 135 } /* System.Int32 System.Array::InternalArray__IndexOf<System.UInt16>(T) */, { 811, -1, 35 } /* System.Int32 System.Array::InternalArray__IndexOf<System.UInt32>(T) */, { 811, -1, 83 } /* System.Int32 System.Array::InternalArray__IndexOf<System.UInt64>(T) */, { 811, -1, 324 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.BeforeRenderHelper/OrderBlock>(T) */, { 811, -1, 340 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Color32>(T) */, { 811, -1, 330 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Color>(T) */, { 811, -1, 371 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.ContactPoint>(T) */, { 811, -1, 459 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.EventSystems.RaycastResult>(T) */, { 811, -1, 342 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) */, { 811, -1, 319 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Keyframe>(T) */, { 811, -1, 335 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Matrix4x4>(T) */, { 811, -1, 332 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Plane>(T) */, { 811, -1, 355 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Playables.PlayableBinding>(T) */, { 811, -1, 493 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.RaycastHit2D>(T) */, { 811, -1, 373 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.RaycastHit>(T) */, { 811, -1, 381 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Resolution>(T) */, { 811, -1, 341 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SendMouseEvents/HitInfo>(T) */, { 811, -1, 431 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) */, { 811, -1, 435 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) */, { 811, -1, 498 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UI.ColorBlock>(T) */, { 811, -1, 538 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UI.Navigation>(T) */, { 811, -1, 541 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UI.SpriteState>(T) */, { 811, -1, 384 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UICharInfo>(T) */, { 811, -1, 385 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UILineInfo>(T) */, { 811, -1, 383 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UIVertex>(T) */, { 811, -1, 351 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UnitySynchronizationContext/WorkRequest>(T) */, { 811, -1, 339 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector2>(T) */, { 811, -1, 336 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector3>(T) */, { 811, -1, 338 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector4>(T) */, { 811, -1, 382 } /* System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.WebCamDevice>(T) */, { 811, -1, 619 } /* System.Int32 System.Array::InternalArray__IndexOf<Vuforia.CameraDevice/CameraField>(T) */, { 811, -1, 607 } /* System.Int32 System.Array::InternalArray__IndexOf<Vuforia.EyewearDevice/EyewearCalibrationReading>(T) */, { 811, -1, 609 } /* System.Int32 System.Array::InternalArray__IndexOf<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>(T) */, { 811, -1, 565 } /* System.Int32 System.Array::InternalArray__IndexOf<Vuforia.TargetFinder/TargetSearchResult>(T) */, { 811, -1, 621 } /* System.Int32 System.Array::InternalArray__IndexOf<Vuforia.TrackerData/TrackableResultData>(T) */, { 811, -1, 669 } /* System.Int32 System.Array::InternalArray__IndexOf<Vuforia.TrackerData/VirtualButtonData>(T) */, { 811, -1, 632 } /* System.Int32 System.Array::InternalArray__IndexOf<Vuforia.TrackerData/VuMarkTargetData>(T) */, { 811, -1, 622 } /* System.Int32 System.Array::InternalArray__IndexOf<Vuforia.TrackerData/VuMarkTargetResultData>(T) */, { 811, -1, 608 } /* System.Int32 System.Array::InternalArray__IndexOf<Vuforia.VuforiaManager/TrackableIdPair>(T) */, { 811, -1, 676 } /* System.Int32 System.Array::InternalArray__IndexOf<Vuforia.WebCamProfile/ProfileData>(T) */, { 8877, -1, 91 } /* System.Int32 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCast<System.Int32Enum>(T) */, { 11746, -1, 340 } /* System.Int32 UnityEngine.NoAllocHelpers::SafeLength<UnityEngine.Color32>(System.Collections.Generic.List`1<T>) */, { 11746, -1, 339 } /* System.Int32 UnityEngine.NoAllocHelpers::SafeLength<UnityEngine.Vector2>(System.Collections.Generic.List`1<T>) */, { 11746, -1, 336 } /* System.Int32 UnityEngine.NoAllocHelpers::SafeLength<UnityEngine.Vector3>(System.Collections.Generic.List`1<T>) */, { 11746, -1, 338 } /* System.Int32 UnityEngine.NoAllocHelpers::SafeLength<UnityEngine.Vector4>(System.Collections.Generic.List`1<T>) */, { 8796, -1, 296 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Nullable`1<System.Int32>>(TResult) */, { 8796, -1, 186 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Threading.Tasks.VoidTaskResult>(TResult) */, { 6634, 24, 799 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Int32>::FromAsyncTrim<System.Object,System.IO.Stream/ReadWriteParameters>(TInstance,TArgs,System.Func`5<TInstance,TArgs,System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 6634, 186, 799 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::FromAsyncTrim<System.Object,System.IO.Stream/ReadWriteParameters>(TInstance,TArgs,System.Func`5<TInstance,TArgs,System.AsyncCallback,System.Object,System.IAsyncResult>,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 803, -1, 31 } /* System.Void System.Array::InternalArray__ICollection_Add<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) */, { 803, -1, 47 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Boolean>(T) */, { 803, -1, 8 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Byte>(T) */, { 803, -1, 9 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Char>(T) */, { 803, -1, 27 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.DictionaryEntry>(T) */, { 803, -1, 663 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>(T) */, { 803, -1, 124 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T) */, { 803, -1, 668 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) */, { 803, -1, 614 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>(T) */, { 803, -1, 587 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>(T) */, { 803, -1, 581 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>(T) */, { 803, -1, 574 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>(T) */, { 803, -1, 276 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T) */, { 803, -1, 713 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>(T) */, { 803, -1, 23 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T) */, { 803, -1, 166 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T) */, { 803, -1, 653 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>(T) */, { 803, -1, 675 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) */, { 803, -1, 633 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.HashSet`1/Slot<System.Int32>>(T) */, { 803, -1, 317 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.HashSet`1/Slot<System.Object>>(T) */, { 803, -1, 115 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T) */, { 803, -1, 662 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(T) */, { 803, -1, 123 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) */, { 803, -1, 667 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T) */, { 803, -1, 613 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>(T) */, { 803, -1, 586 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>(T) */, { 803, -1, 580 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>(T) */, { 803, -1, 573 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>(T) */, { 803, -1, 275 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) */, { 803, -1, 712 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(T) */, { 803, -1, 22 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) */, { 803, -1, 165 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T) */, { 803, -1, 652 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>(T) */, { 803, -1, 674 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>(T) */, { 803, -1, 292 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Hashtable/bucket>(T) */, { 803, -1, 61 } /* System.Void System.Array::InternalArray__ICollection_Add<System.DateTime>(T) */, { 803, -1, 62 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Decimal>(T) */, { 803, -1, 82 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Double>(T) */, { 803, -1, 228 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Globalization.InternalCodePageDataItem>(T) */, { 803, -1, 229 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Globalization.InternalEncodingDataItem>(T) */, { 803, -1, 96 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Int16>(T) */, { 803, -1, 24 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Int32>(T) */, { 803, -1, 91 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Int32Enum>(T) */, { 803, -1, 30 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Int64>(T) */, { 803, -1, 86 } /* System.Void System.Array::InternalArray__ICollection_Add<System.IntPtr>(T) */, { 803, -1, 150 } /* System.Void System.Array::InternalArray__ICollection_Add<System.ParameterizedStrings/FormatParam>(T) */, { 803, -1, 173 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeNamedArgument>(T) */, { 803, -1, 172 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeTypedArgument>(T) */, { 803, -1, 65 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.ParameterModifier>(T) */, { 803, -1, 167 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Resources.ResourceLocator>(T) */, { 803, -1, 26 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Runtime.CompilerServices.Ephemeron>(T) */, { 803, -1, 109 } /* System.Void System.Array::InternalArray__ICollection_Add<System.SByte>(T) */, { 803, -1, 315 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) */, { 803, -1, 110 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Single>(T) */, { 803, -1, 308 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T) */, { 803, -1, 239 } /* System.Void System.Array::InternalArray__ICollection_Add<System.Threading.CancellationTokenRegistration>(T) */, { 803, -1, 111 } /* System.Void System.Array::InternalArray__ICollection_Add<System.TimeSpan>(T) */, { 803, -1, 135 } /* System.Void System.Array::InternalArray__ICollection_Add<System.UInt16>(T) */, { 803, -1, 35 } /* System.Void System.Array::InternalArray__ICollection_Add<System.UInt32>(T) */, { 803, -1, 83 } /* System.Void System.Array::InternalArray__ICollection_Add<System.UInt64>(T) */, { 803, -1, 324 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.BeforeRenderHelper/OrderBlock>(T) */, { 803, -1, 340 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Color32>(T) */, { 803, -1, 330 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Color>(T) */, { 803, -1, 371 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.ContactPoint>(T) */, { 803, -1, 459 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.EventSystems.RaycastResult>(T) */, { 803, -1, 342 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T) */, { 803, -1, 319 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Keyframe>(T) */, { 803, -1, 335 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Matrix4x4>(T) */, { 803, -1, 332 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Plane>(T) */, { 803, -1, 355 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Playables.PlayableBinding>(T) */, { 803, -1, 493 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.RaycastHit2D>(T) */, { 803, -1, 373 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.RaycastHit>(T) */, { 803, -1, 381 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Resolution>(T) */, { 803, -1, 341 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SendMouseEvents/HitInfo>(T) */, { 803, -1, 431 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) */, { 803, -1, 435 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) */, { 803, -1, 498 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UI.ColorBlock>(T) */, { 803, -1, 538 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UI.Navigation>(T) */, { 803, -1, 541 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UI.SpriteState>(T) */, { 803, -1, 384 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UICharInfo>(T) */, { 803, -1, 385 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UILineInfo>(T) */, { 803, -1, 383 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UIVertex>(T) */, { 803, -1, 351 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UnitySynchronizationContext/WorkRequest>(T) */, { 803, -1, 339 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector2>(T) */, { 803, -1, 336 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector3>(T) */, { 803, -1, 338 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector4>(T) */, { 803, -1, 382 } /* System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.WebCamDevice>(T) */, { 803, -1, 619 } /* System.Void System.Array::InternalArray__ICollection_Add<Vuforia.CameraDevice/CameraField>(T) */, { 803, -1, 607 } /* System.Void System.Array::InternalArray__ICollection_Add<Vuforia.EyewearDevice/EyewearCalibrationReading>(T) */, { 803, -1, 609 } /* System.Void System.Array::InternalArray__ICollection_Add<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>(T) */, { 803, -1, 565 } /* System.Void System.Array::InternalArray__ICollection_Add<Vuforia.TargetFinder/TargetSearchResult>(T) */, { 803, -1, 621 } /* System.Void System.Array::InternalArray__ICollection_Add<Vuforia.TrackerData/TrackableResultData>(T) */, { 803, -1, 669 } /* System.Void System.Array::InternalArray__ICollection_Add<Vuforia.TrackerData/VirtualButtonData>(T) */, { 803, -1, 632 } /* System.Void System.Array::InternalArray__ICollection_Add<Vuforia.TrackerData/VuMarkTargetData>(T) */, { 803, -1, 622 } /* System.Void System.Array::InternalArray__ICollection_Add<Vuforia.TrackerData/VuMarkTargetResultData>(T) */, { 803, -1, 608 } /* System.Void System.Array::InternalArray__ICollection_Add<Vuforia.VuforiaManager/TrackableIdPair>(T) */, { 803, -1, 676 } /* System.Void System.Array::InternalArray__ICollection_Add<Vuforia.WebCamProfile/ProfileData>(T) */, { 806, -1, 31 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T[],System.Int32) */, { 806, -1, 47 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Boolean>(T[],System.Int32) */, { 806, -1, 8 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Byte>(T[],System.Int32) */, { 806, -1, 9 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Char>(T[],System.Int32) */, { 806, -1, 27 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.DictionaryEntry>(T[],System.Int32) */, { 806, -1, 663 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>(T[],System.Int32) */, { 806, -1, 124 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(T[],System.Int32) */, { 806, -1, 668 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T[],System.Int32) */, { 806, -1, 614 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>(T[],System.Int32) */, { 806, -1, 587 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>(T[],System.Int32) */, { 806, -1, 581 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>(T[],System.Int32) */, { 806, -1, 574 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>(T[],System.Int32) */, { 806, -1, 276 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(T[],System.Int32) */, { 806, -1, 713 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>(T[],System.Int32) */, { 806, -1, 23 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(T[],System.Int32) */, { 806, -1, 166 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(T[],System.Int32) */, { 806, -1, 653 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>(T[],System.Int32) */, { 806, -1, 675 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>(T[],System.Int32) */, { 806, -1, 633 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.HashSet`1/Slot<System.Int32>>(T[],System.Int32) */, { 806, -1, 317 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.HashSet`1/Slot<System.Object>>(T[],System.Int32) */, { 806, -1, 115 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32) */, { 806, -1, 662 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(T[],System.Int32) */, { 806, -1, 123 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T[],System.Int32) */, { 806, -1, 667 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(T[],System.Int32) */, { 806, -1, 613 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>(T[],System.Int32) */, { 806, -1, 586 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>(T[],System.Int32) */, { 806, -1, 580 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>(T[],System.Int32) */, { 806, -1, 573 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>(T[],System.Int32) */, { 806, -1, 275 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T[],System.Int32) */, { 806, -1, 712 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(T[],System.Int32) */, { 806, -1, 22 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T[],System.Int32) */, { 806, -1, 165 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T[],System.Int32) */, { 806, -1, 652 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>(T[],System.Int32) */, { 806, -1, 674 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>(T[],System.Int32) */, { 806, -1, 292 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Hashtable/bucket>(T[],System.Int32) */, { 806, -1, 61 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.DateTime>(T[],System.Int32) */, { 806, -1, 62 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Decimal>(T[],System.Int32) */, { 806, -1, 82 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Double>(T[],System.Int32) */, { 806, -1, 228 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Globalization.InternalCodePageDataItem>(T[],System.Int32) */, { 806, -1, 229 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Globalization.InternalEncodingDataItem>(T[],System.Int32) */, { 806, -1, 96 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int16>(T[],System.Int32) */, { 806, -1, 24 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int32>(T[],System.Int32) */, { 806, -1, 91 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int32Enum>(T[],System.Int32) */, { 806, -1, 30 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int64>(T[],System.Int32) */, { 806, -1, 86 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.IntPtr>(T[],System.Int32) */, { 806, -1, 150 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.ParameterizedStrings/FormatParam>(T[],System.Int32) */, { 806, -1, 173 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.CustomAttributeNamedArgument>(T[],System.Int32) */, { 806, -1, 172 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.CustomAttributeTypedArgument>(T[],System.Int32) */, { 806, -1, 65 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.ParameterModifier>(T[],System.Int32) */, { 806, -1, 167 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Resources.ResourceLocator>(T[],System.Int32) */, { 806, -1, 26 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Runtime.CompilerServices.Ephemeron>(T[],System.Int32) */, { 806, -1, 109 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.SByte>(T[],System.Int32) */, { 806, -1, 315 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T[],System.Int32) */, { 806, -1, 110 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Single>(T[],System.Int32) */, { 806, -1, 308 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(T[],System.Int32) */, { 806, -1, 239 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.Threading.CancellationTokenRegistration>(T[],System.Int32) */, { 806, -1, 111 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.TimeSpan>(T[],System.Int32) */, { 806, -1, 135 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt16>(T[],System.Int32) */, { 806, -1, 35 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt32>(T[],System.Int32) */, { 806, -1, 83 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt64>(T[],System.Int32) */, { 806, -1, 324 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],System.Int32) */, { 806, -1, 340 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Color32>(T[],System.Int32) */, { 806, -1, 330 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Color>(T[],System.Int32) */, { 806, -1, 371 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.ContactPoint>(T[],System.Int32) */, { 806, -1, 459 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.EventSystems.RaycastResult>(T[],System.Int32) */, { 806, -1, 342 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(T[],System.Int32) */, { 806, -1, 319 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Keyframe>(T[],System.Int32) */, { 806, -1, 335 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Matrix4x4>(T[],System.Int32) */, { 806, -1, 332 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Plane>(T[],System.Int32) */, { 806, -1, 355 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Playables.PlayableBinding>(T[],System.Int32) */, { 806, -1, 493 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.RaycastHit2D>(T[],System.Int32) */, { 806, -1, 373 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.RaycastHit>(T[],System.Int32) */, { 806, -1, 381 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Resolution>(T[],System.Int32) */, { 806, -1, 341 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.SendMouseEvents/HitInfo>(T[],System.Int32) */, { 806, -1, 431 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T[],System.Int32) */, { 806, -1, 435 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T[],System.Int32) */, { 806, -1, 498 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UI.ColorBlock>(T[],System.Int32) */, { 806, -1, 538 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UI.Navigation>(T[],System.Int32) */, { 806, -1, 541 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UI.SpriteState>(T[],System.Int32) */, { 806, -1, 384 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UICharInfo>(T[],System.Int32) */, { 806, -1, 385 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UILineInfo>(T[],System.Int32) */, { 806, -1, 383 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UIVertex>(T[],System.Int32) */, { 806, -1, 351 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UnitySynchronizationContext/WorkRequest>(T[],System.Int32) */, { 806, -1, 339 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Vector2>(T[],System.Int32) */, { 806, -1, 336 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Vector3>(T[],System.Int32) */, { 806, -1, 338 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Vector4>(T[],System.Int32) */, { 806, -1, 382 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.WebCamDevice>(T[],System.Int32) */, { 806, -1, 619 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Vuforia.CameraDevice/CameraField>(T[],System.Int32) */, { 806, -1, 607 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Vuforia.EyewearDevice/EyewearCalibrationReading>(T[],System.Int32) */, { 806, -1, 609 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>(T[],System.Int32) */, { 806, -1, 565 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Vuforia.TargetFinder/TargetSearchResult>(T[],System.Int32) */, { 806, -1, 621 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Vuforia.TrackerData/TrackableResultData>(T[],System.Int32) */, { 806, -1, 669 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Vuforia.TrackerData/VirtualButtonData>(T[],System.Int32) */, { 806, -1, 632 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Vuforia.TrackerData/VuMarkTargetData>(T[],System.Int32) */, { 806, -1, 622 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Vuforia.TrackerData/VuMarkTargetResultData>(T[],System.Int32) */, { 806, -1, 608 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Vuforia.VuforiaManager/TrackableIdPair>(T[],System.Int32) */, { 806, -1, 676 } /* System.Void System.Array::InternalArray__ICollection_CopyTo<Vuforia.WebCamProfile/ProfileData>(T[],System.Int32) */, { 809, -1, 31 } /* System.Void System.Array::InternalArray__Insert<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32,T) */, { 809, -1, 47 } /* System.Void System.Array::InternalArray__Insert<System.Boolean>(System.Int32,T) */, { 809, -1, 8 } /* System.Void System.Array::InternalArray__Insert<System.Byte>(System.Int32,T) */, { 809, -1, 9 } /* System.Void System.Array::InternalArray__Insert<System.Char>(System.Int32,T) */, { 809, -1, 27 } /* System.Void System.Array::InternalArray__Insert<System.Collections.DictionaryEntry>(System.Int32,T) */, { 809, -1, 663 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>(System.Int32,T) */, { 809, -1, 124 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(System.Int32,T) */, { 809, -1, 668 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(System.Int32,T) */, { 809, -1, 614 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>(System.Int32,T) */, { 809, -1, 587 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>(System.Int32,T) */, { 809, -1, 581 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>(System.Int32,T) */, { 809, -1, 574 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>(System.Int32,T) */, { 809, -1, 276 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(System.Int32,T) */, { 809, -1, 713 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>(System.Int32,T) */, { 809, -1, 23 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(System.Int32,T) */, { 809, -1, 166 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) */, { 809, -1, 653 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>(System.Int32,T) */, { 809, -1, 675 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>(System.Int32,T) */, { 809, -1, 633 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.HashSet`1/Slot<System.Int32>>(System.Int32,T) */, { 809, -1, 317 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.HashSet`1/Slot<System.Object>>(System.Int32,T) */, { 809, -1, 115 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32,T) */, { 809, -1, 662 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(System.Int32,T) */, { 809, -1, 123 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32,T) */, { 809, -1, 667 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(System.Int32,T) */, { 809, -1, 613 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>(System.Int32,T) */, { 809, -1, 586 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>(System.Int32,T) */, { 809, -1, 580 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>(System.Int32,T) */, { 809, -1, 573 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>(System.Int32,T) */, { 809, -1, 275 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32,T) */, { 809, -1, 712 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(System.Int32,T) */, { 809, -1, 22 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32,T) */, { 809, -1, 165 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) */, { 809, -1, 652 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>(System.Int32,T) */, { 809, -1, 674 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>(System.Int32,T) */, { 809, -1, 292 } /* System.Void System.Array::InternalArray__Insert<System.Collections.Hashtable/bucket>(System.Int32,T) */, { 809, -1, 61 } /* System.Void System.Array::InternalArray__Insert<System.DateTime>(System.Int32,T) */, { 809, -1, 62 } /* System.Void System.Array::InternalArray__Insert<System.Decimal>(System.Int32,T) */, { 809, -1, 82 } /* System.Void System.Array::InternalArray__Insert<System.Double>(System.Int32,T) */, { 809, -1, 228 } /* System.Void System.Array::InternalArray__Insert<System.Globalization.InternalCodePageDataItem>(System.Int32,T) */, { 809, -1, 229 } /* System.Void System.Array::InternalArray__Insert<System.Globalization.InternalEncodingDataItem>(System.Int32,T) */, { 809, -1, 96 } /* System.Void System.Array::InternalArray__Insert<System.Int16>(System.Int32,T) */, { 809, -1, 24 } /* System.Void System.Array::InternalArray__Insert<System.Int32>(System.Int32,T) */, { 809, -1, 91 } /* System.Void System.Array::InternalArray__Insert<System.Int32Enum>(System.Int32,T) */, { 809, -1, 30 } /* System.Void System.Array::InternalArray__Insert<System.Int64>(System.Int32,T) */, { 809, -1, 86 } /* System.Void System.Array::InternalArray__Insert<System.IntPtr>(System.Int32,T) */, { 809, -1, 150 } /* System.Void System.Array::InternalArray__Insert<System.ParameterizedStrings/FormatParam>(System.Int32,T) */, { 809, -1, 173 } /* System.Void System.Array::InternalArray__Insert<System.Reflection.CustomAttributeNamedArgument>(System.Int32,T) */, { 809, -1, 172 } /* System.Void System.Array::InternalArray__Insert<System.Reflection.CustomAttributeTypedArgument>(System.Int32,T) */, { 809, -1, 65 } /* System.Void System.Array::InternalArray__Insert<System.Reflection.ParameterModifier>(System.Int32,T) */, { 809, -1, 167 } /* System.Void System.Array::InternalArray__Insert<System.Resources.ResourceLocator>(System.Int32,T) */, { 809, -1, 26 } /* System.Void System.Array::InternalArray__Insert<System.Runtime.CompilerServices.Ephemeron>(System.Int32,T) */, { 809, -1, 109 } /* System.Void System.Array::InternalArray__Insert<System.SByte>(System.Int32,T) */, { 809, -1, 315 } /* System.Void System.Array::InternalArray__Insert<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32,T) */, { 809, -1, 110 } /* System.Void System.Array::InternalArray__Insert<System.Single>(System.Int32,T) */, { 809, -1, 308 } /* System.Void System.Array::InternalArray__Insert<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(System.Int32,T) */, { 809, -1, 239 } /* System.Void System.Array::InternalArray__Insert<System.Threading.CancellationTokenRegistration>(System.Int32,T) */, { 809, -1, 111 } /* System.Void System.Array::InternalArray__Insert<System.TimeSpan>(System.Int32,T) */, { 809, -1, 135 } /* System.Void System.Array::InternalArray__Insert<System.UInt16>(System.Int32,T) */, { 809, -1, 35 } /* System.Void System.Array::InternalArray__Insert<System.UInt32>(System.Int32,T) */, { 809, -1, 83 } /* System.Void System.Array::InternalArray__Insert<System.UInt64>(System.Int32,T) */, { 809, -1, 324 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Int32,T) */, { 809, -1, 340 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Color32>(System.Int32,T) */, { 809, -1, 330 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Color>(System.Int32,T) */, { 809, -1, 371 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.ContactPoint>(System.Int32,T) */, { 809, -1, 459 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.EventSystems.RaycastResult>(System.Int32,T) */, { 809, -1, 342 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32,T) */, { 809, -1, 319 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Keyframe>(System.Int32,T) */, { 809, -1, 335 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Matrix4x4>(System.Int32,T) */, { 809, -1, 332 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Plane>(System.Int32,T) */, { 809, -1, 355 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Playables.PlayableBinding>(System.Int32,T) */, { 809, -1, 493 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.RaycastHit2D>(System.Int32,T) */, { 809, -1, 373 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.RaycastHit>(System.Int32,T) */, { 809, -1, 381 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Resolution>(System.Int32,T) */, { 809, -1, 341 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.SendMouseEvents/HitInfo>(System.Int32,T) */, { 809, -1, 431 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32,T) */, { 809, -1, 435 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32,T) */, { 809, -1, 498 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.UI.ColorBlock>(System.Int32,T) */, { 809, -1, 538 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.UI.Navigation>(System.Int32,T) */, { 809, -1, 541 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.UI.SpriteState>(System.Int32,T) */, { 809, -1, 384 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.UICharInfo>(System.Int32,T) */, { 809, -1, 385 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.UILineInfo>(System.Int32,T) */, { 809, -1, 383 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.UIVertex>(System.Int32,T) */, { 809, -1, 351 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.UnitySynchronizationContext/WorkRequest>(System.Int32,T) */, { 809, -1, 339 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Vector2>(System.Int32,T) */, { 809, -1, 336 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Vector3>(System.Int32,T) */, { 809, -1, 338 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.Vector4>(System.Int32,T) */, { 809, -1, 382 } /* System.Void System.Array::InternalArray__Insert<UnityEngine.WebCamDevice>(System.Int32,T) */, { 809, -1, 619 } /* System.Void System.Array::InternalArray__Insert<Vuforia.CameraDevice/CameraField>(System.Int32,T) */, { 809, -1, 607 } /* System.Void System.Array::InternalArray__Insert<Vuforia.EyewearDevice/EyewearCalibrationReading>(System.Int32,T) */, { 809, -1, 609 } /* System.Void System.Array::InternalArray__Insert<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>(System.Int32,T) */, { 809, -1, 565 } /* System.Void System.Array::InternalArray__Insert<Vuforia.TargetFinder/TargetSearchResult>(System.Int32,T) */, { 809, -1, 621 } /* System.Void System.Array::InternalArray__Insert<Vuforia.TrackerData/TrackableResultData>(System.Int32,T) */, { 809, -1, 669 } /* System.Void System.Array::InternalArray__Insert<Vuforia.TrackerData/VirtualButtonData>(System.Int32,T) */, { 809, -1, 632 } /* System.Void System.Array::InternalArray__Insert<Vuforia.TrackerData/VuMarkTargetData>(System.Int32,T) */, { 809, -1, 622 } /* System.Void System.Array::InternalArray__Insert<Vuforia.TrackerData/VuMarkTargetResultData>(System.Int32,T) */, { 809, -1, 608 } /* System.Void System.Array::InternalArray__Insert<Vuforia.VuforiaManager/TrackableIdPair>(System.Int32,T) */, { 809, -1, 676 } /* System.Void System.Array::InternalArray__Insert<Vuforia.WebCamProfile/ProfileData>(System.Int32,T) */, { 813, -1, 31 } /* System.Void System.Array::InternalArray__set_Item<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32,T) */, { 813, -1, 47 } /* System.Void System.Array::InternalArray__set_Item<System.Boolean>(System.Int32,T) */, { 813, -1, 8 } /* System.Void System.Array::InternalArray__set_Item<System.Byte>(System.Int32,T) */, { 813, -1, 9 } /* System.Void System.Array::InternalArray__set_Item<System.Char>(System.Int32,T) */, { 813, -1, 27 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.DictionaryEntry>(System.Int32,T) */, { 813, -1, 663 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>(System.Int32,T) */, { 813, -1, 124 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(System.Int32,T) */, { 813, -1, 668 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(System.Int32,T) */, { 813, -1, 614 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>(System.Int32,T) */, { 813, -1, 587 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>(System.Int32,T) */, { 813, -1, 581 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>(System.Int32,T) */, { 813, -1, 574 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>(System.Int32,T) */, { 813, -1, 276 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(System.Int32,T) */, { 813, -1, 713 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>(System.Int32,T) */, { 813, -1, 23 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(System.Int32,T) */, { 813, -1, 166 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) */, { 813, -1, 653 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>(System.Int32,T) */, { 813, -1, 675 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>(System.Int32,T) */, { 813, -1, 633 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.HashSet`1/Slot<System.Int32>>(System.Int32,T) */, { 813, -1, 317 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.HashSet`1/Slot<System.Object>>(System.Int32,T) */, { 813, -1, 115 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32,T) */, { 813, -1, 662 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(System.Int32,T) */, { 813, -1, 123 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32,T) */, { 813, -1, 667 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(System.Int32,T) */, { 813, -1, 613 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>(System.Int32,T) */, { 813, -1, 586 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>(System.Int32,T) */, { 813, -1, 580 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>(System.Int32,T) */, { 813, -1, 573 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>(System.Int32,T) */, { 813, -1, 275 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32,T) */, { 813, -1, 712 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(System.Int32,T) */, { 813, -1, 22 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32,T) */, { 813, -1, 165 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32,T) */, { 813, -1, 652 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>(System.Int32,T) */, { 813, -1, 674 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>(System.Int32,T) */, { 813, -1, 292 } /* System.Void System.Array::InternalArray__set_Item<System.Collections.Hashtable/bucket>(System.Int32,T) */, { 813, -1, 61 } /* System.Void System.Array::InternalArray__set_Item<System.DateTime>(System.Int32,T) */, { 813, -1, 62 } /* System.Void System.Array::InternalArray__set_Item<System.Decimal>(System.Int32,T) */, { 813, -1, 82 } /* System.Void System.Array::InternalArray__set_Item<System.Double>(System.Int32,T) */, { 813, -1, 228 } /* System.Void System.Array::InternalArray__set_Item<System.Globalization.InternalCodePageDataItem>(System.Int32,T) */, { 813, -1, 229 } /* System.Void System.Array::InternalArray__set_Item<System.Globalization.InternalEncodingDataItem>(System.Int32,T) */, { 813, -1, 96 } /* System.Void System.Array::InternalArray__set_Item<System.Int16>(System.Int32,T) */, { 813, -1, 24 } /* System.Void System.Array::InternalArray__set_Item<System.Int32>(System.Int32,T) */, { 813, -1, 91 } /* System.Void System.Array::InternalArray__set_Item<System.Int32Enum>(System.Int32,T) */, { 813, -1, 30 } /* System.Void System.Array::InternalArray__set_Item<System.Int64>(System.Int32,T) */, { 813, -1, 86 } /* System.Void System.Array::InternalArray__set_Item<System.IntPtr>(System.Int32,T) */, { 813, -1, 150 } /* System.Void System.Array::InternalArray__set_Item<System.ParameterizedStrings/FormatParam>(System.Int32,T) */, { 813, -1, 173 } /* System.Void System.Array::InternalArray__set_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32,T) */, { 813, -1, 172 } /* System.Void System.Array::InternalArray__set_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32,T) */, { 813, -1, 65 } /* System.Void System.Array::InternalArray__set_Item<System.Reflection.ParameterModifier>(System.Int32,T) */, { 813, -1, 167 } /* System.Void System.Array::InternalArray__set_Item<System.Resources.ResourceLocator>(System.Int32,T) */, { 813, -1, 26 } /* System.Void System.Array::InternalArray__set_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32,T) */, { 813, -1, 109 } /* System.Void System.Array::InternalArray__set_Item<System.SByte>(System.Int32,T) */, { 813, -1, 315 } /* System.Void System.Array::InternalArray__set_Item<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32,T) */, { 813, -1, 110 } /* System.Void System.Array::InternalArray__set_Item<System.Single>(System.Int32,T) */, { 813, -1, 308 } /* System.Void System.Array::InternalArray__set_Item<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(System.Int32,T) */, { 813, -1, 239 } /* System.Void System.Array::InternalArray__set_Item<System.Threading.CancellationTokenRegistration>(System.Int32,T) */, { 813, -1, 111 } /* System.Void System.Array::InternalArray__set_Item<System.TimeSpan>(System.Int32,T) */, { 813, -1, 135 } /* System.Void System.Array::InternalArray__set_Item<System.UInt16>(System.Int32,T) */, { 813, -1, 35 } /* System.Void System.Array::InternalArray__set_Item<System.UInt32>(System.Int32,T) */, { 813, -1, 83 } /* System.Void System.Array::InternalArray__set_Item<System.UInt64>(System.Int32,T) */, { 813, -1, 324 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Int32,T) */, { 813, -1, 340 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Color32>(System.Int32,T) */, { 813, -1, 330 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Color>(System.Int32,T) */, { 813, -1, 371 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.ContactPoint>(System.Int32,T) */, { 813, -1, 459 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.EventSystems.RaycastResult>(System.Int32,T) */, { 813, -1, 342 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32,T) */, { 813, -1, 319 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Keyframe>(System.Int32,T) */, { 813, -1, 335 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Matrix4x4>(System.Int32,T) */, { 813, -1, 332 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Plane>(System.Int32,T) */, { 813, -1, 355 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Playables.PlayableBinding>(System.Int32,T) */, { 813, -1, 493 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.RaycastHit2D>(System.Int32,T) */, { 813, -1, 373 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.RaycastHit>(System.Int32,T) */, { 813, -1, 381 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Resolution>(System.Int32,T) */, { 813, -1, 341 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.SendMouseEvents/HitInfo>(System.Int32,T) */, { 813, -1, 431 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32,T) */, { 813, -1, 435 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32,T) */, { 813, -1, 498 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.UI.ColorBlock>(System.Int32,T) */, { 813, -1, 538 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.UI.Navigation>(System.Int32,T) */, { 813, -1, 541 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.UI.SpriteState>(System.Int32,T) */, { 813, -1, 384 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.UICharInfo>(System.Int32,T) */, { 813, -1, 385 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.UILineInfo>(System.Int32,T) */, { 813, -1, 383 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.UIVertex>(System.Int32,T) */, { 813, -1, 351 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.UnitySynchronizationContext/WorkRequest>(System.Int32,T) */, { 813, -1, 339 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Vector2>(System.Int32,T) */, { 813, -1, 336 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Vector3>(System.Int32,T) */, { 813, -1, 338 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.Vector4>(System.Int32,T) */, { 813, -1, 382 } /* System.Void System.Array::InternalArray__set_Item<UnityEngine.WebCamDevice>(System.Int32,T) */, { 813, -1, 619 } /* System.Void System.Array::InternalArray__set_Item<Vuforia.CameraDevice/CameraField>(System.Int32,T) */, { 813, -1, 607 } /* System.Void System.Array::InternalArray__set_Item<Vuforia.EyewearDevice/EyewearCalibrationReading>(System.Int32,T) */, { 813, -1, 609 } /* System.Void System.Array::InternalArray__set_Item<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>(System.Int32,T) */, { 813, -1, 565 } /* System.Void System.Array::InternalArray__set_Item<Vuforia.TargetFinder/TargetSearchResult>(System.Int32,T) */, { 813, -1, 621 } /* System.Void System.Array::InternalArray__set_Item<Vuforia.TrackerData/TrackableResultData>(System.Int32,T) */, { 813, -1, 669 } /* System.Void System.Array::InternalArray__set_Item<Vuforia.TrackerData/VirtualButtonData>(System.Int32,T) */, { 813, -1, 632 } /* System.Void System.Array::InternalArray__set_Item<Vuforia.TrackerData/VuMarkTargetData>(System.Int32,T) */, { 813, -1, 622 } /* System.Void System.Array::InternalArray__set_Item<Vuforia.TrackerData/VuMarkTargetResultData>(System.Int32,T) */, { 813, -1, 608 } /* System.Void System.Array::InternalArray__set_Item<Vuforia.VuforiaManager/TrackableIdPair>(System.Int32,T) */, { 813, -1, 676 } /* System.Void System.Array::InternalArray__set_Item<Vuforia.WebCamProfile/ProfileData>(System.Int32,T) */, { 762, -1, 115 } /* System.Void System.Array::Reverse<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32,System.Int32) */, { 762, -1, 24 } /* System.Void System.Array::Reverse<System.Int32>(T[],System.Int32,System.Int32) */, { 762, -1, 91 } /* System.Void System.Array::Reverse<System.Int32Enum>(T[],System.Int32,System.Int32) */, { 762, -1, 324 } /* System.Void System.Array::Reverse<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],System.Int32,System.Int32) */, { 762, -1, 340 } /* System.Void System.Array::Reverse<UnityEngine.Color32>(T[],System.Int32,System.Int32) */, { 762, -1, 459 } /* System.Void System.Array::Reverse<UnityEngine.EventSystems.RaycastResult>(T[],System.Int32,System.Int32) */, { 762, -1, 384 } /* System.Void System.Array::Reverse<UnityEngine.UICharInfo>(T[],System.Int32,System.Int32) */, { 762, -1, 385 } /* System.Void System.Array::Reverse<UnityEngine.UILineInfo>(T[],System.Int32,System.Int32) */, { 762, -1, 383 } /* System.Void System.Array::Reverse<UnityEngine.UIVertex>(T[],System.Int32,System.Int32) */, { 762, -1, 339 } /* System.Void System.Array::Reverse<UnityEngine.Vector2>(T[],System.Int32,System.Int32) */, { 762, -1, 336 } /* System.Void System.Array::Reverse<UnityEngine.Vector3>(T[],System.Int32,System.Int32) */, { 762, -1, 338 } /* System.Void System.Array::Reverse<UnityEngine.Vector4>(T[],System.Int32,System.Int32) */, { 762, -1, 619 } /* System.Void System.Array::Reverse<Vuforia.CameraDevice/CameraField>(T[],System.Int32,System.Int32) */, { 762, -1, 565 } /* System.Void System.Array::Reverse<Vuforia.TargetFinder/TargetSearchResult>(T[],System.Int32,System.Int32) */, { 762, -1, 621 } /* System.Void System.Array::Reverse<Vuforia.TrackerData/TrackableResultData>(T[],System.Int32,System.Int32) */, { 762, -1, 632 } /* System.Void System.Array::Reverse<Vuforia.TrackerData/VuMarkTargetData>(T[],System.Int32,System.Int32) */, { 762, -1, 622 } /* System.Void System.Array::Reverse<Vuforia.TrackerData/VuMarkTargetResultData>(T[],System.Int32,System.Int32) */, { 762, -1, 608 } /* System.Void System.Array::Reverse<Vuforia.VuforiaManager/TrackableIdPair>(T[],System.Int32,System.Int32) */, { 778, -1, 115 } /* System.Void System.Array::Sort<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 24 } /* System.Void System.Array::Sort<System.Int32>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 91 } /* System.Void System.Array::Sort<System.Int32Enum>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 782, -1, 84 } /* System.Void System.Array::Sort<System.UInt64,System.Object>(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>) */, { 783, -1, 84 } /* System.Void System.Array::Sort<System.UInt64,System.Object>(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 778, -1, 83 } /* System.Void System.Array::Sort<System.UInt64>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 324 } /* System.Void System.Array::Sort<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 340 } /* System.Void System.Array::Sort<UnityEngine.Color32>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 459 } /* System.Void System.Array::Sort<UnityEngine.EventSystems.RaycastResult>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 384 } /* System.Void System.Array::Sort<UnityEngine.UICharInfo>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 385 } /* System.Void System.Array::Sort<UnityEngine.UILineInfo>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 383 } /* System.Void System.Array::Sort<UnityEngine.UIVertex>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 339 } /* System.Void System.Array::Sort<UnityEngine.Vector2>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 336 } /* System.Void System.Array::Sort<UnityEngine.Vector3>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 338 } /* System.Void System.Array::Sort<UnityEngine.Vector4>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 619 } /* System.Void System.Array::Sort<Vuforia.CameraDevice/CameraField>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 565 } /* System.Void System.Array::Sort<Vuforia.TargetFinder/TargetSearchResult>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 621 } /* System.Void System.Array::Sort<Vuforia.TrackerData/TrackableResultData>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 632 } /* System.Void System.Array::Sort<Vuforia.TrackerData/VuMarkTargetData>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 622 } /* System.Void System.Array::Sort<Vuforia.TrackerData/VuMarkTargetResultData>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 608 } /* System.Void System.Array::Sort<Vuforia.VuforiaManager/TrackableIdPair>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 8788, 47, 800 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31>(TAwaiter&,TStateMachine&) */, { 8788, 24, 801 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(TAwaiter&,TStateMachine&) */, { 8788, 0, 729 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TAwaiter&,TStateMachine&) */, { 8786, 0, 723 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(TStateMachine&) */, { 8788, 186, 21 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Object,System.Object>(TAwaiter&,TStateMachine&) */, { 8788, 186, 728 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&) */, { 8788, 186, 734 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(TAwaiter&,TStateMachine&) */, { 8788, 186, 727 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(TAwaiter&,TStateMachine&) */, { 680, -1, 115 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Object,System.ExceptionArgument) */, { 680, -1, 24 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Int32>(System.Object,System.ExceptionArgument) */, { 680, -1, 91 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<System.Int32Enum>(System.Object,System.ExceptionArgument) */, { 680, -1, 324 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Object,System.ExceptionArgument) */, { 680, -1, 340 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.Color32>(System.Object,System.ExceptionArgument) */, { 680, -1, 459 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.EventSystems.RaycastResult>(System.Object,System.ExceptionArgument) */, { 680, -1, 384 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.UICharInfo>(System.Object,System.ExceptionArgument) */, { 680, -1, 385 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.UILineInfo>(System.Object,System.ExceptionArgument) */, { 680, -1, 383 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.UIVertex>(System.Object,System.ExceptionArgument) */, { 680, -1, 339 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.Vector2>(System.Object,System.ExceptionArgument) */, { 680, -1, 336 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.Vector3>(System.Object,System.ExceptionArgument) */, { 680, -1, 338 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<UnityEngine.Vector4>(System.Object,System.ExceptionArgument) */, { 680, -1, 619 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<Vuforia.CameraDevice/CameraField>(System.Object,System.ExceptionArgument) */, { 680, -1, 565 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<Vuforia.TargetFinder/TargetSearchResult>(System.Object,System.ExceptionArgument) */, { 680, -1, 621 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<Vuforia.TrackerData/TrackableResultData>(System.Object,System.ExceptionArgument) */, { 680, -1, 632 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<Vuforia.TrackerData/VuMarkTargetData>(System.Object,System.ExceptionArgument) */, { 680, -1, 622 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<Vuforia.TrackerData/VuMarkTargetResultData>(System.Object,System.ExceptionArgument) */, { 680, -1, 608 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<Vuforia.VuforiaManager/TrackableIdPair>(System.Object,System.ExceptionArgument) */, { 12251, -1, 24 } /* System.Void UnityEngine.Assertions.Assert::AreEqual<System.Int32>(T,T,System.String,System.Collections.Generic.IEqualityComparer`1<T>) */, { 11316, -1, 328 } /* System.Void UnityEngine.GameObject::GetComponents<UnityEngine.Component>(System.Collections.Generic.List`1<!!0>) */, { 12077, -1, 47 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Boolean>(System.Object) */, { 12077, -1, 24 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Int32>(System.Object) */, { 12077, -1, 110 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<System.Single>(System.Object) */, { 12077, -1, 330 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<UnityEngine.Color>(System.Object) */, { 12077, -1, 339 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<UnityEngine.Vector2>(System.Object) */, { 11671, -1, 339 } /* System.Void UnityEngine.Mesh::SetListForChannel<UnityEngine.Vector2>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh/InternalVertexChannelType,System.Int32,System.Collections.Generic.List`1<T>) */, { 14943, -1, 91 } /* System.Void UnityEngine.UI.LayoutGroup::SetProperty<System.Int32Enum>(T&,T) */, { 15714, -1, 91 } /* System.Void Vuforia.DelegateHelper::InvokeWithExceptionHandling<System.Int32Enum>(System.Action`1<T>,T) */, { 807, -1, 31 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32) */, { 807, -1, 47 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Boolean>(System.Int32) */, { 807, -1, 8 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Byte>(System.Int32) */, { 807, -1, 9 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Char>(System.Int32) */, { 807, -1, 27 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.DictionaryEntry>(System.Int32) */, { 807, -1, 663 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>(System.Int32) */, { 807, -1, 124 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(System.Int32) */, { 807, -1, 668 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(System.Int32) */, { 807, -1, 614 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>(System.Int32) */, { 807, -1, 587 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>(System.Int32) */, { 807, -1, 581 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>(System.Int32) */, { 807, -1, 574 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>(System.Int32) */, { 807, -1, 276 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(System.Int32) */, { 807, -1, 713 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>(System.Int32) */, { 807, -1, 23 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(System.Int32) */, { 807, -1, 166 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32) */, { 807, -1, 653 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>(System.Int32) */, { 807, -1, 675 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>(System.Int32) */, { 807, -1, 633 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.HashSet`1/Slot<System.Int32>>(System.Int32) */, { 807, -1, 317 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.HashSet`1/Slot<System.Object>>(System.Int32) */, { 807, -1, 115 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32) */, { 807, -1, 662 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(System.Int32) */, { 807, -1, 123 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32) */, { 807, -1, 667 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(System.Int32) */, { 807, -1, 613 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>(System.Int32) */, { 807, -1, 586 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>(System.Int32) */, { 807, -1, 580 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>(System.Int32) */, { 807, -1, 573 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>(System.Int32) */, { 807, -1, 275 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32) */, { 807, -1, 712 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(System.Int32) */, { 807, -1, 22 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32) */, { 807, -1, 165 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32) */, { 807, -1, 652 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>(System.Int32) */, { 807, -1, 674 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>(System.Int32) */, { 807, -1, 292 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Collections.Hashtable/bucket>(System.Int32) */, { 807, -1, 61 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.DateTime>(System.Int32) */, { 807, -1, 62 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Decimal>(System.Int32) */, { 807, -1, 82 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Double>(System.Int32) */, { 807, -1, 228 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Globalization.InternalCodePageDataItem>(System.Int32) */, { 807, -1, 229 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Globalization.InternalEncodingDataItem>(System.Int32) */, { 807, -1, 96 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int16>(System.Int32) */, { 807, -1, 24 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int32>(System.Int32) */, { 807, -1, 91 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int32Enum>(System.Int32) */, { 807, -1, 30 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Int64>(System.Int32) */, { 807, -1, 86 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.IntPtr>(System.Int32) */, { 807, -1, 150 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.ParameterizedStrings/FormatParam>(System.Int32) */, { 807, -1, 173 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32) */, { 807, -1, 172 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32) */, { 807, -1, 65 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Reflection.ParameterModifier>(System.Int32) */, { 807, -1, 167 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Resources.ResourceLocator>(System.Int32) */, { 807, -1, 26 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32) */, { 807, -1, 109 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.SByte>(System.Int32) */, { 807, -1, 315 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32) */, { 807, -1, 110 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Single>(System.Int32) */, { 807, -1, 308 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(System.Int32) */, { 807, -1, 239 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.Threading.CancellationTokenRegistration>(System.Int32) */, { 807, -1, 111 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.TimeSpan>(System.Int32) */, { 807, -1, 135 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt16>(System.Int32) */, { 807, -1, 35 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt32>(System.Int32) */, { 807, -1, 83 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<System.UInt64>(System.Int32) */, { 807, -1, 324 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Int32) */, { 807, -1, 340 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Color32>(System.Int32) */, { 807, -1, 330 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Color>(System.Int32) */, { 807, -1, 371 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.ContactPoint>(System.Int32) */, { 807, -1, 459 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.EventSystems.RaycastResult>(System.Int32) */, { 807, -1, 342 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32) */, { 807, -1, 319 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Keyframe>(System.Int32) */, { 807, -1, 335 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Matrix4x4>(System.Int32) */, { 807, -1, 332 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Plane>(System.Int32) */, { 807, -1, 355 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Playables.PlayableBinding>(System.Int32) */, { 807, -1, 493 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.RaycastHit2D>(System.Int32) */, { 807, -1, 373 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.RaycastHit>(System.Int32) */, { 807, -1, 381 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Resolution>(System.Int32) */, { 807, -1, 341 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SendMouseEvents/HitInfo>(System.Int32) */, { 807, -1, 431 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32) */, { 807, -1, 435 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32) */, { 807, -1, 498 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UI.ColorBlock>(System.Int32) */, { 807, -1, 538 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UI.Navigation>(System.Int32) */, { 807, -1, 541 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UI.SpriteState>(System.Int32) */, { 807, -1, 384 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UICharInfo>(System.Int32) */, { 807, -1, 385 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UILineInfo>(System.Int32) */, { 807, -1, 383 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UIVertex>(System.Int32) */, { 807, -1, 351 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.UnitySynchronizationContext/WorkRequest>(System.Int32) */, { 807, -1, 339 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Vector2>(System.Int32) */, { 807, -1, 336 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Vector3>(System.Int32) */, { 807, -1, 338 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.Vector4>(System.Int32) */, { 807, -1, 382 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<UnityEngine.WebCamDevice>(System.Int32) */, { 807, -1, 619 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Vuforia.CameraDevice/CameraField>(System.Int32) */, { 807, -1, 607 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Vuforia.EyewearDevice/EyewearCalibrationReading>(System.Int32) */, { 807, -1, 609 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>(System.Int32) */, { 807, -1, 565 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Vuforia.TargetFinder/TargetSearchResult>(System.Int32) */, { 807, -1, 621 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Vuforia.TrackerData/TrackableResultData>(System.Int32) */, { 807, -1, 669 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Vuforia.TrackerData/VirtualButtonData>(System.Int32) */, { 807, -1, 632 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Vuforia.TrackerData/VuMarkTargetData>(System.Int32) */, { 807, -1, 622 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Vuforia.TrackerData/VuMarkTargetResultData>(System.Int32) */, { 807, -1, 608 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Vuforia.VuforiaManager/TrackableIdPair>(System.Int32) */, { 807, -1, 676 } /* T System.Array::InternalArray__IReadOnlyList_get_Item<Vuforia.WebCamProfile/ProfileData>(System.Int32) */, { 812, -1, 31 } /* T System.Array::InternalArray__get_Item<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32) */, { 812, -1, 47 } /* T System.Array::InternalArray__get_Item<System.Boolean>(System.Int32) */, { 812, -1, 8 } /* T System.Array::InternalArray__get_Item<System.Byte>(System.Int32) */, { 812, -1, 9 } /* T System.Array::InternalArray__get_Item<System.Char>(System.Int32) */, { 812, -1, 27 } /* T System.Array::InternalArray__get_Item<System.Collections.DictionaryEntry>(System.Int32) */, { 812, -1, 663 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>(System.Int32) */, { 812, -1, 124 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>(System.Int32) */, { 812, -1, 668 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(System.Int32) */, { 812, -1, 614 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>(System.Int32) */, { 812, -1, 587 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>(System.Int32) */, { 812, -1, 581 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>(System.Int32) */, { 812, -1, 574 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>(System.Int32) */, { 812, -1, 276 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>(System.Int32) */, { 812, -1, 713 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>(System.Int32) */, { 812, -1, 23 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>(System.Int32) */, { 812, -1, 166 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>(System.Int32) */, { 812, -1, 653 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>(System.Int32) */, { 812, -1, 675 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>(System.Int32) */, { 812, -1, 633 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.HashSet`1/Slot<System.Int32>>(System.Int32) */, { 812, -1, 317 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.HashSet`1/Slot<System.Object>>(System.Int32) */, { 812, -1, 115 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32) */, { 812, -1, 662 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(System.Int32) */, { 812, -1, 123 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32) */, { 812, -1, 667 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>(System.Int32) */, { 812, -1, 613 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>(System.Int32) */, { 812, -1, 586 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>(System.Int32) */, { 812, -1, 580 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>(System.Int32) */, { 812, -1, 573 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>(System.Int32) */, { 812, -1, 275 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32) */, { 812, -1, 712 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(System.Int32) */, { 812, -1, 22 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32) */, { 812, -1, 165 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(System.Int32) */, { 812, -1, 652 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>(System.Int32) */, { 812, -1, 674 } /* T System.Array::InternalArray__get_Item<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>(System.Int32) */, { 812, -1, 292 } /* T System.Array::InternalArray__get_Item<System.Collections.Hashtable/bucket>(System.Int32) */, { 812, -1, 61 } /* T System.Array::InternalArray__get_Item<System.DateTime>(System.Int32) */, { 812, -1, 62 } /* T System.Array::InternalArray__get_Item<System.Decimal>(System.Int32) */, { 812, -1, 82 } /* T System.Array::InternalArray__get_Item<System.Double>(System.Int32) */, { 812, -1, 228 } /* T System.Array::InternalArray__get_Item<System.Globalization.InternalCodePageDataItem>(System.Int32) */, { 812, -1, 229 } /* T System.Array::InternalArray__get_Item<System.Globalization.InternalEncodingDataItem>(System.Int32) */, { 812, -1, 96 } /* T System.Array::InternalArray__get_Item<System.Int16>(System.Int32) */, { 812, -1, 24 } /* T System.Array::InternalArray__get_Item<System.Int32>(System.Int32) */, { 812, -1, 91 } /* T System.Array::InternalArray__get_Item<System.Int32Enum>(System.Int32) */, { 812, -1, 30 } /* T System.Array::InternalArray__get_Item<System.Int64>(System.Int32) */, { 812, -1, 86 } /* T System.Array::InternalArray__get_Item<System.IntPtr>(System.Int32) */, { 812, -1, 150 } /* T System.Array::InternalArray__get_Item<System.ParameterizedStrings/FormatParam>(System.Int32) */, { 812, -1, 173 } /* T System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeNamedArgument>(System.Int32) */, { 812, -1, 172 } /* T System.Array::InternalArray__get_Item<System.Reflection.CustomAttributeTypedArgument>(System.Int32) */, { 812, -1, 65 } /* T System.Array::InternalArray__get_Item<System.Reflection.ParameterModifier>(System.Int32) */, { 812, -1, 167 } /* T System.Array::InternalArray__get_Item<System.Resources.ResourceLocator>(System.Int32) */, { 812, -1, 26 } /* T System.Array::InternalArray__get_Item<System.Runtime.CompilerServices.Ephemeron>(System.Int32) */, { 812, -1, 109 } /* T System.Array::InternalArray__get_Item<System.SByte>(System.Int32) */, { 812, -1, 315 } /* T System.Array::InternalArray__get_Item<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32) */, { 812, -1, 110 } /* T System.Array::InternalArray__get_Item<System.Single>(System.Int32) */, { 812, -1, 308 } /* T System.Array::InternalArray__get_Item<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>(System.Int32) */, { 812, -1, 239 } /* T System.Array::InternalArray__get_Item<System.Threading.CancellationTokenRegistration>(System.Int32) */, { 812, -1, 111 } /* T System.Array::InternalArray__get_Item<System.TimeSpan>(System.Int32) */, { 812, -1, 135 } /* T System.Array::InternalArray__get_Item<System.UInt16>(System.Int32) */, { 812, -1, 35 } /* T System.Array::InternalArray__get_Item<System.UInt32>(System.Int32) */, { 812, -1, 83 } /* T System.Array::InternalArray__get_Item<System.UInt64>(System.Int32) */, { 812, -1, 324 } /* T System.Array::InternalArray__get_Item<UnityEngine.BeforeRenderHelper/OrderBlock>(System.Int32) */, { 812, -1, 340 } /* T System.Array::InternalArray__get_Item<UnityEngine.Color32>(System.Int32) */, { 812, -1, 330 } /* T System.Array::InternalArray__get_Item<UnityEngine.Color>(System.Int32) */, { 812, -1, 371 } /* T System.Array::InternalArray__get_Item<UnityEngine.ContactPoint>(System.Int32) */, { 812, -1, 459 } /* T System.Array::InternalArray__get_Item<UnityEngine.EventSystems.RaycastResult>(System.Int32) */, { 812, -1, 342 } /* T System.Array::InternalArray__get_Item<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>(System.Int32) */, { 812, -1, 319 } /* T System.Array::InternalArray__get_Item<UnityEngine.Keyframe>(System.Int32) */, { 812, -1, 335 } /* T System.Array::InternalArray__get_Item<UnityEngine.Matrix4x4>(System.Int32) */, { 812, -1, 332 } /* T System.Array::InternalArray__get_Item<UnityEngine.Plane>(System.Int32) */, { 812, -1, 355 } /* T System.Array::InternalArray__get_Item<UnityEngine.Playables.PlayableBinding>(System.Int32) */, { 812, -1, 493 } /* T System.Array::InternalArray__get_Item<UnityEngine.RaycastHit2D>(System.Int32) */, { 812, -1, 373 } /* T System.Array::InternalArray__get_Item<UnityEngine.RaycastHit>(System.Int32) */, { 812, -1, 381 } /* T System.Array::InternalArray__get_Item<UnityEngine.Resolution>(System.Int32) */, { 812, -1, 341 } /* T System.Array::InternalArray__get_Item<UnityEngine.SendMouseEvents/HitInfo>(System.Int32) */, { 812, -1, 431 } /* T System.Array::InternalArray__get_Item<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32) */, { 812, -1, 435 } /* T System.Array::InternalArray__get_Item<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32) */, { 812, -1, 498 } /* T System.Array::InternalArray__get_Item<UnityEngine.UI.ColorBlock>(System.Int32) */, { 812, -1, 538 } /* T System.Array::InternalArray__get_Item<UnityEngine.UI.Navigation>(System.Int32) */, { 812, -1, 541 } /* T System.Array::InternalArray__get_Item<UnityEngine.UI.SpriteState>(System.Int32) */, { 812, -1, 384 } /* T System.Array::InternalArray__get_Item<UnityEngine.UICharInfo>(System.Int32) */, { 812, -1, 385 } /* T System.Array::InternalArray__get_Item<UnityEngine.UILineInfo>(System.Int32) */, { 812, -1, 383 } /* T System.Array::InternalArray__get_Item<UnityEngine.UIVertex>(System.Int32) */, { 812, -1, 351 } /* T System.Array::InternalArray__get_Item<UnityEngine.UnitySynchronizationContext/WorkRequest>(System.Int32) */, { 812, -1, 339 } /* T System.Array::InternalArray__get_Item<UnityEngine.Vector2>(System.Int32) */, { 812, -1, 336 } /* T System.Array::InternalArray__get_Item<UnityEngine.Vector3>(System.Int32) */, { 812, -1, 338 } /* T System.Array::InternalArray__get_Item<UnityEngine.Vector4>(System.Int32) */, { 812, -1, 382 } /* T System.Array::InternalArray__get_Item<UnityEngine.WebCamDevice>(System.Int32) */, { 812, -1, 619 } /* T System.Array::InternalArray__get_Item<Vuforia.CameraDevice/CameraField>(System.Int32) */, { 812, -1, 607 } /* T System.Array::InternalArray__get_Item<Vuforia.EyewearDevice/EyewearCalibrationReading>(System.Int32) */, { 812, -1, 609 } /* T System.Array::InternalArray__get_Item<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>(System.Int32) */, { 812, -1, 565 } /* T System.Array::InternalArray__get_Item<Vuforia.TargetFinder/TargetSearchResult>(System.Int32) */, { 812, -1, 621 } /* T System.Array::InternalArray__get_Item<Vuforia.TrackerData/TrackableResultData>(System.Int32) */, { 812, -1, 669 } /* T System.Array::InternalArray__get_Item<Vuforia.TrackerData/VirtualButtonData>(System.Int32) */, { 812, -1, 632 } /* T System.Array::InternalArray__get_Item<Vuforia.TrackerData/VuMarkTargetData>(System.Int32) */, { 812, -1, 622 } /* T System.Array::InternalArray__get_Item<Vuforia.TrackerData/VuMarkTargetResultData>(System.Int32) */, { 812, -1, 608 } /* T System.Array::InternalArray__get_Item<Vuforia.VuforiaManager/TrackableIdPair>(System.Int32) */, { 812, -1, 676 } /* T System.Array::InternalArray__get_Item<Vuforia.WebCamProfile/ProfileData>(System.Int32) */, { 854, -1, 115 } /* T System.Array::UnsafeLoad<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32) */, { 854, -1, 24 } /* T System.Array::UnsafeLoad<System.Int32>(T[],System.Int32) */, { 854, -1, 91 } /* T System.Array::UnsafeLoad<System.Int32Enum>(T[],System.Int32) */, { 854, -1, 324 } /* T System.Array::UnsafeLoad<UnityEngine.BeforeRenderHelper/OrderBlock>(T[],System.Int32) */, { 854, -1, 340 } /* T System.Array::UnsafeLoad<UnityEngine.Color32>(T[],System.Int32) */, { 854, -1, 459 } /* T System.Array::UnsafeLoad<UnityEngine.EventSystems.RaycastResult>(T[],System.Int32) */, { 854, -1, 384 } /* T System.Array::UnsafeLoad<UnityEngine.UICharInfo>(T[],System.Int32) */, { 854, -1, 385 } /* T System.Array::UnsafeLoad<UnityEngine.UILineInfo>(T[],System.Int32) */, { 854, -1, 383 } /* T System.Array::UnsafeLoad<UnityEngine.UIVertex>(T[],System.Int32) */, { 854, -1, 339 } /* T System.Array::UnsafeLoad<UnityEngine.Vector2>(T[],System.Int32) */, { 854, -1, 336 } /* T System.Array::UnsafeLoad<UnityEngine.Vector3>(T[],System.Int32) */, { 854, -1, 338 } /* T System.Array::UnsafeLoad<UnityEngine.Vector4>(T[],System.Int32) */, { 854, -1, 619 } /* T System.Array::UnsafeLoad<Vuforia.CameraDevice/CameraField>(T[],System.Int32) */, { 854, -1, 565 } /* T System.Array::UnsafeLoad<Vuforia.TargetFinder/TargetSearchResult>(T[],System.Int32) */, { 854, -1, 621 } /* T System.Array::UnsafeLoad<Vuforia.TrackerData/TrackableResultData>(T[],System.Int32) */, { 854, -1, 632 } /* T System.Array::UnsafeLoad<Vuforia.TrackerData/VuMarkTargetData>(T[],System.Int32) */, { 854, -1, 622 } /* T System.Array::UnsafeLoad<Vuforia.TrackerData/VuMarkTargetResultData>(T[],System.Int32) */, { 854, -1, 608 } /* T System.Array::UnsafeLoad<Vuforia.VuforiaManager/TrackableIdPair>(T[],System.Int32) */, { 9428, 685, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Type,Vuforia.Tracker>::TryGetValue(!0,!1&) */, { 9408, 689, -1 } /* !1 System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Type,Vuforia.Tracker>>::get_Item(!0) */, { 1007, 685, -1 } /* !1 System.Func`2<System.Type,Vuforia.Tracker>::Invoke(!0) */, { 849, -1, 351 } /* T[] System.Array::Empty<UnityEngine.UnitySynchronizationContext/WorkRequest>() */, { 11667, -1, 339 } /* T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector2>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh/InternalVertexChannelType,System.Int32) */, { 11667, -1, 336 } /* T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector3>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh/InternalVertexChannelType,System.Int32) */, { 11667, -1, 338 } /* T[] UnityEngine.Mesh::GetAllocArrayFromChannel<UnityEngine.Vector4>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh/InternalVertexChannelType,System.Int32) */, { 9610, 484, -1 } /* !0 System.Collections.Generic.List`1<UnityEngine.Transform>::get_Item(System.Int32) */, { 9604, 484, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Transform>::get_Count() */, { 988, 47, -1 } /* System.IAsyncResult System.Action`1<System.Boolean>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 47, -1 } /* System.Void System.Action`1<System.Boolean>::EndInvoke(System.IAsyncResult) */, { 986, 115, -1 } /* System.Void System.Action`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Object,System.IntPtr) */, { 987, 115, -1 } /* System.Void System.Action`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Invoke(T) */, { 988, 115, -1 } /* System.IAsyncResult System.Action`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 115, -1 } /* System.Void System.Action`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::EndInvoke(System.IAsyncResult) */, { 986, 24, -1 } /* System.Void System.Action`1<System.Int32>::.ctor(System.Object,System.IntPtr) */, { 987, 24, -1 } /* System.Void System.Action`1<System.Int32>::Invoke(T) */, { 988, 24, -1 } /* System.IAsyncResult System.Action`1<System.Int32>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 24, -1 } /* System.Void System.Action`1<System.Int32>::EndInvoke(System.IAsyncResult) */, { 986, 91, -1 } /* System.Void System.Action`1<System.Int32Enum>::.ctor(System.Object,System.IntPtr) */, { 987, 91, -1 } /* System.Void System.Action`1<System.Int32Enum>::Invoke(T) */, { 988, 91, -1 } /* System.IAsyncResult System.Action`1<System.Int32Enum>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 91, -1 } /* System.Void System.Action`1<System.Int32Enum>::EndInvoke(System.IAsyncResult) */, { 986, 247, -1 } /* System.Void System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::.ctor(System.Object,System.IntPtr) */, { 987, 247, -1 } /* System.Void System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::Invoke(T) */, { 988, 247, -1 } /* System.IAsyncResult System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 247, -1 } /* System.Void System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>>::EndInvoke(System.IAsyncResult) */, { 986, 324, -1 } /* System.Void System.Action`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Object,System.IntPtr) */, { 987, 324, -1 } /* System.Void System.Action`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Invoke(T) */, { 988, 324, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.BeforeRenderHelper/OrderBlock>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 324, -1 } /* System.Void System.Action`1<UnityEngine.BeforeRenderHelper/OrderBlock>::EndInvoke(System.IAsyncResult) */, { 986, 340, -1 } /* System.Void System.Action`1<UnityEngine.Color32>::.ctor(System.Object,System.IntPtr) */, { 987, 340, -1 } /* System.Void System.Action`1<UnityEngine.Color32>::Invoke(T) */, { 988, 340, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Color32>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 340, -1 } /* System.Void System.Action`1<UnityEngine.Color32>::EndInvoke(System.IAsyncResult) */, { 986, 459, -1 } /* System.Void System.Action`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Object,System.IntPtr) */, { 987, 459, -1 } /* System.Void System.Action`1<UnityEngine.EventSystems.RaycastResult>::Invoke(T) */, { 988, 459, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.EventSystems.RaycastResult>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 459, -1 } /* System.Void System.Action`1<UnityEngine.EventSystems.RaycastResult>::EndInvoke(System.IAsyncResult) */, { 986, 393, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.FrameReceivedEventArgs>::.ctor(System.Object,System.IntPtr) */, { 988, 393, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Experimental.XR.FrameReceivedEventArgs>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 393, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.FrameReceivedEventArgs>::EndInvoke(System.IAsyncResult) */, { 986, 398, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.MeshGenerationResult>::.ctor(System.Object,System.IntPtr) */, { 988, 398, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Experimental.XR.MeshGenerationResult>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 398, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.MeshGenerationResult>::EndInvoke(System.IAsyncResult) */, { 986, 402, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PlaneAddedEventArgs>::.ctor(System.Object,System.IntPtr) */, { 988, 402, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Experimental.XR.PlaneAddedEventArgs>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 402, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PlaneAddedEventArgs>::EndInvoke(System.IAsyncResult) */, { 986, 404, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PlaneRemovedEventArgs>::.ctor(System.Object,System.IntPtr) */, { 988, 404, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Experimental.XR.PlaneRemovedEventArgs>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 404, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PlaneRemovedEventArgs>::EndInvoke(System.IAsyncResult) */, { 986, 403, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PlaneUpdatedEventArgs>::.ctor(System.Object,System.IntPtr) */, { 988, 403, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Experimental.XR.PlaneUpdatedEventArgs>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 403, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PlaneUpdatedEventArgs>::EndInvoke(System.IAsyncResult) */, { 986, 396, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs>::.ctor(System.Object,System.IntPtr) */, { 988, 396, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 396, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.PointCloudUpdatedEventArgs>::EndInvoke(System.IAsyncResult) */, { 986, 407, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs>::.ctor(System.Object,System.IntPtr) */, { 988, 407, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 407, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.ReferencePointUpdatedEventArgs>::EndInvoke(System.IAsyncResult) */, { 986, 410, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs>::.ctor(System.Object,System.IntPtr) */, { 988, 410, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 410, -1 } /* System.Void System.Action`1<UnityEngine.Experimental.XR.SessionTrackingStateChangedEventArgs>::EndInvoke(System.IAsyncResult) */, { 986, 384, -1 } /* System.Void System.Action`1<UnityEngine.UICharInfo>::.ctor(System.Object,System.IntPtr) */, { 987, 384, -1 } /* System.Void System.Action`1<UnityEngine.UICharInfo>::Invoke(T) */, { 988, 384, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.UICharInfo>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 384, -1 } /* System.Void System.Action`1<UnityEngine.UICharInfo>::EndInvoke(System.IAsyncResult) */, { 986, 385, -1 } /* System.Void System.Action`1<UnityEngine.UILineInfo>::.ctor(System.Object,System.IntPtr) */, { 987, 385, -1 } /* System.Void System.Action`1<UnityEngine.UILineInfo>::Invoke(T) */, { 988, 385, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.UILineInfo>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 385, -1 } /* System.Void System.Action`1<UnityEngine.UILineInfo>::EndInvoke(System.IAsyncResult) */, { 986, 383, -1 } /* System.Void System.Action`1<UnityEngine.UIVertex>::.ctor(System.Object,System.IntPtr) */, { 987, 383, -1 } /* System.Void System.Action`1<UnityEngine.UIVertex>::Invoke(T) */, { 988, 383, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.UIVertex>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 383, -1 } /* System.Void System.Action`1<UnityEngine.UIVertex>::EndInvoke(System.IAsyncResult) */, { 986, 339, -1 } /* System.Void System.Action`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr) */, { 987, 339, -1 } /* System.Void System.Action`1<UnityEngine.Vector2>::Invoke(T) */, { 988, 339, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Vector2>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 339, -1 } /* System.Void System.Action`1<UnityEngine.Vector2>::EndInvoke(System.IAsyncResult) */, { 988, 336, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Vector3>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 336, -1 } /* System.Void System.Action`1<UnityEngine.Vector3>::EndInvoke(System.IAsyncResult) */, { 986, 338, -1 } /* System.Void System.Action`1<UnityEngine.Vector4>::.ctor(System.Object,System.IntPtr) */, { 987, 338, -1 } /* System.Void System.Action`1<UnityEngine.Vector4>::Invoke(T) */, { 988, 338, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.Vector4>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 338, -1 } /* System.Void System.Action`1<UnityEngine.Vector4>::EndInvoke(System.IAsyncResult) */, { 986, 391, -1 } /* System.Void System.Action`1<UnityEngine.XR.XRNodeState>::.ctor(System.Object,System.IntPtr) */, { 988, 391, -1 } /* System.IAsyncResult System.Action`1<UnityEngine.XR.XRNodeState>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 391, -1 } /* System.Void System.Action`1<UnityEngine.XR.XRNodeState>::EndInvoke(System.IAsyncResult) */, { 986, 619, -1 } /* System.Void System.Action`1<Vuforia.CameraDevice/CameraField>::.ctor(System.Object,System.IntPtr) */, { 987, 619, -1 } /* System.Void System.Action`1<Vuforia.CameraDevice/CameraField>::Invoke(T) */, { 988, 619, -1 } /* System.IAsyncResult System.Action`1<Vuforia.CameraDevice/CameraField>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 619, -1 } /* System.Void System.Action`1<Vuforia.CameraDevice/CameraField>::EndInvoke(System.IAsyncResult) */, { 986, 565, -1 } /* System.Void System.Action`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor(System.Object,System.IntPtr) */, { 987, 565, -1 } /* System.Void System.Action`1<Vuforia.TargetFinder/TargetSearchResult>::Invoke(T) */, { 988, 565, -1 } /* System.IAsyncResult System.Action`1<Vuforia.TargetFinder/TargetSearchResult>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 565, -1 } /* System.Void System.Action`1<Vuforia.TargetFinder/TargetSearchResult>::EndInvoke(System.IAsyncResult) */, { 986, 621, -1 } /* System.Void System.Action`1<Vuforia.TrackerData/TrackableResultData>::.ctor(System.Object,System.IntPtr) */, { 987, 621, -1 } /* System.Void System.Action`1<Vuforia.TrackerData/TrackableResultData>::Invoke(T) */, { 988, 621, -1 } /* System.IAsyncResult System.Action`1<Vuforia.TrackerData/TrackableResultData>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 621, -1 } /* System.Void System.Action`1<Vuforia.TrackerData/TrackableResultData>::EndInvoke(System.IAsyncResult) */, { 986, 632, -1 } /* System.Void System.Action`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor(System.Object,System.IntPtr) */, { 987, 632, -1 } /* System.Void System.Action`1<Vuforia.TrackerData/VuMarkTargetData>::Invoke(T) */, { 988, 632, -1 } /* System.IAsyncResult System.Action`1<Vuforia.TrackerData/VuMarkTargetData>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 632, -1 } /* System.Void System.Action`1<Vuforia.TrackerData/VuMarkTargetData>::EndInvoke(System.IAsyncResult) */, { 986, 622, -1 } /* System.Void System.Action`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor(System.Object,System.IntPtr) */, { 987, 622, -1 } /* System.Void System.Action`1<Vuforia.TrackerData/VuMarkTargetResultData>::Invoke(T) */, { 988, 622, -1 } /* System.IAsyncResult System.Action`1<Vuforia.TrackerData/VuMarkTargetResultData>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 622, -1 } /* System.Void System.Action`1<Vuforia.TrackerData/VuMarkTargetResultData>::EndInvoke(System.IAsyncResult) */, { 986, 608, -1 } /* System.Void System.Action`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Object,System.IntPtr) */, { 987, 608, -1 } /* System.Void System.Action`1<Vuforia.VuforiaManager/TrackableIdPair>::Invoke(T) */, { 988, 608, -1 } /* System.IAsyncResult System.Action`1<Vuforia.VuforiaManager/TrackableIdPair>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 989, 608, -1 } /* System.Void System.Action`1<Vuforia.VuforiaManager/TrackableIdPair>::EndInvoke(System.IAsyncResult) */, { 994, 424, -1 } /* System.Void System.Action`2<System.Boolean,System.Object>::.ctor(System.Object,System.IntPtr) */, { 995, 424, -1 } /* System.Void System.Action`2<System.Boolean,System.Object>::Invoke(T1,T2) */, { 996, 424, -1 } /* System.IAsyncResult System.Action`2<System.Boolean,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 997, 424, -1 } /* System.Void System.Action`2<System.Boolean,System.Object>::EndInvoke(System.IAsyncResult) */, { 994, 122, -1 } /* System.Void System.Action`2<System.Int32,System.Object>::.ctor(System.Object,System.IntPtr) */, { 995, 122, -1 } /* System.Void System.Action`2<System.Int32,System.Object>::Invoke(T1,T2) */, { 996, 122, -1 } /* System.IAsyncResult System.Action`2<System.Int32,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 997, 122, -1 } /* System.Void System.Action`2<System.Int32,System.Object>::EndInvoke(System.IAsyncResult) */, { 994, 606, -1 } /* System.Void System.Action`2<System.Int32Enum,System.Int32Enum>::.ctor(System.Object,System.IntPtr) */, { 995, 606, -1 } /* System.Void System.Action`2<System.Int32Enum,System.Int32Enum>::Invoke(T1,T2) */, { 996, 606, -1 } /* System.IAsyncResult System.Action`2<System.Int32Enum,System.Int32Enum>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 997, 606, -1 } /* System.Void System.Action`2<System.Int32Enum,System.Int32Enum>::EndInvoke(System.IAsyncResult) */, { 994, 243, -1 } /* System.Void System.Action`2<System.Object,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 995, 243, -1 } /* System.Void System.Action`2<System.Object,System.Boolean>::Invoke(T1,T2) */, { 996, 243, -1 } /* System.IAsyncResult System.Action`2<System.Object,System.Boolean>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 997, 243, -1 } /* System.Void System.Action`2<System.Object,System.Boolean>::EndInvoke(System.IAsyncResult) */, { 994, 347, -1 } /* System.Void System.Action`2<System.Object,System.Int32Enum>::.ctor(System.Object,System.IntPtr) */, { 995, 347, -1 } /* System.Void System.Action`2<System.Object,System.Int32Enum>::Invoke(T1,T2) */, { 996, 347, -1 } /* System.IAsyncResult System.Action`2<System.Object,System.Int32Enum>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 997, 347, -1 } /* System.Void System.Action`2<System.Object,System.Int32Enum>::EndInvoke(System.IAsyncResult) */, { 998, 374, -1 } /* System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::.ctor(System.Object,System.IntPtr) */, { 1000, 374, -1 } /* System.IAsyncResult System.Action`3<System.Boolean,System.Boolean,System.Int32>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object) */, { 1001, 374, -1 } /* System.Void System.Action`3<System.Boolean,System.Boolean,System.Int32>::EndInvoke(System.IAsyncResult) */, { 998, 451, -1 } /* System.Void System.Action`3<System.Int32Enum,System.Int32,System.IntPtr>::.ctor(System.Object,System.IntPtr) */, { 999, 451, -1 } /* System.Void System.Action`3<System.Int32Enum,System.Int32,System.IntPtr>::Invoke(T1,T2,T3) */, { 1000, 451, -1 } /* System.IAsyncResult System.Action`3<System.Int32Enum,System.Int32,System.IntPtr>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object) */, { 1001, 451, -1 } /* System.Void System.Action`3<System.Int32Enum,System.Int32,System.IntPtr>::EndInvoke(System.IAsyncResult) */, { 868, 31, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose() */, { 869, 31, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext() */, { 870, 31, -1 } /* T System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current() */, { 871, 31, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current() */, { 872, 31, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset() */, { 873, 31, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor() */, { 874, 31, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.cctor() */, { 868, 47, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Boolean>::Dispose() */, { 869, 47, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Boolean>::MoveNext() */, { 870, 47, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Boolean>::get_Current() */, { 871, 47, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current() */, { 872, 47, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset() */, { 873, 47, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Boolean>::.ctor() */, { 874, 47, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Boolean>::.cctor() */, { 868, 8, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Byte>::Dispose() */, { 869, 8, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Byte>::MoveNext() */, { 870, 8, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Byte>::get_Current() */, { 871, 8, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current() */, { 872, 8, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset() */, { 873, 8, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Byte>::.ctor() */, { 874, 8, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Byte>::.cctor() */, { 868, 9, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Char>::Dispose() */, { 869, 9, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Char>::MoveNext() */, { 870, 9, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Char>::get_Current() */, { 871, 9, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current() */, { 872, 9, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset() */, { 873, 9, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Char>::.ctor() */, { 874, 9, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Char>::.cctor() */, { 868, 27, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose() */, { 869, 27, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext() */, { 870, 27, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, { 871, 27, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current() */, { 872, 27, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset() */, { 873, 27, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor() */, { 874, 27, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::.cctor() */, { 868, 663, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::Dispose() */, { 869, 663, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::MoveNext() */, { 870, 663, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::get_Current() */, { 871, 663, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::System.Collections.IEnumerator.get_Current() */, { 872, 663, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::System.Collections.IEnumerator.Reset() */, { 873, 663, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::.ctor() */, { 874, 663, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::.cctor() */, { 868, 124, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::Dispose() */, { 869, 124, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::MoveNext() */, { 870, 124, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::get_Current() */, { 871, 124, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 872, 124, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset() */, { 873, 124, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor() */, { 874, 124, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.cctor() */, { 868, 668, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::Dispose() */, { 869, 668, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::MoveNext() */, { 870, 668, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::get_Current() */, { 871, 668, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::System.Collections.IEnumerator.get_Current() */, { 872, 668, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::System.Collections.IEnumerator.Reset() */, { 873, 668, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::.ctor() */, { 874, 668, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::.cctor() */, { 868, 614, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::Dispose() */, { 869, 614, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::MoveNext() */, { 870, 614, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::get_Current() */, { 871, 614, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 872, 614, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset() */, { 873, 614, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::.ctor() */, { 874, 614, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::.cctor() */, { 868, 587, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::Dispose() */, { 869, 587, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::MoveNext() */, { 870, 587, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::get_Current() */, { 871, 587, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::System.Collections.IEnumerator.get_Current() */, { 872, 587, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::System.Collections.IEnumerator.Reset() */, { 873, 587, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::.ctor() */, { 874, 587, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::.cctor() */, { 868, 581, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::Dispose() */, { 869, 581, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::MoveNext() */, { 870, 581, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::get_Current() */, { 871, 581, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::System.Collections.IEnumerator.get_Current() */, { 872, 581, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::System.Collections.IEnumerator.Reset() */, { 873, 581, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::.ctor() */, { 874, 581, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::.cctor() */, { 868, 574, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::Dispose() */, { 869, 574, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::MoveNext() */, { 870, 574, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::get_Current() */, { 871, 574, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::System.Collections.IEnumerator.get_Current() */, { 872, 574, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::System.Collections.IEnumerator.Reset() */, { 873, 574, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::.ctor() */, { 874, 574, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::.cctor() */, { 868, 276, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::Dispose() */, { 869, 276, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::MoveNext() */, { 870, 276, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::get_Current() */, { 871, 276, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current() */, { 872, 276, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset() */, { 873, 276, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor() */, { 874, 276, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.cctor() */, { 868, 713, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::Dispose() */, { 869, 713, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::MoveNext() */, { 870, 713, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::get_Current() */, { 871, 713, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current() */, { 872, 713, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset() */, { 873, 713, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::.ctor() */, { 874, 713, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::.cctor() */, { 868, 23, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::Dispose() */, { 869, 23, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::MoveNext() */, { 870, 23, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::get_Current() */, { 871, 23, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 872, 23, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset() */, { 873, 23, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor() */, { 874, 23, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.cctor() */, { 868, 166, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::Dispose() */, { 869, 166, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext() */, { 870, 166, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::get_Current() */, { 871, 166, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current() */, { 872, 166, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset() */, { 873, 166, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor() */, { 874, 166, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.cctor() */, { 868, 653, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::Dispose() */, { 869, 653, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::MoveNext() */, { 870, 653, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::get_Current() */, { 871, 653, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::System.Collections.IEnumerator.get_Current() */, { 872, 653, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::System.Collections.IEnumerator.Reset() */, { 873, 653, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::.ctor() */, { 874, 653, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::.cctor() */, { 868, 675, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::Dispose() */, { 869, 675, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::MoveNext() */, { 870, 675, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::get_Current() */, { 871, 675, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::System.Collections.IEnumerator.get_Current() */, { 872, 675, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::System.Collections.IEnumerator.Reset() */, { 873, 675, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::.ctor() */, { 874, 675, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::.cctor() */, { 868, 633, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::Dispose() */, { 869, 633, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::MoveNext() */, { 870, 633, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::get_Current() */, { 871, 633, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.get_Current() */, { 872, 633, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.Reset() */, { 873, 633, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::.ctor() */, { 874, 633, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::.cctor() */, { 868, 317, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::Dispose() */, { 869, 317, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::MoveNext() */, { 870, 317, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::get_Current() */, { 871, 317, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.get_Current() */, { 872, 317, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.Reset() */, { 873, 317, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::.ctor() */, { 874, 317, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::.cctor() */, { 868, 115, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose() */, { 869, 115, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext() */, { 870, 115, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current() */, { 871, 115, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 872, 115, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset() */, { 873, 115, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 874, 115, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.cctor() */, { 868, 662, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::Dispose() */, { 869, 662, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::MoveNext() */, { 870, 662, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::get_Current() */, { 871, 662, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::System.Collections.IEnumerator.get_Current() */, { 872, 662, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::System.Collections.IEnumerator.Reset() */, { 873, 662, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::.ctor() */, { 874, 662, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::.cctor() */, { 868, 123, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose() */, { 869, 123, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext() */, { 870, 123, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current() */, { 871, 123, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 872, 123, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset() */, { 873, 123, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor() */, { 874, 123, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.cctor() */, { 868, 667, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::Dispose() */, { 869, 667, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::MoveNext() */, { 870, 667, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::get_Current() */, { 871, 667, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::System.Collections.IEnumerator.get_Current() */, { 872, 667, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::System.Collections.IEnumerator.Reset() */, { 873, 667, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::.ctor() */, { 874, 667, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::.cctor() */, { 868, 613, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::Dispose() */, { 869, 613, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::MoveNext() */, { 870, 613, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::get_Current() */, { 871, 613, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 872, 613, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset() */, { 873, 613, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::.ctor() */, { 874, 613, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::.cctor() */, { 868, 586, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::Dispose() */, { 869, 586, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::MoveNext() */, { 870, 586, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::get_Current() */, { 871, 586, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::System.Collections.IEnumerator.get_Current() */, { 872, 586, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::System.Collections.IEnumerator.Reset() */, { 873, 586, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::.ctor() */, { 874, 586, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::.cctor() */, { 868, 580, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::Dispose() */, { 869, 580, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::MoveNext() */, { 870, 580, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::get_Current() */, { 871, 580, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::System.Collections.IEnumerator.get_Current() */, { 872, 580, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::System.Collections.IEnumerator.Reset() */, { 873, 580, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::.ctor() */, { 874, 580, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::.cctor() */, { 868, 573, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::Dispose() */, { 869, 573, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::MoveNext() */, { 870, 573, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::get_Current() */, { 871, 573, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::System.Collections.IEnumerator.get_Current() */, { 872, 573, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::System.Collections.IEnumerator.Reset() */, { 873, 573, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::.ctor() */, { 874, 573, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::.cctor() */, { 868, 275, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose() */, { 869, 275, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext() */, { 870, 275, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current() */, { 871, 275, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current() */, { 872, 275, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset() */, { 873, 275, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor() */, { 874, 275, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.cctor() */, { 868, 712, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::Dispose() */, { 869, 712, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::MoveNext() */, { 870, 712, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::get_Current() */, { 871, 712, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current() */, { 872, 712, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset() */, { 873, 712, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::.ctor() */, { 874, 712, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::.cctor() */, { 868, 22, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, { 869, 22, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext() */, { 870, 22, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, { 871, 22, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 872, 22, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset() */, { 873, 22, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor() */, { 874, 22, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.cctor() */, { 868, 165, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::Dispose() */, { 869, 165, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::MoveNext() */, { 870, 165, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::get_Current() */, { 871, 165, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current() */, { 872, 165, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset() */, { 873, 165, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.ctor() */, { 874, 165, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.cctor() */, { 868, 652, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::Dispose() */, { 869, 652, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::MoveNext() */, { 870, 652, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::get_Current() */, { 871, 652, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::System.Collections.IEnumerator.get_Current() */, { 872, 652, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::System.Collections.IEnumerator.Reset() */, { 873, 652, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::.ctor() */, { 874, 652, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::.cctor() */, { 868, 674, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::Dispose() */, { 869, 674, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::MoveNext() */, { 870, 674, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::get_Current() */, { 871, 674, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::System.Collections.IEnumerator.get_Current() */, { 872, 674, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::System.Collections.IEnumerator.Reset() */, { 873, 674, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::.ctor() */, { 874, 674, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::.cctor() */, { 868, 292, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::Dispose() */, { 869, 292, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::MoveNext() */, { 870, 292, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::get_Current() */, { 871, 292, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::System.Collections.IEnumerator.get_Current() */, { 872, 292, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::System.Collections.IEnumerator.Reset() */, { 873, 292, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::.ctor() */, { 874, 292, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::.cctor() */, { 868, 61, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.DateTime>::Dispose() */, { 869, 61, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.DateTime>::MoveNext() */, { 870, 61, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.DateTime>::get_Current() */, { 871, 61, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.get_Current() */, { 872, 61, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.Reset() */, { 873, 61, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.DateTime>::.ctor() */, { 874, 61, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.DateTime>::.cctor() */, { 868, 62, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Decimal>::Dispose() */, { 869, 62, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Decimal>::MoveNext() */, { 870, 62, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Decimal>::get_Current() */, { 871, 62, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.get_Current() */, { 872, 62, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.Reset() */, { 873, 62, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Decimal>::.ctor() */, { 874, 62, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Decimal>::.cctor() */, { 868, 82, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Double>::Dispose() */, { 869, 82, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Double>::MoveNext() */, { 870, 82, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Double>::get_Current() */, { 871, 82, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Double>::System.Collections.IEnumerator.get_Current() */, { 872, 82, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Double>::System.Collections.IEnumerator.Reset() */, { 873, 82, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Double>::.ctor() */, { 874, 82, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Double>::.cctor() */, { 868, 228, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::Dispose() */, { 869, 228, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::MoveNext() */, { 870, 228, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::get_Current() */, { 871, 228, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::System.Collections.IEnumerator.get_Current() */, { 872, 228, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::System.Collections.IEnumerator.Reset() */, { 873, 228, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.ctor() */, { 874, 228, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.cctor() */, { 868, 229, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::Dispose() */, { 869, 229, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::MoveNext() */, { 870, 229, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::get_Current() */, { 871, 229, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::System.Collections.IEnumerator.get_Current() */, { 872, 229, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::System.Collections.IEnumerator.Reset() */, { 873, 229, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.ctor() */, { 874, 229, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.cctor() */, { 868, 96, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int16>::Dispose() */, { 869, 96, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int16>::MoveNext() */, { 870, 96, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Int16>::get_Current() */, { 871, 96, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.get_Current() */, { 872, 96, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.Reset() */, { 873, 96, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int16>::.ctor() */, { 874, 96, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int16>::.cctor() */, { 868, 24, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32>::Dispose() */, { 869, 24, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int32>::MoveNext() */, { 870, 24, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Int32>::get_Current() */, { 871, 24, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.get_Current() */, { 872, 24, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.Reset() */, { 873, 24, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32>::.ctor() */, { 874, 24, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32>::.cctor() */, { 868, 91, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::Dispose() */, { 869, 91, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::MoveNext() */, { 870, 91, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::get_Current() */, { 871, 91, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 872, 91, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::System.Collections.IEnumerator.Reset() */, { 873, 91, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::.ctor() */, { 874, 91, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::.cctor() */, { 868, 30, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int64>::Dispose() */, { 869, 30, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int64>::MoveNext() */, { 870, 30, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Int64>::get_Current() */, { 871, 30, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.get_Current() */, { 872, 30, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.Reset() */, { 873, 30, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int64>::.ctor() */, { 874, 30, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Int64>::.cctor() */, { 868, 86, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.IntPtr>::Dispose() */, { 869, 86, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.IntPtr>::MoveNext() */, { 870, 86, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.IntPtr>::get_Current() */, { 871, 86, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.get_Current() */, { 872, 86, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.Reset() */, { 873, 86, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.IntPtr>::.ctor() */, { 874, 86, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.IntPtr>::.cctor() */, { 868, 150, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::Dispose() */, { 869, 150, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::MoveNext() */, { 870, 150, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::get_Current() */, { 871, 150, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::System.Collections.IEnumerator.get_Current() */, { 872, 150, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::System.Collections.IEnumerator.Reset() */, { 873, 150, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::.ctor() */, { 874, 150, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::.cctor() */, { 868, 173, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::Dispose() */, { 869, 173, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::MoveNext() */, { 870, 173, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::get_Current() */, { 871, 173, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current() */, { 872, 173, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.Reset() */, { 873, 173, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor() */, { 874, 173, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.cctor() */, { 868, 172, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::Dispose() */, { 869, 172, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::MoveNext() */, { 870, 172, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::get_Current() */, { 871, 172, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current() */, { 872, 172, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.Reset() */, { 873, 172, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor() */, { 874, 172, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.cctor() */, { 868, 65, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::Dispose() */, { 869, 65, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::MoveNext() */, { 870, 65, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::get_Current() */, { 871, 65, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.get_Current() */, { 872, 65, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.Reset() */, { 873, 65, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor() */, { 874, 65, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::.cctor() */, { 868, 167, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::Dispose() */, { 869, 167, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::MoveNext() */, { 870, 167, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::get_Current() */, { 871, 167, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() */, { 872, 167, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() */, { 873, 167, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::.ctor() */, { 874, 167, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::.cctor() */, { 868, 26, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::Dispose() */, { 869, 26, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::MoveNext() */, { 870, 26, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::get_Current() */, { 871, 26, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::System.Collections.IEnumerator.get_Current() */, { 872, 26, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::System.Collections.IEnumerator.Reset() */, { 873, 26, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.ctor() */, { 874, 26, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.cctor() */, { 868, 109, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.SByte>::Dispose() */, { 869, 109, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.SByte>::MoveNext() */, { 870, 109, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.SByte>::get_Current() */, { 871, 109, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.get_Current() */, { 872, 109, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.Reset() */, { 873, 109, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.SByte>::.ctor() */, { 874, 109, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.SByte>::.cctor() */, { 868, 315, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::Dispose() */, { 869, 315, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::MoveNext() */, { 870, 315, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::get_Current() */, { 871, 315, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.get_Current() */, { 872, 315, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.Reset() */, { 873, 315, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor() */, { 874, 315, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.cctor() */, { 868, 110, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Single>::Dispose() */, { 869, 110, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Single>::MoveNext() */, { 870, 110, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Single>::get_Current() */, { 871, 110, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Single>::System.Collections.IEnumerator.get_Current() */, { 872, 110, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Single>::System.Collections.IEnumerator.Reset() */, { 873, 110, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Single>::.ctor() */, { 874, 110, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Single>::.cctor() */, { 868, 308, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::Dispose() */, { 869, 308, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::MoveNext() */, { 870, 308, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::get_Current() */, { 871, 308, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::System.Collections.IEnumerator.get_Current() */, { 872, 308, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::System.Collections.IEnumerator.Reset() */, { 873, 308, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::.ctor() */, { 874, 308, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::.cctor() */, { 868, 239, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::Dispose() */, { 869, 239, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::MoveNext() */, { 870, 239, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::get_Current() */, { 871, 239, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::System.Collections.IEnumerator.get_Current() */, { 872, 239, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::System.Collections.IEnumerator.Reset() */, { 873, 239, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.ctor() */, { 874, 239, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.cctor() */, { 868, 111, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::Dispose() */, { 869, 111, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::MoveNext() */, { 870, 111, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::get_Current() */, { 871, 111, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.get_Current() */, { 872, 111, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.Reset() */, { 873, 111, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::.ctor() */, { 874, 111, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::.cctor() */, { 868, 135, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16>::Dispose() */, { 869, 135, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.UInt16>::MoveNext() */, { 870, 135, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.UInt16>::get_Current() */, { 871, 135, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.get_Current() */, { 872, 135, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.Reset() */, { 873, 135, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16>::.ctor() */, { 874, 135, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16>::.cctor() */, { 868, 35, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32>::Dispose() */, { 869, 35, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.UInt32>::MoveNext() */, { 870, 35, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.UInt32>::get_Current() */, { 871, 35, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.get_Current() */, { 872, 35, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.Reset() */, { 873, 35, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32>::.ctor() */, { 874, 35, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32>::.cctor() */, { 868, 83, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt64>::Dispose() */, { 869, 83, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<System.UInt64>::MoveNext() */, { 870, 83, -1 } /* T System.Array/EmptyInternalEnumerator`1<System.UInt64>::get_Current() */, { 871, 83, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.get_Current() */, { 872, 83, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.Reset() */, { 873, 83, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt64>::.ctor() */, { 874, 83, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<System.UInt64>::.cctor() */, { 868, 324, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() */, { 869, 324, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() */, { 870, 324, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() */, { 871, 324, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() */, { 872, 324, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.Reset() */, { 873, 324, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 874, 324, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.cctor() */, { 868, 340, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::Dispose() */, { 869, 340, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::MoveNext() */, { 870, 340, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::get_Current() */, { 871, 340, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current() */, { 872, 340, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.Reset() */, { 873, 340, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::.ctor() */, { 874, 340, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::.cctor() */, { 868, 330, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::Dispose() */, { 869, 330, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::MoveNext() */, { 870, 330, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::get_Current() */, { 871, 330, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.get_Current() */, { 872, 330, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.Reset() */, { 873, 330, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::.ctor() */, { 874, 330, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::.cctor() */, { 868, 371, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::Dispose() */, { 869, 371, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::MoveNext() */, { 870, 371, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::get_Current() */, { 871, 371, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.get_Current() */, { 872, 371, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.Reset() */, { 873, 371, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::.ctor() */, { 874, 371, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::.cctor() */, { 868, 459, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::Dispose() */, { 869, 459, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::MoveNext() */, { 870, 459, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::get_Current() */, { 871, 459, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current() */, { 872, 459, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset() */, { 873, 459, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.ctor() */, { 874, 459, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.cctor() */, { 868, 342, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::Dispose() */, { 869, 342, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::MoveNext() */, { 870, 342, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::get_Current() */, { 871, 342, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.get_Current() */, { 872, 342, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.Reset() */, { 873, 342, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.ctor() */, { 874, 342, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.cctor() */, { 868, 319, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::Dispose() */, { 869, 319, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::MoveNext() */, { 870, 319, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::get_Current() */, { 871, 319, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.get_Current() */, { 872, 319, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.Reset() */, { 873, 319, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::.ctor() */, { 874, 319, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::.cctor() */, { 868, 335, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::Dispose() */, { 869, 335, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::MoveNext() */, { 870, 335, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::get_Current() */, { 871, 335, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::System.Collections.IEnumerator.get_Current() */, { 872, 335, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::System.Collections.IEnumerator.Reset() */, { 873, 335, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::.ctor() */, { 874, 335, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Matrix4x4>::.cctor() */, { 868, 332, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::Dispose() */, { 869, 332, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::MoveNext() */, { 870, 332, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::get_Current() */, { 871, 332, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::System.Collections.IEnumerator.get_Current() */, { 872, 332, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::System.Collections.IEnumerator.Reset() */, { 873, 332, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::.ctor() */, { 874, 332, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::.cctor() */, { 868, 355, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::Dispose() */, { 869, 355, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::MoveNext() */, { 870, 355, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::get_Current() */, { 871, 355, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.get_Current() */, { 872, 355, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.Reset() */, { 873, 355, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor() */, { 874, 355, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.cctor() */, { 868, 493, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::Dispose() */, { 869, 493, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::MoveNext() */, { 870, 493, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::get_Current() */, { 871, 493, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.get_Current() */, { 872, 493, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.Reset() */, { 873, 493, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::.ctor() */, { 874, 493, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::.cctor() */, { 868, 373, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::Dispose() */, { 869, 373, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::MoveNext() */, { 870, 373, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::get_Current() */, { 871, 373, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.get_Current() */, { 872, 373, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.Reset() */, { 873, 373, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::.ctor() */, { 874, 373, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::.cctor() */, { 868, 381, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Resolution>::Dispose() */, { 869, 381, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Resolution>::MoveNext() */, { 870, 381, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Resolution>::get_Current() */, { 871, 381, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Resolution>::System.Collections.IEnumerator.get_Current() */, { 872, 381, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Resolution>::System.Collections.IEnumerator.Reset() */, { 873, 381, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Resolution>::.ctor() */, { 874, 381, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Resolution>::.cctor() */, { 868, 341, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::Dispose() */, { 869, 341, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::MoveNext() */, { 870, 341, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::get_Current() */, { 871, 341, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.get_Current() */, { 872, 341, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.Reset() */, { 873, 341, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor() */, { 874, 341, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.cctor() */, { 868, 431, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::Dispose() */, { 869, 431, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::MoveNext() */, { 870, 431, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::get_Current() */, { 871, 431, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::System.Collections.IEnumerator.get_Current() */, { 872, 431, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::System.Collections.IEnumerator.Reset() */, { 873, 431, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::.ctor() */, { 874, 431, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::.cctor() */, { 868, 435, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::Dispose() */, { 869, 435, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::MoveNext() */, { 870, 435, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::get_Current() */, { 871, 435, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::System.Collections.IEnumerator.get_Current() */, { 872, 435, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::System.Collections.IEnumerator.Reset() */, { 873, 435, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::.ctor() */, { 874, 435, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::.cctor() */, { 868, 498, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::Dispose() */, { 869, 498, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::MoveNext() */, { 870, 498, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::get_Current() */, { 871, 498, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::System.Collections.IEnumerator.get_Current() */, { 872, 498, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::System.Collections.IEnumerator.Reset() */, { 873, 498, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::.ctor() */, { 874, 498, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::.cctor() */, { 868, 538, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::Dispose() */, { 869, 538, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::MoveNext() */, { 870, 538, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::get_Current() */, { 871, 538, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::System.Collections.IEnumerator.get_Current() */, { 872, 538, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::System.Collections.IEnumerator.Reset() */, { 873, 538, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::.ctor() */, { 874, 538, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::.cctor() */, { 868, 541, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::Dispose() */, { 869, 541, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::MoveNext() */, { 870, 541, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::get_Current() */, { 871, 541, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::System.Collections.IEnumerator.get_Current() */, { 872, 541, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::System.Collections.IEnumerator.Reset() */, { 873, 541, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::.ctor() */, { 874, 541, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::.cctor() */, { 868, 384, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::Dispose() */, { 869, 384, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::MoveNext() */, { 870, 384, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::get_Current() */, { 871, 384, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current() */, { 872, 384, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset() */, { 873, 384, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::.ctor() */, { 874, 384, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::.cctor() */, { 868, 385, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::Dispose() */, { 869, 385, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::MoveNext() */, { 870, 385, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::get_Current() */, { 871, 385, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current() */, { 872, 385, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset() */, { 873, 385, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::.ctor() */, { 874, 385, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::.cctor() */, { 868, 383, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::Dispose() */, { 869, 383, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::MoveNext() */, { 870, 383, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::get_Current() */, { 871, 383, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current() */, { 872, 383, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset() */, { 873, 383, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::.ctor() */, { 874, 383, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::.cctor() */, { 868, 351, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dispose() */, { 869, 351, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext() */, { 870, 351, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Current() */, { 871, 351, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.get_Current() */, { 872, 351, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.Reset() */, { 873, 351, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor() */, { 874, 351, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.cctor() */, { 868, 339, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::Dispose() */, { 869, 339, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::MoveNext() */, { 870, 339, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::get_Current() */, { 871, 339, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() */, { 872, 339, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() */, { 873, 339, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::.ctor() */, { 874, 339, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::.cctor() */, { 868, 336, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::Dispose() */, { 869, 336, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::MoveNext() */, { 870, 336, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::get_Current() */, { 871, 336, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() */, { 872, 336, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() */, { 873, 336, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::.ctor() */, { 874, 336, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::.cctor() */, { 868, 338, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::Dispose() */, { 869, 338, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::MoveNext() */, { 870, 338, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::get_Current() */, { 871, 338, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current() */, { 872, 338, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset() */, { 873, 338, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::.ctor() */, { 874, 338, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::.cctor() */, { 868, 382, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.WebCamDevice>::Dispose() */, { 869, 382, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.WebCamDevice>::MoveNext() */, { 870, 382, -1 } /* T System.Array/EmptyInternalEnumerator`1<UnityEngine.WebCamDevice>::get_Current() */, { 871, 382, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.WebCamDevice>::System.Collections.IEnumerator.get_Current() */, { 872, 382, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.WebCamDevice>::System.Collections.IEnumerator.Reset() */, { 873, 382, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.WebCamDevice>::.ctor() */, { 874, 382, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.WebCamDevice>::.cctor() */, { 868, 619, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.CameraDevice/CameraField>::Dispose() */, { 869, 619, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Vuforia.CameraDevice/CameraField>::MoveNext() */, { 870, 619, -1 } /* T System.Array/EmptyInternalEnumerator`1<Vuforia.CameraDevice/CameraField>::get_Current() */, { 871, 619, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Vuforia.CameraDevice/CameraField>::System.Collections.IEnumerator.get_Current() */, { 872, 619, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.CameraDevice/CameraField>::System.Collections.IEnumerator.Reset() */, { 873, 619, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.CameraDevice/CameraField>::.ctor() */, { 874, 619, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.CameraDevice/CameraField>::.cctor() */, { 868, 607, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::Dispose() */, { 869, 607, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::MoveNext() */, { 870, 607, -1 } /* T System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::get_Current() */, { 871, 607, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::System.Collections.IEnumerator.get_Current() */, { 872, 607, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::System.Collections.IEnumerator.Reset() */, { 873, 607, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::.ctor() */, { 874, 607, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::.cctor() */, { 868, 609, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::Dispose() */, { 869, 609, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::MoveNext() */, { 870, 609, -1 } /* T System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::get_Current() */, { 871, 609, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::System.Collections.IEnumerator.get_Current() */, { 872, 609, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::System.Collections.IEnumerator.Reset() */, { 873, 609, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::.ctor() */, { 874, 609, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::.cctor() */, { 868, 565, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::Dispose() */, { 869, 565, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::MoveNext() */, { 870, 565, -1 } /* T System.Array/EmptyInternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::get_Current() */, { 871, 565, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IEnumerator.get_Current() */, { 872, 565, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IEnumerator.Reset() */, { 873, 565, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor() */, { 874, 565, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::.cctor() */, { 868, 621, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::Dispose() */, { 869, 621, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::MoveNext() */, { 870, 621, -1 } /* T System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::get_Current() */, { 871, 621, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEnumerator.get_Current() */, { 872, 621, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEnumerator.Reset() */, { 873, 621, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::.ctor() */, { 874, 621, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::.cctor() */, { 868, 669, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::Dispose() */, { 869, 669, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::MoveNext() */, { 870, 669, -1 } /* T System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::get_Current() */, { 871, 669, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerator.get_Current() */, { 872, 669, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerator.Reset() */, { 873, 669, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::.ctor() */, { 874, 669, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::.cctor() */, { 868, 632, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::Dispose() */, { 869, 632, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::MoveNext() */, { 870, 632, -1 } /* T System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::get_Current() */, { 871, 632, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IEnumerator.get_Current() */, { 872, 632, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IEnumerator.Reset() */, { 873, 632, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor() */, { 874, 632, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::.cctor() */, { 868, 622, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::Dispose() */, { 869, 622, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::MoveNext() */, { 870, 622, -1 } /* T System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::get_Current() */, { 871, 622, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IEnumerator.get_Current() */, { 872, 622, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IEnumerator.Reset() */, { 873, 622, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor() */, { 874, 622, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::.cctor() */, { 868, 608, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::Dispose() */, { 869, 608, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::MoveNext() */, { 870, 608, -1 } /* T System.Array/EmptyInternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Current() */, { 871, 608, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEnumerator.get_Current() */, { 872, 608, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEnumerator.Reset() */, { 873, 608, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor() */, { 874, 608, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::.cctor() */, { 868, 676, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::Dispose() */, { 869, 676, -1 } /* System.Boolean System.Array/EmptyInternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::MoveNext() */, { 870, 676, -1 } /* T System.Array/EmptyInternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::get_Current() */, { 871, 676, -1 } /* System.Object System.Array/EmptyInternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerator.get_Current() */, { 872, 676, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerator.Reset() */, { 873, 676, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::.ctor() */, { 874, 676, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::.cctor() */, { 862, 31, -1 } /* System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor(System.Array) */, { 863, 31, -1 } /* System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose() */, { 864, 31, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext() */, { 865, 31, -1 } /* T System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current() */, { 866, 31, -1 } /* System.Void System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset() */, { 867, 31, -1 } /* System.Object System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current() */, { 862, 47, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Boolean>::.ctor(System.Array) */, { 863, 47, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Boolean>::Dispose() */, { 864, 47, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Boolean>::MoveNext() */, { 865, 47, -1 } /* T System.Array/InternalEnumerator`1<System.Boolean>::get_Current() */, { 866, 47, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset() */, { 867, 47, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current() */, { 862, 8, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Byte>::.ctor(System.Array) */, { 863, 8, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Byte>::Dispose() */, { 864, 8, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Byte>::MoveNext() */, { 865, 8, -1 } /* T System.Array/InternalEnumerator`1<System.Byte>::get_Current() */, { 866, 8, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset() */, { 867, 8, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current() */, { 862, 9, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Char>::.ctor(System.Array) */, { 863, 9, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Char>::Dispose() */, { 864, 9, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Char>::MoveNext() */, { 865, 9, -1 } /* T System.Array/InternalEnumerator`1<System.Char>::get_Current() */, { 866, 9, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset() */, { 867, 9, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current() */, { 862, 27, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor(System.Array) */, { 863, 27, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose() */, { 864, 27, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext() */, { 865, 27, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current() */, { 866, 27, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset() */, { 867, 27, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current() */, { 862, 663, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::.ctor(System.Array) */, { 863, 663, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::Dispose() */, { 864, 663, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::MoveNext() */, { 865, 663, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::get_Current() */, { 866, 663, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::System.Collections.IEnumerator.Reset() */, { 867, 663, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>>::System.Collections.IEnumerator.get_Current() */, { 862, 124, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor(System.Array) */, { 863, 124, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::Dispose() */, { 864, 124, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::MoveNext() */, { 865, 124, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::get_Current() */, { 866, 124, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset() */, { 867, 124, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 862, 668, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::.ctor(System.Array) */, { 863, 668, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::Dispose() */, { 864, 668, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::MoveNext() */, { 865, 668, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::get_Current() */, { 866, 668, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::System.Collections.IEnumerator.Reset() */, { 867, 668, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::System.Collections.IEnumerator.get_Current() */, { 862, 614, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::.ctor(System.Array) */, { 863, 614, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::Dispose() */, { 864, 614, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::MoveNext() */, { 865, 614, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::get_Current() */, { 866, 614, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset() */, { 867, 614, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 862, 587, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::.ctor(System.Array) */, { 863, 587, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::Dispose() */, { 864, 587, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::MoveNext() */, { 865, 587, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::get_Current() */, { 866, 587, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::System.Collections.IEnumerator.Reset() */, { 867, 587, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>>::System.Collections.IEnumerator.get_Current() */, { 862, 581, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::.ctor(System.Array) */, { 863, 581, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::Dispose() */, { 864, 581, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::MoveNext() */, { 865, 581, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::get_Current() */, { 866, 581, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::System.Collections.IEnumerator.Reset() */, { 867, 581, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Matrix4x4>>::System.Collections.IEnumerator.get_Current() */, { 862, 574, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::.ctor(System.Array) */, { 863, 574, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::Dispose() */, { 864, 574, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::MoveNext() */, { 865, 574, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::get_Current() */, { 866, 574, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::System.Collections.IEnumerator.Reset() */, { 867, 574, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,UnityEngine.Vector2>>::System.Collections.IEnumerator.get_Current() */, { 862, 276, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor(System.Array) */, { 863, 276, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::Dispose() */, { 864, 276, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::MoveNext() */, { 865, 276, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::get_Current() */, { 866, 276, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset() */, { 867, 276, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current() */, { 862, 713, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::.ctor(System.Array) */, { 863, 713, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::Dispose() */, { 864, 713, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::MoveNext() */, { 865, 713, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::get_Current() */, { 866, 713, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset() */, { 867, 713, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current() */, { 862, 23, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor(System.Array) */, { 863, 23, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::Dispose() */, { 864, 23, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::MoveNext() */, { 865, 23, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::get_Current() */, { 866, 23, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset() */, { 867, 23, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 862, 166, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array) */, { 863, 166, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::Dispose() */, { 864, 166, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext() */, { 865, 166, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::get_Current() */, { 866, 166, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset() */, { 867, 166, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current() */, { 862, 653, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::.ctor(System.Array) */, { 863, 653, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::Dispose() */, { 864, 653, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::MoveNext() */, { 865, 653, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::get_Current() */, { 866, 653, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::System.Collections.IEnumerator.Reset() */, { 867, 653, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt16>>::System.Collections.IEnumerator.get_Current() */, { 862, 675, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::.ctor(System.Array) */, { 863, 675, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::Dispose() */, { 864, 675, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::MoveNext() */, { 865, 675, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::get_Current() */, { 866, 675, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::System.Collections.IEnumerator.Reset() */, { 867, 675, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,Vuforia.WebCamProfile/ProfileData>>::System.Collections.IEnumerator.get_Current() */, { 862, 633, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::.ctor(System.Array) */, { 863, 633, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::Dispose() */, { 864, 633, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::MoveNext() */, { 865, 633, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::get_Current() */, { 866, 633, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.Reset() */, { 867, 633, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.get_Current() */, { 862, 317, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::.ctor(System.Array) */, { 863, 317, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::Dispose() */, { 864, 317, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::MoveNext() */, { 865, 317, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::get_Current() */, { 866, 317, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.Reset() */, { 867, 317, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.get_Current() */, { 862, 115, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Array) */, { 863, 115, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose() */, { 864, 115, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext() */, { 865, 115, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current() */, { 866, 115, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset() */, { 867, 115, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 862, 662, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::.ctor(System.Array) */, { 863, 662, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::Dispose() */, { 864, 662, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::MoveNext() */, { 865, 662, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::get_Current() */, { 866, 662, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::System.Collections.IEnumerator.Reset() */, { 867, 662, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>::System.Collections.IEnumerator.get_Current() */, { 862, 123, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor(System.Array) */, { 863, 123, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose() */, { 864, 123, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext() */, { 865, 123, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current() */, { 866, 123, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset() */, { 867, 123, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 862, 667, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::.ctor(System.Array) */, { 863, 667, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::Dispose() */, { 864, 667, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::MoveNext() */, { 865, 667, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::get_Current() */, { 866, 667, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::System.Collections.IEnumerator.Reset() */, { 867, 667, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>>::System.Collections.IEnumerator.get_Current() */, { 862, 613, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::.ctor(System.Array) */, { 863, 613, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::Dispose() */, { 864, 613, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::MoveNext() */, { 865, 613, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::get_Current() */, { 866, 613, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset() */, { 867, 613, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 862, 586, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::.ctor(System.Array) */, { 863, 586, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::Dispose() */, { 864, 586, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::MoveNext() */, { 865, 586, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::get_Current() */, { 866, 586, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::System.Collections.IEnumerator.Reset() */, { 867, 586, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>>::System.Collections.IEnumerator.get_Current() */, { 862, 580, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::.ctor(System.Array) */, { 863, 580, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::Dispose() */, { 864, 580, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::MoveNext() */, { 865, 580, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::get_Current() */, { 866, 580, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::System.Collections.IEnumerator.Reset() */, { 867, 580, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>>::System.Collections.IEnumerator.get_Current() */, { 862, 573, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::.ctor(System.Array) */, { 863, 573, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::Dispose() */, { 864, 573, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::MoveNext() */, { 865, 573, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::get_Current() */, { 866, 573, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::System.Collections.IEnumerator.Reset() */, { 867, 573, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>>::System.Collections.IEnumerator.get_Current() */, { 862, 275, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor(System.Array) */, { 863, 275, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose() */, { 864, 275, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext() */, { 865, 275, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current() */, { 866, 275, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset() */, { 867, 275, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current() */, { 862, 712, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::.ctor(System.Array) */, { 863, 712, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::Dispose() */, { 864, 712, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::MoveNext() */, { 865, 712, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::get_Current() */, { 866, 712, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset() */, { 867, 712, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current() */, { 862, 22, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Array) */, { 863, 22, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose() */, { 864, 22, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext() */, { 865, 22, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, { 866, 22, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset() */, { 867, 22, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 862, 165, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.ctor(System.Array) */, { 863, 165, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::Dispose() */, { 864, 165, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::MoveNext() */, { 865, 165, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::get_Current() */, { 866, 165, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset() */, { 867, 165, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current() */, { 862, 652, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::.ctor(System.Array) */, { 863, 652, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::Dispose() */, { 864, 652, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::MoveNext() */, { 865, 652, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::get_Current() */, { 866, 652, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::System.Collections.IEnumerator.Reset() */, { 867, 652, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>>::System.Collections.IEnumerator.get_Current() */, { 862, 674, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::.ctor(System.Array) */, { 863, 674, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::Dispose() */, { 864, 674, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::MoveNext() */, { 865, 674, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::get_Current() */, { 866, 674, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::System.Collections.IEnumerator.Reset() */, { 867, 674, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>>::System.Collections.IEnumerator.get_Current() */, { 862, 292, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::.ctor(System.Array) */, { 863, 292, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::Dispose() */, { 864, 292, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::MoveNext() */, { 865, 292, -1 } /* T System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::get_Current() */, { 866, 292, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::System.Collections.IEnumerator.Reset() */, { 867, 292, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>::System.Collections.IEnumerator.get_Current() */, { 862, 61, -1 } /* System.Void System.Array/InternalEnumerator`1<System.DateTime>::.ctor(System.Array) */, { 863, 61, -1 } /* System.Void System.Array/InternalEnumerator`1<System.DateTime>::Dispose() */, { 864, 61, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.DateTime>::MoveNext() */, { 865, 61, -1 } /* T System.Array/InternalEnumerator`1<System.DateTime>::get_Current() */, { 866, 61, -1 } /* System.Void System.Array/InternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.Reset() */, { 867, 61, -1 } /* System.Object System.Array/InternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.get_Current() */, { 862, 62, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Decimal>::.ctor(System.Array) */, { 863, 62, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Decimal>::Dispose() */, { 864, 62, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Decimal>::MoveNext() */, { 865, 62, -1 } /* T System.Array/InternalEnumerator`1<System.Decimal>::get_Current() */, { 866, 62, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.Reset() */, { 867, 62, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.get_Current() */, { 862, 82, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Double>::.ctor(System.Array) */, { 863, 82, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Double>::Dispose() */, { 864, 82, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Double>::MoveNext() */, { 865, 82, -1 } /* T System.Array/InternalEnumerator`1<System.Double>::get_Current() */, { 866, 82, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Double>::System.Collections.IEnumerator.Reset() */, { 867, 82, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Double>::System.Collections.IEnumerator.get_Current() */, { 862, 228, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.ctor(System.Array) */, { 863, 228, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::Dispose() */, { 864, 228, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::MoveNext() */, { 865, 228, -1 } /* T System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::get_Current() */, { 866, 228, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::System.Collections.IEnumerator.Reset() */, { 867, 228, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::System.Collections.IEnumerator.get_Current() */, { 862, 229, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.ctor(System.Array) */, { 863, 229, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::Dispose() */, { 864, 229, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::MoveNext() */, { 865, 229, -1 } /* T System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::get_Current() */, { 866, 229, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::System.Collections.IEnumerator.Reset() */, { 867, 229, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::System.Collections.IEnumerator.get_Current() */, { 862, 96, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int16>::.ctor(System.Array) */, { 863, 96, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int16>::Dispose() */, { 864, 96, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Int16>::MoveNext() */, { 865, 96, -1 } /* T System.Array/InternalEnumerator`1<System.Int16>::get_Current() */, { 866, 96, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.Reset() */, { 867, 96, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.get_Current() */, { 862, 24, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int32>::.ctor(System.Array) */, { 863, 24, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int32>::Dispose() */, { 864, 24, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Int32>::MoveNext() */, { 865, 24, -1 } /* T System.Array/InternalEnumerator`1<System.Int32>::get_Current() */, { 866, 24, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.Reset() */, { 867, 24, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.get_Current() */, { 862, 91, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int32Enum>::.ctor(System.Array) */, { 863, 91, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int32Enum>::Dispose() */, { 864, 91, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Int32Enum>::MoveNext() */, { 865, 91, -1 } /* T System.Array/InternalEnumerator`1<System.Int32Enum>::get_Current() */, { 866, 91, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int32Enum>::System.Collections.IEnumerator.Reset() */, { 867, 91, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 862, 30, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int64>::.ctor(System.Array) */, { 863, 30, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int64>::Dispose() */, { 864, 30, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Int64>::MoveNext() */, { 865, 30, -1 } /* T System.Array/InternalEnumerator`1<System.Int64>::get_Current() */, { 866, 30, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.Reset() */, { 867, 30, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.get_Current() */, { 862, 86, -1 } /* System.Void System.Array/InternalEnumerator`1<System.IntPtr>::.ctor(System.Array) */, { 863, 86, -1 } /* System.Void System.Array/InternalEnumerator`1<System.IntPtr>::Dispose() */, { 864, 86, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.IntPtr>::MoveNext() */, { 865, 86, -1 } /* T System.Array/InternalEnumerator`1<System.IntPtr>::get_Current() */, { 866, 86, -1 } /* System.Void System.Array/InternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.Reset() */, { 867, 86, -1 } /* System.Object System.Array/InternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.get_Current() */, { 862, 150, -1 } /* System.Void System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::.ctor(System.Array) */, { 863, 150, -1 } /* System.Void System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::Dispose() */, { 864, 150, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::MoveNext() */, { 865, 150, -1 } /* T System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::get_Current() */, { 866, 150, -1 } /* System.Void System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::System.Collections.IEnumerator.Reset() */, { 867, 150, -1 } /* System.Object System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>::System.Collections.IEnumerator.get_Current() */, { 862, 173, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Array) */, { 863, 173, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::Dispose() */, { 864, 173, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::MoveNext() */, { 865, 173, -1 } /* T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::get_Current() */, { 866, 173, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.Reset() */, { 867, 173, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current() */, { 862, 172, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor(System.Array) */, { 863, 172, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::Dispose() */, { 864, 172, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::MoveNext() */, { 865, 172, -1 } /* T System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::get_Current() */, { 866, 172, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.Reset() */, { 867, 172, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current() */, { 862, 65, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor(System.Array) */, { 863, 65, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::Dispose() */, { 864, 65, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::MoveNext() */, { 865, 65, -1 } /* T System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::get_Current() */, { 866, 65, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.Reset() */, { 867, 65, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.get_Current() */, { 862, 167, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::.ctor(System.Array) */, { 863, 167, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::Dispose() */, { 864, 167, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::MoveNext() */, { 865, 167, -1 } /* T System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::get_Current() */, { 866, 167, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() */, { 867, 167, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() */, { 862, 26, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.ctor(System.Array) */, { 863, 26, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::Dispose() */, { 864, 26, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::MoveNext() */, { 865, 26, -1 } /* T System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::get_Current() */, { 866, 26, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::System.Collections.IEnumerator.Reset() */, { 867, 26, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::System.Collections.IEnumerator.get_Current() */, { 862, 109, -1 } /* System.Void System.Array/InternalEnumerator`1<System.SByte>::.ctor(System.Array) */, { 863, 109, -1 } /* System.Void System.Array/InternalEnumerator`1<System.SByte>::Dispose() */, { 864, 109, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.SByte>::MoveNext() */, { 865, 109, -1 } /* T System.Array/InternalEnumerator`1<System.SByte>::get_Current() */, { 866, 109, -1 } /* System.Void System.Array/InternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.Reset() */, { 867, 109, -1 } /* System.Object System.Array/InternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.get_Current() */, { 862, 315, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor(System.Array) */, { 863, 315, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::Dispose() */, { 864, 315, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::MoveNext() */, { 865, 315, -1 } /* T System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::get_Current() */, { 866, 315, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.Reset() */, { 867, 315, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.get_Current() */, { 862, 110, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Single>::.ctor(System.Array) */, { 863, 110, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Single>::Dispose() */, { 864, 110, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Single>::MoveNext() */, { 865, 110, -1 } /* T System.Array/InternalEnumerator`1<System.Single>::get_Current() */, { 866, 110, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Single>::System.Collections.IEnumerator.Reset() */, { 867, 110, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Single>::System.Collections.IEnumerator.get_Current() */, { 862, 308, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::.ctor(System.Array) */, { 863, 308, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::Dispose() */, { 864, 308, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::MoveNext() */, { 865, 308, -1 } /* T System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::get_Current() */, { 866, 308, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::System.Collections.IEnumerator.Reset() */, { 867, 308, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::System.Collections.IEnumerator.get_Current() */, { 862, 239, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.ctor(System.Array) */, { 863, 239, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::Dispose() */, { 864, 239, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::MoveNext() */, { 865, 239, -1 } /* T System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::get_Current() */, { 866, 239, -1 } /* System.Void System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::System.Collections.IEnumerator.Reset() */, { 867, 239, -1 } /* System.Object System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>::System.Collections.IEnumerator.get_Current() */, { 862, 111, -1 } /* System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::.ctor(System.Array) */, { 863, 111, -1 } /* System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::Dispose() */, { 864, 111, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.TimeSpan>::MoveNext() */, { 865, 111, -1 } /* T System.Array/InternalEnumerator`1<System.TimeSpan>::get_Current() */, { 866, 111, -1 } /* System.Void System.Array/InternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.Reset() */, { 867, 111, -1 } /* System.Object System.Array/InternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.get_Current() */, { 862, 135, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt16>::.ctor(System.Array) */, { 863, 135, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt16>::Dispose() */, { 864, 135, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.UInt16>::MoveNext() */, { 865, 135, -1 } /* T System.Array/InternalEnumerator`1<System.UInt16>::get_Current() */, { 866, 135, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.Reset() */, { 867, 135, -1 } /* System.Object System.Array/InternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.get_Current() */, { 862, 35, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt32>::.ctor(System.Array) */, { 863, 35, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt32>::Dispose() */, { 864, 35, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.UInt32>::MoveNext() */, { 865, 35, -1 } /* T System.Array/InternalEnumerator`1<System.UInt32>::get_Current() */, { 866, 35, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.Reset() */, { 867, 35, -1 } /* System.Object System.Array/InternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.get_Current() */, { 862, 83, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt64>::.ctor(System.Array) */, { 863, 83, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt64>::Dispose() */, { 864, 83, -1 } /* System.Boolean System.Array/InternalEnumerator`1<System.UInt64>::MoveNext() */, { 865, 83, -1 } /* T System.Array/InternalEnumerator`1<System.UInt64>::get_Current() */, { 866, 83, -1 } /* System.Void System.Array/InternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.Reset() */, { 867, 83, -1 } /* System.Object System.Array/InternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.get_Current() */, { 862, 324, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Array) */, { 863, 324, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() */, { 864, 324, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() */, { 865, 324, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() */, { 866, 324, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.Reset() */, { 867, 324, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() */, { 862, 340, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::.ctor(System.Array) */, { 863, 340, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::Dispose() */, { 864, 340, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Color32>::MoveNext() */, { 865, 340, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Color32>::get_Current() */, { 866, 340, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.Reset() */, { 867, 340, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current() */, { 862, 330, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::.ctor(System.Array) */, { 863, 330, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::Dispose() */, { 864, 330, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Color>::MoveNext() */, { 865, 330, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Color>::get_Current() */, { 866, 330, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.Reset() */, { 867, 330, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.get_Current() */, { 862, 371, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::.ctor(System.Array) */, { 863, 371, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::Dispose() */, { 864, 371, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::MoveNext() */, { 865, 371, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::get_Current() */, { 866, 371, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.Reset() */, { 867, 371, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.get_Current() */, { 862, 459, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Array) */, { 863, 459, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::Dispose() */, { 864, 459, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::MoveNext() */, { 865, 459, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::get_Current() */, { 866, 459, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset() */, { 867, 459, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current() */, { 862, 342, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::.ctor(System.Array) */, { 863, 342, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::Dispose() */, { 864, 342, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::MoveNext() */, { 865, 342, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::get_Current() */, { 866, 342, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.Reset() */, { 867, 342, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Experimental.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.get_Current() */, { 862, 319, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::.ctor(System.Array) */, { 863, 319, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::Dispose() */, { 864, 319, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::MoveNext() */, { 865, 319, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::get_Current() */, { 866, 319, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.Reset() */, { 867, 319, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.get_Current() */, { 862, 335, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Matrix4x4>::.ctor(System.Array) */, { 863, 335, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Matrix4x4>::Dispose() */, { 864, 335, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Matrix4x4>::MoveNext() */, { 865, 335, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Matrix4x4>::get_Current() */, { 866, 335, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Matrix4x4>::System.Collections.IEnumerator.Reset() */, { 867, 335, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Matrix4x4>::System.Collections.IEnumerator.get_Current() */, { 862, 332, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Plane>::.ctor(System.Array) */, { 863, 332, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Plane>::Dispose() */, { 864, 332, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Plane>::MoveNext() */, { 865, 332, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Plane>::get_Current() */, { 866, 332, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Plane>::System.Collections.IEnumerator.Reset() */, { 867, 332, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Plane>::System.Collections.IEnumerator.get_Current() */, { 862, 355, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor(System.Array) */, { 863, 355, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::Dispose() */, { 864, 355, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::MoveNext() */, { 865, 355, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::get_Current() */, { 866, 355, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.Reset() */, { 867, 355, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.get_Current() */, { 862, 493, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::.ctor(System.Array) */, { 863, 493, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::Dispose() */, { 864, 493, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::MoveNext() */, { 865, 493, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::get_Current() */, { 866, 493, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.Reset() */, { 867, 493, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.get_Current() */, { 862, 373, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::.ctor(System.Array) */, { 863, 373, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::Dispose() */, { 864, 373, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::MoveNext() */, { 865, 373, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::get_Current() */, { 866, 373, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.Reset() */, { 867, 373, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.get_Current() */, { 862, 381, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Resolution>::.ctor(System.Array) */, { 863, 381, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Resolution>::Dispose() */, { 864, 381, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Resolution>::MoveNext() */, { 865, 381, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Resolution>::get_Current() */, { 866, 381, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Resolution>::System.Collections.IEnumerator.Reset() */, { 867, 381, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Resolution>::System.Collections.IEnumerator.get_Current() */, { 862, 341, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor(System.Array) */, { 863, 341, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::Dispose() */, { 864, 341, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::MoveNext() */, { 865, 341, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::get_Current() */, { 866, 341, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.Reset() */, { 867, 341, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.get_Current() */, { 862, 431, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::.ctor(System.Array) */, { 863, 431, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::Dispose() */, { 864, 431, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::MoveNext() */, { 865, 431, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::get_Current() */, { 866, 431, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::System.Collections.IEnumerator.Reset() */, { 867, 431, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>::System.Collections.IEnumerator.get_Current() */, { 862, 435, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::.ctor(System.Array) */, { 863, 435, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::Dispose() */, { 864, 435, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::MoveNext() */, { 865, 435, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::get_Current() */, { 866, 435, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::System.Collections.IEnumerator.Reset() */, { 867, 435, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>::System.Collections.IEnumerator.get_Current() */, { 862, 498, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock>::.ctor(System.Array) */, { 863, 498, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock>::Dispose() */, { 864, 498, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock>::MoveNext() */, { 865, 498, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock>::get_Current() */, { 866, 498, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock>::System.Collections.IEnumerator.Reset() */, { 867, 498, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock>::System.Collections.IEnumerator.get_Current() */, { 862, 538, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>::.ctor(System.Array) */, { 863, 538, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>::Dispose() */, { 864, 538, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>::MoveNext() */, { 865, 538, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>::get_Current() */, { 866, 538, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>::System.Collections.IEnumerator.Reset() */, { 867, 538, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>::System.Collections.IEnumerator.get_Current() */, { 862, 541, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.SpriteState>::.ctor(System.Array) */, { 863, 541, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.SpriteState>::Dispose() */, { 864, 541, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UI.SpriteState>::MoveNext() */, { 865, 541, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.UI.SpriteState>::get_Current() */, { 866, 541, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UI.SpriteState>::System.Collections.IEnumerator.Reset() */, { 867, 541, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.UI.SpriteState>::System.Collections.IEnumerator.get_Current() */, { 862, 384, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::.ctor(System.Array) */, { 863, 384, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::Dispose() */, { 864, 384, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::MoveNext() */, { 865, 384, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::get_Current() */, { 866, 384, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset() */, { 867, 384, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current() */, { 862, 385, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::.ctor(System.Array) */, { 863, 385, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::Dispose() */, { 864, 385, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::MoveNext() */, { 865, 385, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::get_Current() */, { 866, 385, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset() */, { 867, 385, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current() */, { 862, 383, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::.ctor(System.Array) */, { 863, 383, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::Dispose() */, { 864, 383, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::MoveNext() */, { 865, 383, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::get_Current() */, { 866, 383, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset() */, { 867, 383, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current() */, { 862, 351, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Array) */, { 863, 351, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dispose() */, { 864, 351, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext() */, { 865, 351, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Current() */, { 866, 351, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.Reset() */, { 867, 351, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.get_Current() */, { 862, 339, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::.ctor(System.Array) */, { 863, 339, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::Dispose() */, { 864, 339, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector2>::MoveNext() */, { 865, 339, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Vector2>::get_Current() */, { 866, 339, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() */, { 867, 339, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() */, { 862, 336, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::.ctor(System.Array) */, { 863, 336, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::Dispose() */, { 864, 336, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector3>::MoveNext() */, { 865, 336, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Vector3>::get_Current() */, { 866, 336, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() */, { 867, 336, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() */, { 862, 338, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::.ctor(System.Array) */, { 863, 338, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::Dispose() */, { 864, 338, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.Vector4>::MoveNext() */, { 865, 338, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.Vector4>::get_Current() */, { 866, 338, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset() */, { 867, 338, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current() */, { 862, 382, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.WebCamDevice>::.ctor(System.Array) */, { 863, 382, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.WebCamDevice>::Dispose() */, { 864, 382, -1 } /* System.Boolean System.Array/InternalEnumerator`1<UnityEngine.WebCamDevice>::MoveNext() */, { 865, 382, -1 } /* T System.Array/InternalEnumerator`1<UnityEngine.WebCamDevice>::get_Current() */, { 866, 382, -1 } /* System.Void System.Array/InternalEnumerator`1<UnityEngine.WebCamDevice>::System.Collections.IEnumerator.Reset() */, { 867, 382, -1 } /* System.Object System.Array/InternalEnumerator`1<UnityEngine.WebCamDevice>::System.Collections.IEnumerator.get_Current() */, { 862, 619, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.CameraDevice/CameraField>::.ctor(System.Array) */, { 863, 619, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.CameraDevice/CameraField>::Dispose() */, { 864, 619, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Vuforia.CameraDevice/CameraField>::MoveNext() */, { 865, 619, -1 } /* T System.Array/InternalEnumerator`1<Vuforia.CameraDevice/CameraField>::get_Current() */, { 866, 619, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.CameraDevice/CameraField>::System.Collections.IEnumerator.Reset() */, { 867, 619, -1 } /* System.Object System.Array/InternalEnumerator`1<Vuforia.CameraDevice/CameraField>::System.Collections.IEnumerator.get_Current() */, { 862, 607, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::.ctor(System.Array) */, { 863, 607, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::Dispose() */, { 864, 607, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::MoveNext() */, { 865, 607, -1 } /* T System.Array/InternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::get_Current() */, { 866, 607, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::System.Collections.IEnumerator.Reset() */, { 867, 607, -1 } /* System.Object System.Array/InternalEnumerator`1<Vuforia.EyewearDevice/EyewearCalibrationReading>::System.Collections.IEnumerator.get_Current() */, { 862, 609, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::.ctor(System.Array) */, { 863, 609, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::Dispose() */, { 864, 609, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::MoveNext() */, { 865, 609, -1 } /* T System.Array/InternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::get_Current() */, { 866, 609, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::System.Collections.IEnumerator.Reset() */, { 867, 609, -1 } /* System.Object System.Array/InternalEnumerator`1<Vuforia.EyewearUserCalibratorImpl/EyewearCalibrationReadingData>::System.Collections.IEnumerator.get_Current() */, { 862, 565, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor(System.Array) */, { 863, 565, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::Dispose() */, { 864, 565, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::MoveNext() */, { 865, 565, -1 } /* T System.Array/InternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::get_Current() */, { 866, 565, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IEnumerator.Reset() */, { 867, 565, -1 } /* System.Object System.Array/InternalEnumerator`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IEnumerator.get_Current() */, { 862, 621, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::.ctor(System.Array) */, { 863, 621, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::Dispose() */, { 864, 621, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::MoveNext() */, { 865, 621, -1 } /* T System.Array/InternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::get_Current() */, { 866, 621, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEnumerator.Reset() */, { 867, 621, -1 } /* System.Object System.Array/InternalEnumerator`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEnumerator.get_Current() */, { 862, 669, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::.ctor(System.Array) */, { 863, 669, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::Dispose() */, { 864, 669, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::MoveNext() */, { 865, 669, -1 } /* T System.Array/InternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::get_Current() */, { 866, 669, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerator.Reset() */, { 867, 669, -1 } /* System.Object System.Array/InternalEnumerator`1<Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerator.get_Current() */, { 862, 632, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor(System.Array) */, { 863, 632, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::Dispose() */, { 864, 632, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::MoveNext() */, { 865, 632, -1 } /* T System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::get_Current() */, { 866, 632, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IEnumerator.Reset() */, { 867, 632, -1 } /* System.Object System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IEnumerator.get_Current() */, { 862, 622, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor(System.Array) */, { 863, 622, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::Dispose() */, { 864, 622, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::MoveNext() */, { 865, 622, -1 } /* T System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::get_Current() */, { 866, 622, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IEnumerator.Reset() */, { 867, 622, -1 } /* System.Object System.Array/InternalEnumerator`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IEnumerator.get_Current() */, { 862, 608, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Array) */, { 863, 608, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::Dispose() */, { 864, 608, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::MoveNext() */, { 865, 608, -1 } /* T System.Array/InternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Current() */, { 866, 608, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEnumerator.Reset() */, { 867, 608, -1 } /* System.Object System.Array/InternalEnumerator`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEnumerator.get_Current() */, { 862, 676, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::.ctor(System.Array) */, { 863, 676, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::Dispose() */, { 864, 676, -1 } /* System.Boolean System.Array/InternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::MoveNext() */, { 865, 676, -1 } /* T System.Array/InternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::get_Current() */, { 866, 676, -1 } /* System.Void System.Array/InternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerator.Reset() */, { 867, 676, -1 } /* System.Object System.Array/InternalEnumerator`1<Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerator.get_Current() */, { 9376, 115, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 115, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 115, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 115, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 115, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 115, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Swap(T[],System.Int32,System.Int32) */, { 9382, 115, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 115, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 115, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 115, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 115, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 115, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 24, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 24, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::Swap(T[],System.Int32,System.Int32) */, { 9382, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 24, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 24, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 91, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 91, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 91, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 91, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 91, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 91, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::Swap(T[],System.Int32,System.Int32) */, { 9382, 91, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 91, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 91, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 91, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 91, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 91, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 83, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.UInt64>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 83, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.UInt64>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::Swap(T[],System.Int32,System.Int32) */, { 9382, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 83, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<System.UInt64>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 83, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<System.UInt64>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 324, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 324, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 324, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 324, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 324, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 324, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Swap(T[],System.Int32,System.Int32) */, { 9382, 324, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 324, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 324, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 324, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 324, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 324, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 340, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 340, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 340, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 340, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 340, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 340, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::Swap(T[],System.Int32,System.Int32) */, { 9382, 340, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 340, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 340, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 340, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 340, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 340, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 459, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 459, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 459, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 459, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 459, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 459, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::Swap(T[],System.Int32,System.Int32) */, { 9382, 459, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 459, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 459, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 459, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 459, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 459, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 373, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 373, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 373, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 373, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 373, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 373, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::Swap(T[],System.Int32,System.Int32) */, { 9382, 373, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 373, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 373, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 373, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 373, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 373, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 384, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 384, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 384, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 384, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 384, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 384, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::Swap(T[],System.Int32,System.Int32) */, { 9382, 384, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 384, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 384, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 384, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 384, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 384, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 385, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 385, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 385, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 385, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 385, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 385, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::Swap(T[],System.Int32,System.Int32) */, { 9382, 385, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 385, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 385, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 385, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 385, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 385, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 383, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 383, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 383, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 383, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 383, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 383, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::Swap(T[],System.Int32,System.Int32) */, { 9382, 383, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 383, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 383, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 383, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 383, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 383, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 339, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 339, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 339, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 339, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 339, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 339, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::Swap(T[],System.Int32,System.Int32) */, { 9382, 339, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 339, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 339, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 339, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 339, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 339, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector2>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 336, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 336, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 336, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 336, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 336, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 336, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::Swap(T[],System.Int32,System.Int32) */, { 9382, 336, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 336, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 336, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 336, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 336, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 336, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 338, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 338, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 338, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 338, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 338, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 338, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::Swap(T[],System.Int32,System.Int32) */, { 9382, 338, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 338, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 338, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 338, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 338, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 338, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 619, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 619, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 619, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 619, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 619, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 619, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::Swap(T[],System.Int32,System.Int32) */, { 9382, 619, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 619, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 619, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 619, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 619, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 619, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.CameraDevice/CameraField>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 565, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 565, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 565, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 565, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 565, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 565, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::Swap(T[],System.Int32,System.Int32) */, { 9382, 565, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 565, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 565, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 565, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 565, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 565, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TargetFinder/TargetSearchResult>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 621, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 621, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 621, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 621, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 621, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 621, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::Swap(T[],System.Int32,System.Int32) */, { 9382, 621, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 621, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 621, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 621, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 621, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 621, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/TrackableResultData>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 632, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 632, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 632, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 632, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 632, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 632, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::Swap(T[],System.Int32,System.Int32) */, { 9382, 632, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 632, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 632, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 632, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 632, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 632, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetData>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 622, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 622, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 622, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 622, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 622, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 622, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::Swap(T[],System.Int32,System.Int32) */, { 9382, 622, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 622, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 622, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 622, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 622, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 622, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.TrackerData/VuMarkTargetResultData>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9376, 608, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9377, 608, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9378, 608, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 608, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9380, 608, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9381, 608, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::Swap(T[],System.Int32,System.Int32) */, { 9382, 608, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9383, 608, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 608, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 608, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9386, 608, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9387, 608, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<Vuforia.VuforiaManager/TrackableIdPair>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9388, 84, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::get_Default() */, { 9389, 84, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::CreateArraySortHelper() */, { 9390, 84, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::Sort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9391, 84, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::SwapIfGreaterWithItems(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>,System.Int32,System.Int32) */, { 9392, 84, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::Swap(TKey[],TValue[],System.Int32,System.Int32) */, { 9393, 84, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::IntrospectiveSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9394, 84, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::IntroSort(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9395, 84, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::PickPivotAndPartition(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9396, 84, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::Heapsort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9397, 84, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::DownHeap(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9398, 84, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::InsertionSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9399, 84, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>::.ctor() */, { 9497, 47, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Boolean>::get_Default() */, { 9498, 47, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Boolean>::CreateComparer() */, { 9500, 47, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Boolean>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 47, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Boolean>::.ctor() */, { 9497, 115, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Default() */, { 9498, 115, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CreateComparer() */, { 9500, 115, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 115, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 9498, 24, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32>::CreateComparer() */, { 9500, 24, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 24, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Int32>::.ctor() */, { 9497, 91, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32Enum>::get_Default() */, { 9498, 91, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32Enum>::CreateComparer() */, { 9500, 91, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32Enum>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 91, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Int32Enum>::.ctor() */, { 9498, 83, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.UInt64>::CreateComparer() */, { 9500, 83, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.UInt64>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 83, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.UInt64>::.ctor() */, { 9497, 324, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Default() */, { 9498, 324, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CreateComparer() */, { 9500, 324, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 324, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 9497, 340, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Color32>::get_Default() */, { 9498, 340, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Color32>::CreateComparer() */, { 9500, 340, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Color32>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 340, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.Color32>::.ctor() */, { 9497, 459, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::get_Default() */, { 9498, 459, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::CreateComparer() */, { 9500, 459, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 459, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>::.ctor() */, { 9497, 373, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>::get_Default() */, { 9498, 373, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>::CreateComparer() */, { 9500, 373, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 373, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>::.ctor() */, { 9497, 384, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::get_Default() */, { 9498, 384, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::CreateComparer() */, { 9500, 384, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 384, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>::.ctor() */, { 9497, 385, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::get_Default() */, { 9498, 385, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::CreateComparer() */, { 9500, 385, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 385, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>::.ctor() */, { 9497, 383, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::get_Default() */, { 9498, 383, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::CreateComparer() */, { 9500, 383, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 383, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>::.ctor() */, { 9497, 339, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::get_Default() */, { 9498, 339, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::CreateComparer() */, { 9500, 339, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 339, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector2>::.ctor() */, { 9497, 336, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::get_Default() */, { 9498, 336, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::CreateComparer() */, { 9500, 336, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 336, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector3>::.ctor() */, { 9497, 338, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::get_Default() */, { 9498, 338, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::CreateComparer() */, { 9500, 338, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 338, -1 } /* System.Void System.Collections.Generic.Comparer`1<UnityEngine.Vector4>::.ctor() */, { 9497, 619, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.CameraDevice/CameraField>::get_Default() */, { 9498, 619, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.CameraDevice/CameraField>::CreateComparer() */, { 9500, 619, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<Vuforia.CameraDevice/CameraField>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 619, -1 } /* System.Void System.Collections.Generic.Comparer`1<Vuforia.CameraDevice/CameraField>::.ctor() */, { 9497, 565, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.TargetFinder/TargetSearchResult>::get_Default() */, { 9498, 565, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.TargetFinder/TargetSearchResult>::CreateComparer() */, { 9500, 565, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 565, -1 } /* System.Void System.Collections.Generic.Comparer`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor() */, { 9497, 621, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.TrackerData/TrackableResultData>::get_Default() */, { 9498, 621, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.TrackerData/TrackableResultData>::CreateComparer() */, { 9500, 621, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 621, -1 } /* System.Void System.Collections.Generic.Comparer`1<Vuforia.TrackerData/TrackableResultData>::.ctor() */, { 9497, 632, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.TrackerData/VuMarkTargetData>::get_Default() */, { 9498, 632, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.TrackerData/VuMarkTargetData>::CreateComparer() */, { 9500, 632, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 632, -1 } /* System.Void System.Collections.Generic.Comparer`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor() */, { 9497, 622, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::get_Default() */, { 9498, 622, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::CreateComparer() */, { 9500, 622, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 622, -1 } /* System.Void System.Collections.Generic.Comparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor() */, { 9497, 608, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Default() */, { 9498, 608, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Vuforia.VuforiaManager/TrackableIdPair>::CreateComparer() */, { 9500, 608, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9501, 608, -1 } /* System.Void System.Collections.Generic.Comparer`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor() */, { 9439, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32Enum>::MoveNext() */, { 9441, 661, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32Enum>::get_Current() */, { 9442, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32Enum>::Dispose() */, { 9443, 661, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 9444, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32Enum>::System.Collections.IEnumerator.Reset() */, { 9445, 661, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32Enum>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 661, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32Enum>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 661, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32Enum>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext() */, { 9441, 122, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current() */, { 9442, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose() */, { 9443, 122, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9444, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() */, { 9445, 122, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 122, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 122, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::MoveNext() */, { 9441, 666, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::get_Current() */, { 9442, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::Dispose() */, { 9443, 666, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerator.get_Current() */, { 9444, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerator.Reset() */, { 9445, 666, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 666, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 666, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::MoveNext() */, { 9441, 612, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::get_Current() */, { 9442, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::Dispose() */, { 9443, 612, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9444, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() */, { 9445, 612, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 612, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 612, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::MoveNext() */, { 9441, 585, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::get_Current() */, { 9442, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::Dispose() */, { 9443, 585, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() */, { 9444, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() */, { 9445, 585, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 585, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 585, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::MoveNext() */, { 9441, 579, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::get_Current() */, { 9442, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::Dispose() */, { 9443, 579, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IEnumerator.get_Current() */, { 9444, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IEnumerator.Reset() */, { 9445, 579, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 579, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 579, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Vector2>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Vector2>::MoveNext() */, { 9441, 572, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Vector2>::get_Current() */, { 9442, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Vector2>::Dispose() */, { 9443, 572, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() */, { 9444, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() */, { 9445, 572, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 572, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 572, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext() */, { 9441, 185, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current() */, { 9442, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose() */, { 9443, 185, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() */, { 9444, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() */, { 9445, 185, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 185, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 185, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::MoveNext() */, { 9441, 347, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::get_Current() */, { 9442, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::Dispose() */, { 9443, 347, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 9444, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::System.Collections.IEnumerator.Reset() */, { 9445, 347, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 347, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 347, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32Enum>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() */, { 9441, 164, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() */, { 9442, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() */, { 9443, 164, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() */, { 9444, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() */, { 9445, 164, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 164, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 164, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt16>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt16>::MoveNext() */, { 9441, 651, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt16>::get_Current() */, { 9442, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt16>::Dispose() */, { 9443, 651, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt16>::System.Collections.IEnumerator.get_Current() */, { 9444, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt16>::System.Collections.IEnumerator.Reset() */, { 9445, 651, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt16>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 651, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt16>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 651, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt16>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9439, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9440, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::MoveNext() */, { 9441, 673, -1 } /* System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::get_Current() */, { 9442, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::Dispose() */, { 9443, 673, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerator.get_Current() */, { 9444, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerator.Reset() */, { 9445, 673, -1 } /* System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IDictionaryEnumerator.get_Entry() */, { 9446, 673, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IDictionaryEnumerator.get_Key() */, { 9447, 673, -1 } /* System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IDictionaryEnumerator.get_Value() */, { 9462, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32Enum>::Dispose() */, { 9464, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32Enum>::MoveNext() */, { 9465, 661, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32Enum>::get_Current() */, { 9466, 661, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 9467, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32Enum>::System.Collections.IEnumerator.Reset() */, { 9462, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::Dispose() */, { 9464, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::MoveNext() */, { 9465, 122, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::get_Current() */, { 9466, 122, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9467, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() */, { 9462, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::Dispose() */, { 9464, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::MoveNext() */, { 9465, 666, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::get_Current() */, { 9466, 666, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerator.get_Current() */, { 9467, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerator.Reset() */, { 9462, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() */, { 9464, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() */, { 9465, 612, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() */, { 9466, 612, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9467, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() */, { 9462, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() */, { 9464, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() */, { 9465, 585, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() */, { 9466, 585, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() */, { 9467, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() */, { 9462, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::Dispose() */, { 9464, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::MoveNext() */, { 9465, 579, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::get_Current() */, { 9466, 579, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IEnumerator.get_Current() */, { 9467, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IEnumerator.Reset() */, { 9462, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::Dispose() */, { 9464, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::MoveNext() */, { 9465, 572, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::get_Current() */, { 9466, 572, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() */, { 9467, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() */, { 9462, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::Dispose() */, { 9464, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::MoveNext() */, { 9465, 185, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::get_Current() */, { 9466, 185, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() */, { 9467, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() */, { 9462, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32Enum>::Dispose() */, { 9464, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32Enum>::MoveNext() */, { 9465, 347, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32Enum>::get_Current() */, { 9466, 347, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 9467, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32Enum>::System.Collections.IEnumerator.Reset() */, { 9462, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() */, { 9464, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() */, { 9465, 164, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() */, { 9466, 164, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() */, { 9467, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() */, { 9462, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt16>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt16>::Dispose() */, { 9464, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt16>::MoveNext() */, { 9465, 651, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt16>::get_Current() */, { 9466, 651, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt16>::System.Collections.IEnumerator.get_Current() */, { 9467, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt16>::System.Collections.IEnumerator.Reset() */, { 9462, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9463, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::Dispose() */, { 9464, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::MoveNext() */, { 9465, 673, -1 } /* TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::get_Current() */, { 9466, 673, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerator.get_Current() */, { 9467, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerator.Reset() */, { 9448, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 661, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::GetEnumerator() */, { 9450, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::CopyTo(TKey[],System.Int32) */, { 9451, 661, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::get_Count() */, { 9452, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 661, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 661, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 661, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32Enum>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 122, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::GetEnumerator() */, { 9450, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::CopyTo(TKey[],System.Int32) */, { 9451, 122, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::get_Count() */, { 9452, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 122, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 122, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 122, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 666, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::GetEnumerator() */, { 9450, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::CopyTo(TKey[],System.Int32) */, { 9451, 666, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::get_Count() */, { 9452, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 666, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 666, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 666, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 612, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::GetEnumerator() */, { 9450, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::CopyTo(TKey[],System.Int32) */, { 9451, 612, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::get_Count() */, { 9452, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 612, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 612, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 612, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 585, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::GetEnumerator() */, { 9450, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::CopyTo(TKey[],System.Int32) */, { 9451, 585, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::get_Count() */, { 9452, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 585, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 585, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 585, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 579, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::GetEnumerator() */, { 9450, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::CopyTo(TKey[],System.Int32) */, { 9451, 579, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::get_Count() */, { 9452, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 579, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 579, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 579, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 572, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::GetEnumerator() */, { 9450, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::CopyTo(TKey[],System.Int32) */, { 9451, 572, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::get_Count() */, { 9452, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 572, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 572, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 572, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 185, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::GetEnumerator() */, { 9450, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::CopyTo(TKey[],System.Int32) */, { 9451, 185, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::get_Count() */, { 9452, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 185, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 185, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 185, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 347, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::GetEnumerator() */, { 9450, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::CopyTo(TKey[],System.Int32) */, { 9451, 347, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::get_Count() */, { 9452, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 347, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 347, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 347, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32Enum>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 164, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::GetEnumerator() */, { 9450, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::CopyTo(TKey[],System.Int32) */, { 9451, 164, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::get_Count() */, { 9452, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 164, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 164, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 164, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 651, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::GetEnumerator() */, { 9450, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::CopyTo(TKey[],System.Int32) */, { 9451, 651, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::get_Count() */, { 9452, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 651, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 651, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 651, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt16>::System.Collections.ICollection.get_SyncRoot() */, { 9448, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9449, 673, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::GetEnumerator() */, { 9450, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::CopyTo(TKey[],System.Int32) */, { 9451, 673, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::get_Count() */, { 9452, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<TKey>.get_IsReadOnly() */, { 9453, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<TKey>.Add(TKey) */, { 9454, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<TKey>.Clear() */, { 9455, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<TKey>.Contains(TKey) */, { 9456, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<TKey>.Remove(TKey) */, { 9457, 673, -1 } /* System.Collections.Generic.IEnumerator`1<TKey> System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.IEnumerable<TKey>.GetEnumerator() */, { 9458, 673, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerable.GetEnumerator() */, { 9459, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9460, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.ICollection.get_IsSynchronized() */, { 9461, 673, -1 } /* System.Object System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.ICollection.get_SyncRoot() */, { 9482, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32Enum>::Dispose() */, { 9484, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32Enum>::MoveNext() */, { 9485, 661, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32Enum>::get_Current() */, { 9486, 661, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 9487, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32Enum>::System.Collections.IEnumerator.Reset() */, { 9482, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose() */, { 9484, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext() */, { 9485, 122, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current() */, { 9486, 122, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9487, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() */, { 9482, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::Dispose() */, { 9484, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::MoveNext() */, { 9485, 666, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::get_Current() */, { 9486, 666, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerator.get_Current() */, { 9487, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerator.Reset() */, { 9482, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() */, { 9484, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() */, { 9485, 612, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() */, { 9486, 612, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() */, { 9487, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() */, { 9482, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() */, { 9484, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() */, { 9485, 585, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() */, { 9486, 585, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() */, { 9487, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() */, { 9482, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::Dispose() */, { 9484, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::MoveNext() */, { 9485, 579, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::get_Current() */, { 9486, 579, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IEnumerator.get_Current() */, { 9487, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IEnumerator.Reset() */, { 9482, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::Dispose() */, { 9484, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::MoveNext() */, { 9485, 572, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::get_Current() */, { 9486, 572, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() */, { 9487, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() */, { 9482, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose() */, { 9484, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext() */, { 9485, 185, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current() */, { 9486, 185, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() */, { 9487, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() */, { 9482, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32Enum>::Dispose() */, { 9484, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32Enum>::MoveNext() */, { 9485, 347, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32Enum>::get_Current() */, { 9486, 347, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 9487, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32Enum>::System.Collections.IEnumerator.Reset() */, { 9482, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() */, { 9484, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() */, { 9485, 164, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() */, { 9486, 164, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() */, { 9487, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() */, { 9482, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt16>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt16>::Dispose() */, { 9484, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt16>::MoveNext() */, { 9485, 651, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt16>::get_Current() */, { 9486, 651, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt16>::System.Collections.IEnumerator.get_Current() */, { 9487, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt16>::System.Collections.IEnumerator.Reset() */, { 9482, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9483, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::Dispose() */, { 9484, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::MoveNext() */, { 9485, 673, -1 } /* TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::get_Current() */, { 9486, 673, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerator.get_Current() */, { 9487, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerator.Reset() */, { 9468, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 661, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::GetEnumerator() */, { 9470, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::CopyTo(TValue[],System.Int32) */, { 9471, 661, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::get_Count() */, { 9472, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 661, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 661, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 661, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32Enum>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 122, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::GetEnumerator() */, { 9470, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::CopyTo(TValue[],System.Int32) */, { 9471, 122, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::get_Count() */, { 9472, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 122, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 122, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 122, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 666, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::GetEnumerator() */, { 9470, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::CopyTo(TValue[],System.Int32) */, { 9471, 666, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::get_Count() */, { 9472, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 666, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 666, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 666, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 612, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::GetEnumerator() */, { 9470, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::CopyTo(TValue[],System.Int32) */, { 9471, 612, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::get_Count() */, { 9472, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 612, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 612, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 612, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 585, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::GetEnumerator() */, { 9470, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::CopyTo(TValue[],System.Int32) */, { 9471, 585, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::get_Count() */, { 9472, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 585, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 585, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 585, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 579, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::GetEnumerator() */, { 9470, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::CopyTo(TValue[],System.Int32) */, { 9471, 579, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::get_Count() */, { 9472, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 579, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 579, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 579, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 572, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::GetEnumerator() */, { 9470, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::CopyTo(TValue[],System.Int32) */, { 9471, 572, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::get_Count() */, { 9472, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 572, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 572, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 572, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,UnityEngine.Vector2>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 185, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::GetEnumerator() */, { 9470, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::CopyTo(TValue[],System.Int32) */, { 9471, 185, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::get_Count() */, { 9472, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 185, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 185, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 185, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 347, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::GetEnumerator() */, { 9470, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::CopyTo(TValue[],System.Int32) */, { 9471, 347, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::get_Count() */, { 9472, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 347, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 347, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 347, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32Enum>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 164, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::GetEnumerator() */, { 9470, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::CopyTo(TValue[],System.Int32) */, { 9471, 164, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::get_Count() */, { 9472, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 164, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 164, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 164, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 651, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::GetEnumerator() */, { 9470, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::CopyTo(TValue[],System.Int32) */, { 9471, 651, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::get_Count() */, { 9472, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 651, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 651, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 651, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt16>::System.Collections.ICollection.get_SyncRoot() */, { 9468, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9469, 673, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::GetEnumerator() */, { 9470, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::CopyTo(TValue[],System.Int32) */, { 9471, 673, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::get_Count() */, { 9472, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<TValue>.get_IsReadOnly() */, { 9473, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<TValue>.Add(TValue) */, { 9474, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<TValue>.Remove(TValue) */, { 9475, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<TValue>.Clear() */, { 9476, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<TValue>.Contains(TValue) */, { 9477, 673, -1 } /* System.Collections.Generic.IEnumerator`1<TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.IEnumerable<TValue>.GetEnumerator() */, { 9478, 673, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerable.GetEnumerator() */, { 9479, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9480, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.ICollection.get_IsSynchronized() */, { 9481, 673, -1 } /* System.Object System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.ICollection.get_SyncRoot() */, { 9400, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::.ctor() */, { 9401, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::.ctor(System.Int32) */, { 9402, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 661, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::get_Count() */, { 9406, 661, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::get_Keys() */, { 9407, 661, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::get_Values() */, { 9408, 661, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::get_Item(TKey) */, { 9409, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::set_Item(TKey,TValue) */, { 9410, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::Add(TKey,TValue) */, { 9411, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::Clear() */, { 9415, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::ContainsKey(TKey) */, { 9416, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::ContainsValue(TValue) */, { 9417, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 661, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::GetEnumerator() */, { 9419, 661, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 661, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::FindEntry(TKey) */, { 9422, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::Initialize(System.Int32) */, { 9423, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9514, 1, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.String>::get_Default() */, { 9424, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::OnDeserialization(System.Object) */, { 9425, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::Resize() */, { 9426, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::Resize(System.Int32,System.Boolean) */, { 9427, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::Remove(TKey) */, { 9428, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::TryGetValue(TKey,TValue&) */, { 9429, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 661, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 661, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 661, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 661, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 661, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::IsCompatibleKey(System.Object) */, { 9438, 661, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Int32,System.Int32Enum>::System.Collections.IDictionary.GetEnumerator() */, { 9400, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor() */, { 9401, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Int32) */, { 9402, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 122, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Count() */, { 9406, 122, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Keys() */, { 9407, 122, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Values() */, { 9408, 122, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Item(TKey) */, { 9409, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::set_Item(TKey,TValue) */, { 9410, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Add(TKey,TValue) */, { 9411, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Clear() */, { 9415, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::ContainsKey(TKey) */, { 9416, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::ContainsValue(TValue) */, { 9417, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 122, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::GetEnumerator() */, { 9419, 122, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 122, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::FindEntry(TKey) */, { 9422, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Initialize(System.Int32) */, { 9423, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::OnDeserialization(System.Object) */, { 9425, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Resize() */, { 9426, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Resize(System.Int32,System.Boolean) */, { 9427, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Remove(TKey) */, { 9428, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryGetValue(TKey,TValue&) */, { 9429, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 122, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 122, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 122, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 122, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 122, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::IsCompatibleKey(System.Object) */, { 9438, 122, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::System.Collections.IDictionary.GetEnumerator() */, { 9401, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::.ctor(System.Int32) */, { 9402, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 666, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::get_Count() */, { 9406, 666, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::get_Keys() */, { 9407, 666, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::get_Values() */, { 9408, 666, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::get_Item(TKey) */, { 9409, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::set_Item(TKey,TValue) */, { 9411, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::Clear() */, { 9415, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::ContainsKey(TKey) */, { 9416, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::ContainsValue(TValue) */, { 9417, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 666, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::GetEnumerator() */, { 9419, 666, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 666, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::FindEntry(TKey) */, { 9422, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::Initialize(System.Int32) */, { 9423, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::OnDeserialization(System.Object) */, { 9425, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::Resize() */, { 9426, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::Resize(System.Int32,System.Boolean) */, { 9427, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::Remove(TKey) */, { 9429, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 666, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 666, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 666, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 666, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 666, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::IsCompatibleKey(System.Object) */, { 9438, 666, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::System.Collections.IDictionary.GetEnumerator() */, { 9400, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::.ctor() */, { 9401, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::.ctor(System.Int32) */, { 9402, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 612, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::get_Count() */, { 9406, 612, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::get_Keys() */, { 9407, 612, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::get_Values() */, { 9408, 612, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::get_Item(TKey) */, { 9409, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::set_Item(TKey,TValue) */, { 9410, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::Add(TKey,TValue) */, { 9411, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::Clear() */, { 9415, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::ContainsKey(TKey) */, { 9416, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::ContainsValue(TValue) */, { 9417, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 612, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::GetEnumerator() */, { 9419, 612, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 612, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::FindEntry(TKey) */, { 9422, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::Initialize(System.Int32) */, { 9423, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::OnDeserialization(System.Object) */, { 9425, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::Resize() */, { 9426, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::Resize(System.Int32,System.Boolean) */, { 9427, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::Remove(TKey) */, { 9428, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::TryGetValue(TKey,TValue&) */, { 9429, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 612, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 612, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 612, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 612, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 612, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::IsCompatibleKey(System.Object) */, { 9438, 612, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::System.Collections.IDictionary.GetEnumerator() */, { 9400, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::.ctor() */, { 9401, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::.ctor(System.Int32) */, { 9402, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 585, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::get_Count() */, { 9406, 585, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::get_Keys() */, { 9407, 585, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::get_Values() */, { 9408, 585, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::get_Item(TKey) */, { 9409, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::set_Item(TKey,TValue) */, { 9410, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::Add(TKey,TValue) */, { 9411, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::Clear() */, { 9415, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::ContainsKey(TKey) */, { 9416, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::ContainsValue(TValue) */, { 9417, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 585, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::GetEnumerator() */, { 9419, 585, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 585, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::FindEntry(TKey) */, { 9422, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::Initialize(System.Int32) */, { 9423, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::OnDeserialization(System.Object) */, { 9425, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::Resize() */, { 9426, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::Resize(System.Int32,System.Boolean) */, { 9427, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::Remove(TKey) */, { 9428, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::TryGetValue(TKey,TValue&) */, { 9429, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 585, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 585, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 585, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 585, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 585, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::IsCompatibleKey(System.Object) */, { 9438, 585, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single>::System.Collections.IDictionary.GetEnumerator() */, { 9400, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::.ctor() */, { 9401, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::.ctor(System.Int32) */, { 9402, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 579, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::get_Count() */, { 9406, 579, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::get_Keys() */, { 9407, 579, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::get_Values() */, { 9408, 579, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::get_Item(TKey) */, { 9409, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::set_Item(TKey,TValue) */, { 9410, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::Add(TKey,TValue) */, { 9411, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::Clear() */, { 9415, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::ContainsKey(TKey) */, { 9416, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::ContainsValue(TValue) */, { 9417, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 579, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::GetEnumerator() */, { 9419, 579, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 579, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::FindEntry(TKey) */, { 9422, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::Initialize(System.Int32) */, { 9423, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::OnDeserialization(System.Object) */, { 9425, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::Resize() */, { 9426, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::Resize(System.Int32,System.Boolean) */, { 9427, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::Remove(TKey) */, { 9428, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::TryGetValue(TKey,TValue&) */, { 9429, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 579, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 579, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 579, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 579, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 579, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::IsCompatibleKey(System.Object) */, { 9438, 579, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Matrix4x4>::System.Collections.IDictionary.GetEnumerator() */, { 9400, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::.ctor() */, { 9401, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::.ctor(System.Int32) */, { 9402, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 572, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::get_Count() */, { 9406, 572, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::get_Keys() */, { 9407, 572, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::get_Values() */, { 9408, 572, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::get_Item(TKey) */, { 9409, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::set_Item(TKey,TValue) */, { 9410, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::Add(TKey,TValue) */, { 9411, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::Clear() */, { 9415, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::ContainsKey(TKey) */, { 9416, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::ContainsValue(TValue) */, { 9417, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 572, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::GetEnumerator() */, { 9419, 572, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 572, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::FindEntry(TKey) */, { 9422, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::Initialize(System.Int32) */, { 9423, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::OnDeserialization(System.Object) */, { 9425, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::Resize() */, { 9426, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::Resize(System.Int32,System.Boolean) */, { 9427, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::Remove(TKey) */, { 9428, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::TryGetValue(TKey,TValue&) */, { 9429, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 572, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 572, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 572, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 572, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 572, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::IsCompatibleKey(System.Object) */, { 9438, 572, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Int32Enum,UnityEngine.Vector2>::System.Collections.IDictionary.GetEnumerator() */, { 9400, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor() */, { 9401, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Int32) */, { 9402, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 185, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Count() */, { 9406, 185, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Keys() */, { 9407, 185, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Values() */, { 9408, 185, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Item(TKey) */, { 9409, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::set_Item(TKey,TValue) */, { 9410, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Add(TKey,TValue) */, { 9411, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Clear() */, { 9415, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::ContainsKey(TKey) */, { 9416, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::ContainsValue(TValue) */, { 9417, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 185, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::GetEnumerator() */, { 9419, 185, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 185, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::FindEntry(TKey) */, { 9422, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Initialize(System.Int32) */, { 9423, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::OnDeserialization(System.Object) */, { 9425, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Resize() */, { 9426, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Resize(System.Int32,System.Boolean) */, { 9427, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Remove(TKey) */, { 9428, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryGetValue(TKey,TValue&) */, { 9429, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 185, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 185, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 185, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 185, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 185, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::IsCompatibleKey(System.Object) */, { 9438, 185, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::System.Collections.IDictionary.GetEnumerator() */, { 9400, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor() */, { 9401, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor(System.Int32) */, { 9402, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 347, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::get_Count() */, { 9406, 347, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::get_Keys() */, { 9407, 347, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::get_Values() */, { 9408, 347, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::get_Item(TKey) */, { 9409, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::set_Item(TKey,TValue) */, { 9410, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Add(TKey,TValue) */, { 9411, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Clear() */, { 9415, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::ContainsKey(TKey) */, { 9416, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::ContainsValue(TValue) */, { 9417, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 347, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::GetEnumerator() */, { 9419, 347, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 347, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::FindEntry(TKey) */, { 9422, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Initialize(System.Int32) */, { 9423, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::OnDeserialization(System.Object) */, { 9425, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Resize() */, { 9426, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Resize(System.Int32,System.Boolean) */, { 9427, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::Remove(TKey) */, { 9428, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::TryGetValue(TKey,TValue&) */, { 9429, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 347, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 347, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 347, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 347, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 347, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::IsCompatibleKey(System.Object) */, { 9438, 347, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Int32Enum>::System.Collections.IDictionary.GetEnumerator() */, { 9400, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor() */, { 9401, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Int32) */, { 9402, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 164, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Count() */, { 9406, 164, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Keys() */, { 9407, 164, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Values() */, { 9408, 164, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::get_Item(TKey) */, { 9409, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::set_Item(TKey,TValue) */, { 9410, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Add(TKey,TValue) */, { 9411, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Clear() */, { 9415, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::ContainsKey(TKey) */, { 9416, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::ContainsValue(TValue) */, { 9417, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 164, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::GetEnumerator() */, { 9419, 164, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 164, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::FindEntry(TKey) */, { 9422, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Initialize(System.Int32) */, { 9423, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::OnDeserialization(System.Object) */, { 9425, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Resize() */, { 9426, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Resize(System.Int32,System.Boolean) */, { 9427, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::Remove(TKey) */, { 9428, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::TryGetValue(TKey,TValue&) */, { 9429, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 164, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 164, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 164, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 164, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 164, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::IsCompatibleKey(System.Object) */, { 9438, 164, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionary.GetEnumerator() */, { 9400, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::.ctor() */, { 9401, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::.ctor(System.Int32) */, { 9402, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 651, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::get_Count() */, { 9406, 651, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::get_Keys() */, { 9407, 651, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::get_Values() */, { 9408, 651, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::get_Item(TKey) */, { 9409, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::set_Item(TKey,TValue) */, { 9410, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::Add(TKey,TValue) */, { 9411, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::Clear() */, { 9415, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::ContainsKey(TKey) */, { 9416, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::ContainsValue(TValue) */, { 9417, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 651, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::GetEnumerator() */, { 9419, 651, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 651, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::FindEntry(TKey) */, { 9422, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::Initialize(System.Int32) */, { 9423, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::OnDeserialization(System.Object) */, { 9425, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::Resize() */, { 9426, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::Resize(System.Int32,System.Boolean) */, { 9427, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::Remove(TKey) */, { 9428, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::TryGetValue(TKey,TValue&) */, { 9429, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 651, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 651, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 651, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 651, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 651, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::IsCompatibleKey(System.Object) */, { 9438, 651, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,System.UInt16>::System.Collections.IDictionary.GetEnumerator() */, { 9400, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::.ctor() */, { 9401, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::.ctor(System.Int32) */, { 9402, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9403, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9404, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9405, 673, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::get_Count() */, { 9406, 673, -1 } /* System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::get_Keys() */, { 9407, 673, -1 } /* System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::get_Values() */, { 9408, 673, -1 } /* TValue System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::get_Item(TKey) */, { 9409, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::set_Item(TKey,TValue) */, { 9410, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::Add(TKey,TValue) */, { 9411, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9412, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9413, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>) */, { 9414, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::Clear() */, { 9415, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::ContainsKey(TKey) */, { 9416, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::ContainsValue(TValue) */, { 9417, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9418, 673, -1 } /* System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::GetEnumerator() */, { 9419, 673, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>.GetEnumerator() */, { 9420, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9421, 673, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::FindEntry(TKey) */, { 9422, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::Initialize(System.Int32) */, { 9423, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9424, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::OnDeserialization(System.Object) */, { 9425, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::Resize() */, { 9426, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::Resize(System.Int32,System.Boolean) */, { 9427, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::Remove(TKey) */, { 9428, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::TryGetValue(TKey,TValue&) */, { 9429, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.get_IsReadOnly() */, { 9430, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9431, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9432, 673, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IEnumerable.GetEnumerator() */, { 9433, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.ICollection.get_IsSynchronized() */, { 9434, 673, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.ICollection.get_SyncRoot() */, { 9435, 673, -1 } /* System.Object System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IDictionary.get_Item(System.Object) */, { 9436, 673, -1 } /* System.Void System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IDictionary.set_Item(System.Object,System.Object) */, { 9437, 673, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::IsCompatibleKey(System.Object) */, { 9438, 673, -1 } /* System.Collections.IDictionaryEnumerator System.Collections.Generic.Dictionary`2<System.Object,Vuforia.WebCamProfile/ProfileData>::System.Collections.IDictionary.GetEnumerator() */, { 9551, 91, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::Equals(T,T) */, { 9552, 91, -1 } /* System.Int32 System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetHashCode(T) */, { 9553, 91, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::.ctor() */, { 9554, 91, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9555, 91, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9556, 91, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::Equals(System.Object) */, { 9557, 91, -1 } /* System.Int32 System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetHashCode() */, { 9514, 47, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Boolean>::get_Default() */, { 9515, 47, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Boolean>::CreateComparer() */, { 9518, 47, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Boolean>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 47, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Boolean>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 47, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Boolean>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 47, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 47, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Boolean>::.ctor() */, { 9514, 8, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Byte>::get_Default() */, { 9515, 8, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Byte>::CreateComparer() */, { 9518, 8, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 8, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 8, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Byte>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 8, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Byte>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9514, 9, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Char>::get_Default() */, { 9515, 9, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Char>::CreateComparer() */, { 9518, 9, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Char>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 9, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Char>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 9, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Char>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 9, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Char>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 9, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Char>::.ctor() */, { 9514, 115, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Default() */, { 9515, 115, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CreateComparer() */, { 9518, 115, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 115, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 115, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 115, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 115, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 9514, 24, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32>::get_Default() */, { 9515, 24, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32>::CreateComparer() */, { 9518, 24, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 24, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 24, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 24, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 24, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Int32>::.ctor() */, { 9514, 91, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::get_Default() */, { 9515, 91, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::CreateComparer() */, { 9518, 91, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 91, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 91, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 91, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 91, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Int32Enum>::.ctor() */, { 9514, 167, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::get_Default() */, { 9515, 167, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::CreateComparer() */, { 9518, 167, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 167, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 167, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 167, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 167, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>::.ctor() */, { 9514, 110, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Single>::get_Default() */, { 9515, 110, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.Single>::CreateComparer() */, { 9518, 110, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Single>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 110, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Single>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 110, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Single>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 110, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Single>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 110, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Single>::.ctor() */, { 9514, 135, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.UInt16>::get_Default() */, { 9515, 135, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<System.UInt16>::CreateComparer() */, { 9518, 135, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.UInt16>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 135, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.UInt16>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 135, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.UInt16>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 135, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.UInt16>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 135, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.UInt16>::.ctor() */, { 9514, 324, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Default() */, { 9515, 324, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CreateComparer() */, { 9518, 324, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 324, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 324, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 324, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 324, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 9514, 340, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>::get_Default() */, { 9515, 340, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>::CreateComparer() */, { 9518, 340, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 340, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 340, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 340, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 340, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>::.ctor() */, { 9514, 459, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::get_Default() */, { 9515, 459, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::CreateComparer() */, { 9518, 459, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 459, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 459, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 459, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 459, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::.ctor() */, { 9514, 335, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>::get_Default() */, { 9515, 335, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>::CreateComparer() */, { 9518, 335, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 335, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 335, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 335, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 335, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.Matrix4x4>::.ctor() */, { 9514, 498, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>::get_Default() */, { 9515, 498, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>::CreateComparer() */, { 9518, 498, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 498, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 498, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 498, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 498, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>::.ctor() */, { 9514, 538, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>::get_Default() */, { 9515, 538, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>::CreateComparer() */, { 9518, 538, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 538, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 538, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 538, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 538, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>::.ctor() */, { 9514, 541, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>::get_Default() */, { 9515, 541, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>::CreateComparer() */, { 9518, 541, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 541, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 541, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 541, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 541, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>::.ctor() */, { 9514, 384, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>::get_Default() */, { 9515, 384, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>::CreateComparer() */, { 9518, 384, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 384, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 384, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 384, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 384, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>::.ctor() */, { 9514, 385, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>::get_Default() */, { 9515, 385, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>::CreateComparer() */, { 9518, 385, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 385, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 385, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 385, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 385, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>::.ctor() */, { 9514, 383, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>::get_Default() */, { 9515, 383, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>::CreateComparer() */, { 9518, 383, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 383, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 383, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 383, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 383, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>::.ctor() */, { 9514, 339, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2>::get_Default() */, { 9515, 339, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2>::CreateComparer() */, { 9518, 339, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 339, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 339, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 339, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 339, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2>::.ctor() */, { 9514, 336, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>::get_Default() */, { 9515, 336, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>::CreateComparer() */, { 9518, 336, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 336, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 336, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 336, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 336, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>::.ctor() */, { 9514, 338, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::get_Default() */, { 9515, 338, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::CreateComparer() */, { 9518, 338, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 338, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 338, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 338, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 338, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::.ctor() */, { 9514, 619, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.CameraDevice/CameraField>::get_Default() */, { 9515, 619, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.CameraDevice/CameraField>::CreateComparer() */, { 9518, 619, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.CameraDevice/CameraField>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 619, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.CameraDevice/CameraField>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 619, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.CameraDevice/CameraField>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 619, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<Vuforia.CameraDevice/CameraField>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 619, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<Vuforia.CameraDevice/CameraField>::.ctor() */, { 9514, 565, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::get_Default() */, { 9515, 565, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::CreateComparer() */, { 9518, 565, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 565, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 565, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 565, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 565, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor() */, { 9514, 621, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::get_Default() */, { 9515, 621, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::CreateComparer() */, { 9518, 621, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 621, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 621, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 621, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 621, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::.ctor() */, { 9514, 669, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::get_Default() */, { 9515, 669, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::CreateComparer() */, { 9518, 669, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 669, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 669, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 669, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 669, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::.ctor() */, { 9514, 632, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::get_Default() */, { 9515, 632, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::CreateComparer() */, { 9518, 632, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 632, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 632, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 632, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 632, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor() */, { 9514, 622, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::get_Default() */, { 9515, 622, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::CreateComparer() */, { 9518, 622, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 622, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 622, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 622, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 622, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor() */, { 9514, 608, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Default() */, { 9515, 608, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::CreateComparer() */, { 9518, 608, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 608, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 608, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 608, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 608, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor() */, { 9514, 676, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::get_Default() */, { 9515, 676, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::CreateComparer() */, { 9518, 676, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 676, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9520, 676, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 676, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9522, 676, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::.ctor() */, { 9502, 47, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Boolean>::Compare(T,T) */, { 9503, 47, -1 } /* System.Boolean System.Collections.Generic.GenericComparer`1<System.Boolean>::Equals(System.Object) */, { 9504, 47, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Boolean>::GetHashCode() */, { 9505, 47, -1 } /* System.Void System.Collections.Generic.GenericComparer`1<System.Boolean>::.ctor() */, { 9502, 24, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Int32>::Compare(T,T) */, { 9503, 24, -1 } /* System.Boolean System.Collections.Generic.GenericComparer`1<System.Int32>::Equals(System.Object) */, { 9504, 24, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.Int32>::GetHashCode() */, { 9505, 24, -1 } /* System.Void System.Collections.Generic.GenericComparer`1<System.Int32>::.ctor() */, { 9502, 83, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.UInt64>::Compare(T,T) */, { 9503, 83, -1 } /* System.Boolean System.Collections.Generic.GenericComparer`1<System.UInt64>::Equals(System.Object) */, { 9504, 83, -1 } /* System.Int32 System.Collections.Generic.GenericComparer`1<System.UInt64>::GetHashCode() */, { 9505, 83, -1 } /* System.Void System.Collections.Generic.GenericComparer`1<System.UInt64>::.ctor() */, { 9523, 47, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::Equals(T,T) */, { 9524, 47, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::GetHashCode(T) */, { 9525, 47, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 47, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 47, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::Equals(System.Object) */, { 9528, 47, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::GetHashCode() */, { 9529, 47, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>::.ctor() */, { 9523, 8, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::Equals(T,T) */, { 9524, 8, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::GetHashCode(T) */, { 9525, 8, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 8, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 8, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::Equals(System.Object) */, { 9528, 8, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::GetHashCode() */, { 9529, 8, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<System.Byte>::.ctor() */, { 9523, 9, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Char>::Equals(T,T) */, { 9524, 9, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Char>::GetHashCode(T) */, { 9525, 9, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Char>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 9, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Char>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 9, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Char>::Equals(System.Object) */, { 9528, 9, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Char>::GetHashCode() */, { 9529, 9, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<System.Char>::.ctor() */, { 9523, 24, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::Equals(T,T) */, { 9524, 24, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::GetHashCode(T) */, { 9525, 24, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 24, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 24, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::Equals(System.Object) */, { 9528, 24, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::GetHashCode() */, { 9529, 24, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<System.Int32>::.ctor() */, { 9523, 110, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Single>::Equals(T,T) */, { 9524, 110, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Single>::GetHashCode(T) */, { 9525, 110, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Single>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 110, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Single>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 110, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.Single>::Equals(System.Object) */, { 9528, 110, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.Single>::GetHashCode() */, { 9529, 110, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<System.Single>::.ctor() */, { 9523, 135, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.UInt16>::Equals(T,T) */, { 9524, 135, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.UInt16>::GetHashCode(T) */, { 9525, 135, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.UInt16>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 135, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.UInt16>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 135, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<System.UInt16>::Equals(System.Object) */, { 9528, 135, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<System.UInt16>::GetHashCode() */, { 9529, 135, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<System.UInt16>::.ctor() */, { 9523, 335, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Matrix4x4>::Equals(T,T) */, { 9524, 335, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Matrix4x4>::GetHashCode(T) */, { 9525, 335, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Matrix4x4>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 335, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Matrix4x4>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 335, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Matrix4x4>::Equals(System.Object) */, { 9528, 335, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Matrix4x4>::GetHashCode() */, { 9529, 335, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Matrix4x4>::.ctor() */, { 9523, 498, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>::Equals(T,T) */, { 9524, 498, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>::GetHashCode(T) */, { 9525, 498, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 498, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 498, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>::Equals(System.Object) */, { 9528, 498, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>::GetHashCode() */, { 9529, 498, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>::.ctor() */, { 9523, 538, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>::Equals(T,T) */, { 9524, 538, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>::GetHashCode(T) */, { 9525, 538, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 538, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 538, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>::Equals(System.Object) */, { 9528, 538, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>::GetHashCode() */, { 9529, 538, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>::.ctor() */, { 9523, 541, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.SpriteState>::Equals(T,T) */, { 9524, 541, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.SpriteState>::GetHashCode(T) */, { 9525, 541, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.SpriteState>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 541, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.SpriteState>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 541, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.SpriteState>::Equals(System.Object) */, { 9528, 541, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.SpriteState>::GetHashCode() */, { 9529, 541, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.SpriteState>::.ctor() */, { 9523, 339, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector2>::Equals(T,T) */, { 9524, 339, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector2>::GetHashCode(T) */, { 9525, 339, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector2>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 339, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector2>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 339, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector2>::Equals(System.Object) */, { 9528, 339, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector2>::GetHashCode() */, { 9529, 339, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector2>::.ctor() */, { 9523, 336, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector3>::Equals(T,T) */, { 9524, 336, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector3>::GetHashCode(T) */, { 9525, 336, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector3>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 336, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector3>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 336, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector3>::Equals(System.Object) */, { 9528, 336, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector3>::GetHashCode() */, { 9529, 336, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector3>::.ctor() */, { 9523, 338, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector4>::Equals(T,T) */, { 9524, 338, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector4>::GetHashCode(T) */, { 9525, 338, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector4>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9526, 338, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector4>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9527, 338, -1 } /* System.Boolean System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector4>::Equals(System.Object) */, { 9528, 338, -1 } /* System.Int32 System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector4>::GetHashCode() */, { 9529, 338, -1 } /* System.Void System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector4>::.ctor() */, { 10945, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.HashSet`1<T>) */, { 10946, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::Dispose() */, { 10947, 24, -1 } /* System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::MoveNext() */, { 10948, 24, -1 } /* T System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::get_Current() */, { 10949, 24, -1 } /* System.Object System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current() */, { 10950, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::System.Collections.IEnumerator.Reset() */, { 10915, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::.ctor(System.Collections.Generic.IEqualityComparer`1<T>) */, { 10916, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 10917, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<T>,System.Collections.Generic.IEqualityComparer`1<T>) */, { 10918, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10919, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::CopyFrom(System.Collections.Generic.HashSet`1<T>) */, { 10920, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::System.Collections.Generic.ICollection<T>.Add(T) */, { 10921, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::Clear() */, { 10923, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::CopyTo(T[],System.Int32) */, { 10924, 24, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Int32>::Remove(T) */, { 10925, 24, -1 } /* System.Int32 System.Collections.Generic.HashSet`1<System.Int32>::get_Count() */, { 10926, 24, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Int32>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 10927, 24, -1 } /* System.Collections.Generic.HashSet`1/Enumerator<T> System.Collections.Generic.HashSet`1<System.Int32>::GetEnumerator() */, { 10928, 24, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.HashSet`1<System.Int32>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 10929, 24, -1 } /* System.Collections.IEnumerator System.Collections.Generic.HashSet`1<System.Int32>::System.Collections.IEnumerable.GetEnumerator() */, { 10930, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10931, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::OnDeserialization(System.Object) */, { 10933, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::UnionWith(System.Collections.Generic.IEnumerable`1<T>) */, { 10934, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::CopyTo(T[]) */, { 10935, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::CopyTo(T[],System.Int32,System.Int32) */, { 10936, 24, -1 } /* System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1<System.Int32>::get_Comparer() */, { 10937, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::TrimExcess() */, { 10938, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::Initialize(System.Int32) */, { 10939, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::IncreaseCapacity() */, { 10940, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::SetCapacity(System.Int32) */, { 10941, 24, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Int32>::AddIfNotPresent(T) */, { 10942, 24, -1 } /* System.Void System.Collections.Generic.HashSet`1<System.Int32>::AddValue(System.Int32,System.Int32,T) */, { 10943, 24, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<System.Int32>::AreEqualityComparersEqual(System.Collections.Generic.HashSet`1<T>,System.Collections.Generic.HashSet`1<T>) */, { 10944, 24, -1 } /* System.Int32 System.Collections.Generic.HashSet`1<System.Int32>::InternalGetHashCode(T) */, { 9370, 116, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>::.ctor(TKey,TValue) */, { 9371, 116, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>::get_Key() */, { 9372, 116, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>::get_Value() */, { 9373, 116, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>::ToString() */, { 9373, 305, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::ToString() */, { 9370, 661, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>::.ctor(TKey,TValue) */, { 9371, 661, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>::get_Key() */, { 9372, 661, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>::get_Value() */, { 9373, 661, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>::ToString() */, { 9370, 122, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) */, { 9371, 122, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() */, { 9372, 122, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value() */, { 9373, 122, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::ToString() */, { 9370, 666, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::.ctor(TKey,TValue) */, { 9371, 666, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::get_Key() */, { 9372, 666, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::get_Value() */, { 9373, 666, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Int32,Vuforia.TrackerData/VirtualButtonData>::ToString() */, { 9370, 612, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::.ctor(TKey,TValue) */, { 9371, 612, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::get_Key() */, { 9372, 612, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::get_Value() */, { 9373, 612, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::ToString() */, { 9370, 585, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::.ctor(TKey,TValue) */, { 9371, 585, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::get_Key() */, { 9372, 585, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::get_Value() */, { 9373, 585, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::ToString() */, { 9370, 579, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>::.ctor(TKey,TValue) */, { 9371, 579, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>::get_Key() */, { 9372, 579, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>::get_Value() */, { 9373, 579, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Matrix4x4>::ToString() */, { 9370, 572, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>::.ctor(TKey,TValue) */, { 9371, 572, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>::get_Key() */, { 9372, 572, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>::get_Value() */, { 9373, 572, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Int32Enum,UnityEngine.Vector2>::ToString() */, { 9370, 185, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) */, { 9371, 185, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() */, { 9372, 185, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() */, { 9373, 185, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::ToString() */, { 9370, 347, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::.ctor(TKey,TValue) */, { 9371, 347, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::get_Key() */, { 9372, 347, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::get_Value() */, { 9373, 347, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>::ToString() */, { 9370, 164, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) */, { 9371, 164, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() */, { 9372, 164, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() */, { 9373, 164, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::ToString() */, { 9370, 651, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>::.ctor(TKey,TValue) */, { 9371, 651, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>::get_Key() */, { 9372, 651, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>::get_Value() */, { 9373, 651, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt16>::ToString() */, { 9370, 673, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>::.ctor(TKey,TValue) */, { 9371, 673, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>::get_Key() */, { 9372, 673, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>::get_Value() */, { 9373, 673, -1 } /* System.String System.Collections.Generic.KeyValuePair`2<System.Object,Vuforia.WebCamProfile/ProfileData>::ToString() */, { 10754, 608, -1 } /* System.Void System.Collections.Generic.LinkedListNode`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Collections.Generic.LinkedList`1<T>,T) */, { 10757, 608, -1 } /* System.Void System.Collections.Generic.LinkedListNode`1<Vuforia.VuforiaManager/TrackableIdPair>::Invalidate() */, { 10745, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Collections.Generic.LinkedList`1<T>) */, { 10746, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10748, 608, -1 } /* System.Object System.Collections.Generic.LinkedList`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEnumerator.get_Current() */, { 10750, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEnumerator.Reset() */, { 10752, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10753, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) */, { 10717, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10720, 608, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 10721, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.ICollection<T>.Add(T) */, { 10722, 608, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::AddFirst(T) */, { 10723, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::AddFirst(System.Collections.Generic.LinkedListNode`1<T>) */, { 10725, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::Clear() */, { 10727, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::CopyTo(T[],System.Int32) */, { 10728, 608, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::Find(T) */, { 10730, 608, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 10733, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::RemoveLast() */, { 10734, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 10735, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::OnDeserialization(System.Object) */, { 10736, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::InternalInsertNodeBefore(System.Collections.Generic.LinkedListNode`1<T>,System.Collections.Generic.LinkedListNode`1<T>) */, { 10737, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::InternalInsertNodeToEmptyList(System.Collections.Generic.LinkedListNode`1<T>) */, { 10738, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::InternalRemoveNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10739, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::ValidateNewNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10740, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::ValidateNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10741, 608, -1 } /* System.Boolean System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.ICollection.get_IsSynchronized() */, { 10742, 608, -1 } /* System.Object System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.ICollection.get_SyncRoot() */, { 10743, 608, -1 } /* System.Void System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 10744, 608, -1 } /* System.Collections.IEnumerator System.Collections.Generic.LinkedList`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEnumerable.GetEnumerator() */, { 9651, 115, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 115, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose() */, { 9653, 115, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext() */, { 9654, 115, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNextRare() */, { 9655, 115, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current() */, { 9656, 115, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current() */, { 9657, 115, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset() */, { 9651, 24, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.List`1<T>) */, { 9654, 24, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNextRare() */, { 9656, 24, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current() */, { 9657, 24, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.Reset() */, { 9651, 91, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 91, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::Dispose() */, { 9653, 91, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNext() */, { 9654, 91, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNextRare() */, { 9655, 91, -1 } /* T System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::get_Current() */, { 9656, 91, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.get_Current() */, { 9657, 91, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.Reset() */, { 9651, 324, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 324, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose() */, { 9653, 324, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext() */, { 9654, 324, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNextRare() */, { 9655, 324, -1 } /* T System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current() */, { 9656, 324, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current() */, { 9657, 324, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.Reset() */, { 9651, 340, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 340, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::Dispose() */, { 9653, 340, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNext() */, { 9654, 340, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNextRare() */, { 9655, 340, -1 } /* T System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::get_Current() */, { 9656, 340, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current() */, { 9657, 340, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.Reset() */, { 9651, 459, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 459, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::Dispose() */, { 9653, 459, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::MoveNext() */, { 9654, 459, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::MoveNextRare() */, { 9655, 459, -1 } /* T System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::get_Current() */, { 9656, 459, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current() */, { 9657, 459, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset() */, { 9651, 384, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 384, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::Dispose() */, { 9653, 384, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::MoveNext() */, { 9654, 384, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::MoveNextRare() */, { 9655, 384, -1 } /* T System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::get_Current() */, { 9656, 384, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current() */, { 9657, 384, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset() */, { 9651, 385, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 385, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::Dispose() */, { 9653, 385, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::MoveNext() */, { 9654, 385, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::MoveNextRare() */, { 9655, 385, -1 } /* T System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::get_Current() */, { 9656, 385, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current() */, { 9657, 385, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset() */, { 9651, 383, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 383, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::Dispose() */, { 9653, 383, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::MoveNext() */, { 9654, 383, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::MoveNextRare() */, { 9655, 383, -1 } /* T System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::get_Current() */, { 9656, 383, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current() */, { 9657, 383, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset() */, { 9651, 339, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 339, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::Dispose() */, { 9653, 339, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::MoveNext() */, { 9654, 339, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::MoveNextRare() */, { 9655, 339, -1 } /* T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::get_Current() */, { 9656, 339, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current() */, { 9657, 339, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset() */, { 9651, 336, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 336, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::Dispose() */, { 9653, 336, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::MoveNext() */, { 9654, 336, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::MoveNextRare() */, { 9655, 336, -1 } /* T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::get_Current() */, { 9656, 336, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() */, { 9657, 336, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() */, { 9651, 338, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 338, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::Dispose() */, { 9653, 338, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::MoveNext() */, { 9654, 338, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::MoveNextRare() */, { 9655, 338, -1 } /* T System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::get_Current() */, { 9656, 338, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current() */, { 9657, 338, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset() */, { 9651, 619, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.CameraDevice/CameraField>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 619, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.CameraDevice/CameraField>::Dispose() */, { 9653, 619, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.CameraDevice/CameraField>::MoveNext() */, { 9654, 619, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.CameraDevice/CameraField>::MoveNextRare() */, { 9655, 619, -1 } /* T System.Collections.Generic.List`1/Enumerator<Vuforia.CameraDevice/CameraField>::get_Current() */, { 9656, 619, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<Vuforia.CameraDevice/CameraField>::System.Collections.IEnumerator.get_Current() */, { 9657, 619, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.CameraDevice/CameraField>::System.Collections.IEnumerator.Reset() */, { 9651, 565, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TargetFinder/TargetSearchResult>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 565, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TargetFinder/TargetSearchResult>::Dispose() */, { 9653, 565, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.TargetFinder/TargetSearchResult>::MoveNext() */, { 9654, 565, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.TargetFinder/TargetSearchResult>::MoveNextRare() */, { 9655, 565, -1 } /* T System.Collections.Generic.List`1/Enumerator<Vuforia.TargetFinder/TargetSearchResult>::get_Current() */, { 9656, 565, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IEnumerator.get_Current() */, { 9657, 565, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IEnumerator.Reset() */, { 9651, 621, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/TrackableResultData>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 621, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/TrackableResultData>::Dispose() */, { 9653, 621, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/TrackableResultData>::MoveNext() */, { 9654, 621, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/TrackableResultData>::MoveNextRare() */, { 9655, 621, -1 } /* T System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/TrackableResultData>::get_Current() */, { 9656, 621, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEnumerator.get_Current() */, { 9657, 621, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEnumerator.Reset() */, { 9651, 632, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetData>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 632, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetData>::Dispose() */, { 9653, 632, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetData>::MoveNext() */, { 9654, 632, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetData>::MoveNextRare() */, { 9655, 632, -1 } /* T System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetData>::get_Current() */, { 9656, 632, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IEnumerator.get_Current() */, { 9657, 632, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IEnumerator.Reset() */, { 9651, 622, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor(System.Collections.Generic.List`1<T>) */, { 9652, 622, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetResultData>::Dispose() */, { 9653, 622, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetResultData>::MoveNext() */, { 9654, 622, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetResultData>::MoveNextRare() */, { 9655, 622, -1 } /* T System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetResultData>::get_Current() */, { 9656, 622, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IEnumerator.get_Current() */, { 9657, 622, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IEnumerator.Reset() */, { 9651, 608, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Collections.Generic.List`1<T>) */, { 9654, 608, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::MoveNextRare() */, { 9656, 608, -1 } /* System.Object System.Collections.Generic.List`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEnumerator.get_Current() */, { 9657, 608, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEnumerator.Reset() */, { 9599, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 9600, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Int32) */, { 9601, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 115, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Capacity() */, { 9603, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::set_Capacity(System.Int32) */, { 9604, 115, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Count() */, { 9605, 115, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.get_IsFixedSize() */, { 9606, 115, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 115, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.get_IsReadOnly() */, { 9608, 115, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 115, -1 } /* System.Object System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.ICollection.get_SyncRoot() */, { 9610, 115, -1 } /* T System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Item(System.Int32) */, { 9611, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::set_Item(System.Int32,T) */, { 9612, 115, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IsCompatibleObject(System.Object) */, { 9613, 115, -1 } /* System.Object System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9615, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Add(T) */, { 9616, 115, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Add(System.Object) */, { 9617, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 115, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::AsReadOnly() */, { 9619, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Clear() */, { 9620, 115, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Contains(T) */, { 9621, 115, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Contains(System.Object) */, { 9622, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CopyTo(T[]) */, { 9623, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CopyTo(T[],System.Int32) */, { 9626, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::EnsureCapacity(System.Int32) */, { 9627, 115, -1 } /* T System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Find(System.Predicate`1<T>) */, { 9628, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::ForEach(System.Action`1<T>) */, { 9629, 115, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetEnumerator() */, { 9630, 115, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 115, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 115, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IndexOf(T) */, { 9633, 115, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Insert(System.Int32,T) */, { 9635, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 115, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Remove(T) */, { 9638, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Remove(System.Object) */, { 9639, 115, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::RemoveAll(System.Predicate`1<T>) */, { 9640, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::RemoveAt(System.Int32) */, { 9641, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::RemoveRange(System.Int32,System.Int32) */, { 9642, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Reverse() */, { 9643, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Reverse(System.Int32,System.Int32) */, { 9644, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Sort() */, { 9645, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Sort(System.Comparison`1<T>) */, { 9648, 115, -1 } /* T[] System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::ToArray() */, { 9649, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::TrimExcess() */, { 9650, 115, -1 } /* System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.cctor() */, { 9600, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Int32) */, { 9601, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Capacity() */, { 9603, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::set_Capacity(System.Int32) */, { 9605, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.get_IsFixedSize() */, { 9606, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.get_IsReadOnly() */, { 9608, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 24, -1 } /* System.Object System.Collections.Generic.List`1<System.Int32>::System.Collections.ICollection.get_SyncRoot() */, { 9611, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::set_Item(System.Int32,T) */, { 9612, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::IsCompatibleObject(System.Object) */, { 9613, 24, -1 } /* System.Object System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9616, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.Add(System.Object) */, { 9618, 24, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<System.Int32>::AsReadOnly() */, { 9621, 24, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.Contains(System.Object) */, { 9622, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::CopyTo(T[]) */, { 9623, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::CopyTo(T[],System.Int32) */, { 9626, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::EnsureCapacity(System.Int32) */, { 9627, 24, -1 } /* T System.Collections.Generic.List`1<System.Int32>::Find(System.Predicate`1<T>) */, { 9628, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::ForEach(System.Action`1<T>) */, { 9630, 24, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<System.Int32>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 24, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<System.Int32>::System.Collections.IEnumerable.GetEnumerator() */, { 9633, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Insert(System.Int32,T) */, { 9635, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9638, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::System.Collections.IList.Remove(System.Object) */, { 9639, 24, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32>::RemoveAll(System.Predicate`1<T>) */, { 9641, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::RemoveRange(System.Int32,System.Int32) */, { 9642, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Reverse() */, { 9643, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Reverse(System.Int32,System.Int32) */, { 9644, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Sort() */, { 9645, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::Sort(System.Comparison`1<T>) */, { 9649, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::TrimExcess() */, { 9650, 24, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32>::.cctor() */, { 9599, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::.ctor() */, { 9600, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::.ctor(System.Int32) */, { 9601, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 91, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::get_Capacity() */, { 9603, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::set_Capacity(System.Int32) */, { 9604, 91, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::get_Count() */, { 9605, 91, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.get_IsFixedSize() */, { 9606, 91, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 91, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.get_IsReadOnly() */, { 9608, 91, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 91, -1 } /* System.Object System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.ICollection.get_SyncRoot() */, { 9610, 91, -1 } /* T System.Collections.Generic.List`1<System.Int32Enum>::get_Item(System.Int32) */, { 9611, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::set_Item(System.Int32,T) */, { 9612, 91, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::IsCompatibleObject(System.Object) */, { 9613, 91, -1 } /* System.Object System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9615, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Add(T) */, { 9616, 91, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.Add(System.Object) */, { 9617, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 91, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<System.Int32Enum>::AsReadOnly() */, { 9619, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Clear() */, { 9620, 91, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::Contains(T) */, { 9621, 91, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.Contains(System.Object) */, { 9622, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::CopyTo(T[]) */, { 9623, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::CopyTo(T[],System.Int32) */, { 9626, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::EnsureCapacity(System.Int32) */, { 9627, 91, -1 } /* T System.Collections.Generic.List`1<System.Int32Enum>::Find(System.Predicate`1<T>) */, { 9628, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::ForEach(System.Action`1<T>) */, { 9629, 91, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Int32Enum>::GetEnumerator() */, { 9630, 91, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 91, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 91, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::IndexOf(T) */, { 9633, 91, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Insert(System.Int32,T) */, { 9635, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 91, -1 } /* System.Boolean System.Collections.Generic.List`1<System.Int32Enum>::Remove(T) */, { 9638, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::System.Collections.IList.Remove(System.Object) */, { 9639, 91, -1 } /* System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::RemoveAll(System.Predicate`1<T>) */, { 9640, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::RemoveAt(System.Int32) */, { 9641, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::RemoveRange(System.Int32,System.Int32) */, { 9642, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Reverse() */, { 9643, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Reverse(System.Int32,System.Int32) */, { 9644, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Sort() */, { 9645, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::Sort(System.Comparison`1<T>) */, { 9648, 91, -1 } /* T[] System.Collections.Generic.List`1<System.Int32Enum>::ToArray() */, { 9649, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::TrimExcess() */, { 9650, 91, -1 } /* System.Void System.Collections.Generic.List`1<System.Int32Enum>::.cctor() */, { 9600, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Int32) */, { 9601, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 324, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Capacity() */, { 9603, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::set_Capacity(System.Int32) */, { 9605, 324, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.get_IsFixedSize() */, { 9606, 324, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 324, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.get_IsReadOnly() */, { 9608, 324, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 324, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.ICollection.get_SyncRoot() */, { 9612, 324, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IsCompatibleObject(System.Object) */, { 9613, 324, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9615, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Add(T) */, { 9616, 324, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Add(System.Object) */, { 9617, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 324, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::AsReadOnly() */, { 9619, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Clear() */, { 9620, 324, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Contains(T) */, { 9621, 324, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Contains(System.Object) */, { 9622, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CopyTo(T[]) */, { 9623, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CopyTo(T[],System.Int32) */, { 9626, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::EnsureCapacity(System.Int32) */, { 9627, 324, -1 } /* T System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Find(System.Predicate`1<T>) */, { 9628, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::ForEach(System.Action`1<T>) */, { 9629, 324, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetEnumerator() */, { 9630, 324, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 324, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 324, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IndexOf(T) */, { 9633, 324, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.IndexOf(System.Object) */, { 9635, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 324, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Remove(T) */, { 9638, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Remove(System.Object) */, { 9639, 324, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::RemoveAll(System.Predicate`1<T>) */, { 9641, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::RemoveRange(System.Int32,System.Int32) */, { 9642, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Reverse() */, { 9643, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Reverse(System.Int32,System.Int32) */, { 9644, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Sort() */, { 9645, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Sort(System.Comparison`1<T>) */, { 9648, 324, -1 } /* T[] System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::ToArray() */, { 9649, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::TrimExcess() */, { 9650, 324, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.cctor() */, { 9599, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::.ctor() */, { 9600, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::.ctor(System.Int32) */, { 9601, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 340, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Color32>::get_Capacity() */, { 9603, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::set_Capacity(System.Int32) */, { 9604, 340, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Color32>::get_Count() */, { 9605, 340, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.IList.get_IsFixedSize() */, { 9606, 340, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 340, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.IList.get_IsReadOnly() */, { 9608, 340, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 340, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.ICollection.get_SyncRoot() */, { 9612, 340, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Color32>::IsCompatibleObject(System.Object) */, { 9613, 340, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9616, 340, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.IList.Add(System.Object) */, { 9618, 340, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<UnityEngine.Color32>::AsReadOnly() */, { 9620, 340, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Color32>::Contains(T) */, { 9621, 340, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.IList.Contains(System.Object) */, { 9622, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::CopyTo(T[]) */, { 9623, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::CopyTo(T[],System.Int32) */, { 9626, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::EnsureCapacity(System.Int32) */, { 9627, 340, -1 } /* T System.Collections.Generic.List`1<UnityEngine.Color32>::Find(System.Predicate`1<T>) */, { 9628, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::ForEach(System.Action`1<T>) */, { 9629, 340, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.Color32>::GetEnumerator() */, { 9630, 340, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 340, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 340, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Color32>::IndexOf(T) */, { 9633, 340, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::Insert(System.Int32,T) */, { 9635, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 340, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Color32>::Remove(T) */, { 9638, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::System.Collections.IList.Remove(System.Object) */, { 9639, 340, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Color32>::RemoveAll(System.Predicate`1<T>) */, { 9640, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::RemoveAt(System.Int32) */, { 9641, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::RemoveRange(System.Int32,System.Int32) */, { 9642, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::Reverse() */, { 9643, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::Reverse(System.Int32,System.Int32) */, { 9644, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::Sort() */, { 9645, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::Sort(System.Comparison`1<T>) */, { 9648, 340, -1 } /* T[] System.Collections.Generic.List`1<UnityEngine.Color32>::ToArray() */, { 9649, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::TrimExcess() */, { 9650, 340, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Color32>::.cctor() */, { 9600, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Int32) */, { 9601, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 459, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::get_Capacity() */, { 9603, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::set_Capacity(System.Int32) */, { 9605, 459, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.get_IsFixedSize() */, { 9606, 459, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 459, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.get_IsReadOnly() */, { 9608, 459, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 459, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.ICollection.get_SyncRoot() */, { 9611, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::set_Item(System.Int32,T) */, { 9612, 459, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::IsCompatibleObject(System.Object) */, { 9613, 459, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9616, 459, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.Add(System.Object) */, { 9617, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 459, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::AsReadOnly() */, { 9620, 459, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Contains(T) */, { 9621, 459, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.Contains(System.Object) */, { 9622, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::CopyTo(T[]) */, { 9623, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::CopyTo(T[],System.Int32) */, { 9626, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::EnsureCapacity(System.Int32) */, { 9627, 459, -1 } /* T System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Find(System.Predicate`1<T>) */, { 9628, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::ForEach(System.Action`1<T>) */, { 9629, 459, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::GetEnumerator() */, { 9630, 459, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 459, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 459, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::IndexOf(T) */, { 9633, 459, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Insert(System.Int32,T) */, { 9635, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 459, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Remove(T) */, { 9638, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.Remove(System.Object) */, { 9639, 459, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::RemoveAll(System.Predicate`1<T>) */, { 9640, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::RemoveAt(System.Int32) */, { 9641, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::RemoveRange(System.Int32,System.Int32) */, { 9642, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Reverse() */, { 9643, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Reverse(System.Int32,System.Int32) */, { 9644, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Sort() */, { 9645, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9648, 459, -1 } /* T[] System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::ToArray() */, { 9649, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::TrimExcess() */, { 9650, 459, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>::.cctor() */, { 9599, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::.ctor() */, { 9601, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 384, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UICharInfo>::get_Capacity() */, { 9603, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::set_Capacity(System.Int32) */, { 9604, 384, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UICharInfo>::get_Count() */, { 9605, 384, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.IList.get_IsFixedSize() */, { 9606, 384, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 384, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.IList.get_IsReadOnly() */, { 9608, 384, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 384, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.ICollection.get_SyncRoot() */, { 9610, 384, -1 } /* T System.Collections.Generic.List`1<UnityEngine.UICharInfo>::get_Item(System.Int32) */, { 9611, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::set_Item(System.Int32,T) */, { 9612, 384, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UICharInfo>::IsCompatibleObject(System.Object) */, { 9613, 384, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9615, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Add(T) */, { 9616, 384, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.IList.Add(System.Object) */, { 9617, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 384, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<UnityEngine.UICharInfo>::AsReadOnly() */, { 9619, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Clear() */, { 9620, 384, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Contains(T) */, { 9621, 384, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.IList.Contains(System.Object) */, { 9622, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::CopyTo(T[]) */, { 9623, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::CopyTo(T[],System.Int32) */, { 9626, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::EnsureCapacity(System.Int32) */, { 9627, 384, -1 } /* T System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Find(System.Predicate`1<T>) */, { 9628, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::ForEach(System.Action`1<T>) */, { 9629, 384, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UICharInfo>::GetEnumerator() */, { 9630, 384, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 384, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 384, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UICharInfo>::IndexOf(T) */, { 9633, 384, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Insert(System.Int32,T) */, { 9635, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 384, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Remove(T) */, { 9638, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::System.Collections.IList.Remove(System.Object) */, { 9639, 384, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UICharInfo>::RemoveAll(System.Predicate`1<T>) */, { 9640, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::RemoveAt(System.Int32) */, { 9641, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::RemoveRange(System.Int32,System.Int32) */, { 9642, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Reverse() */, { 9643, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Reverse(System.Int32,System.Int32) */, { 9644, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Sort() */, { 9645, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::Sort(System.Comparison`1<T>) */, { 9648, 384, -1 } /* T[] System.Collections.Generic.List`1<UnityEngine.UICharInfo>::ToArray() */, { 9649, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::TrimExcess() */, { 9650, 384, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UICharInfo>::.cctor() */, { 9599, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::.ctor() */, { 9601, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 385, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UILineInfo>::get_Capacity() */, { 9603, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::set_Capacity(System.Int32) */, { 9604, 385, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UILineInfo>::get_Count() */, { 9605, 385, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.IList.get_IsFixedSize() */, { 9606, 385, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 385, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.IList.get_IsReadOnly() */, { 9608, 385, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 385, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.ICollection.get_SyncRoot() */, { 9610, 385, -1 } /* T System.Collections.Generic.List`1<UnityEngine.UILineInfo>::get_Item(System.Int32) */, { 9611, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::set_Item(System.Int32,T) */, { 9612, 385, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UILineInfo>::IsCompatibleObject(System.Object) */, { 9613, 385, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9615, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Add(T) */, { 9616, 385, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.IList.Add(System.Object) */, { 9617, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 385, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<UnityEngine.UILineInfo>::AsReadOnly() */, { 9619, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Clear() */, { 9620, 385, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Contains(T) */, { 9621, 385, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.IList.Contains(System.Object) */, { 9622, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::CopyTo(T[]) */, { 9623, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::CopyTo(T[],System.Int32) */, { 9626, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::EnsureCapacity(System.Int32) */, { 9627, 385, -1 } /* T System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Find(System.Predicate`1<T>) */, { 9628, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::ForEach(System.Action`1<T>) */, { 9629, 385, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UILineInfo>::GetEnumerator() */, { 9630, 385, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 385, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 385, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UILineInfo>::IndexOf(T) */, { 9633, 385, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Insert(System.Int32,T) */, { 9635, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 385, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Remove(T) */, { 9638, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::System.Collections.IList.Remove(System.Object) */, { 9639, 385, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UILineInfo>::RemoveAll(System.Predicate`1<T>) */, { 9640, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::RemoveAt(System.Int32) */, { 9641, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::RemoveRange(System.Int32,System.Int32) */, { 9642, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Reverse() */, { 9643, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Reverse(System.Int32,System.Int32) */, { 9644, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Sort() */, { 9645, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::Sort(System.Comparison`1<T>) */, { 9648, 385, -1 } /* T[] System.Collections.Generic.List`1<UnityEngine.UILineInfo>::ToArray() */, { 9649, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::TrimExcess() */, { 9650, 385, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UILineInfo>::.cctor() */, { 9599, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::.ctor() */, { 9601, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9605, 383, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.IList.get_IsFixedSize() */, { 9606, 383, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 383, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.IList.get_IsReadOnly() */, { 9608, 383, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 383, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.ICollection.get_SyncRoot() */, { 9612, 383, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UIVertex>::IsCompatibleObject(System.Object) */, { 9613, 383, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9616, 383, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.IList.Add(System.Object) */, { 9617, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 383, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<UnityEngine.UIVertex>::AsReadOnly() */, { 9619, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::Clear() */, { 9620, 383, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UIVertex>::Contains(T) */, { 9621, 383, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.IList.Contains(System.Object) */, { 9622, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::CopyTo(T[]) */, { 9623, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::CopyTo(T[],System.Int32) */, { 9626, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::EnsureCapacity(System.Int32) */, { 9627, 383, -1 } /* T System.Collections.Generic.List`1<UnityEngine.UIVertex>::Find(System.Predicate`1<T>) */, { 9628, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::ForEach(System.Action`1<T>) */, { 9629, 383, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIVertex>::GetEnumerator() */, { 9630, 383, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 383, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 383, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UIVertex>::IndexOf(T) */, { 9633, 383, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::Insert(System.Int32,T) */, { 9635, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 383, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.UIVertex>::Remove(T) */, { 9638, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::System.Collections.IList.Remove(System.Object) */, { 9639, 383, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.UIVertex>::RemoveAll(System.Predicate`1<T>) */, { 9640, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::RemoveAt(System.Int32) */, { 9641, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::RemoveRange(System.Int32,System.Int32) */, { 9642, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::Reverse() */, { 9643, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::Reverse(System.Int32,System.Int32) */, { 9644, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::Sort() */, { 9645, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::Sort(System.Comparison`1<T>) */, { 9648, 383, -1 } /* T[] System.Collections.Generic.List`1<UnityEngine.UIVertex>::ToArray() */, { 9649, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::TrimExcess() */, { 9650, 383, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.UIVertex>::.cctor() */, { 9599, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::.ctor() */, { 9600, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::.ctor(System.Int32) */, { 9601, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 339, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector2>::get_Capacity() */, { 9603, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::set_Capacity(System.Int32) */, { 9604, 339, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector2>::get_Count() */, { 9605, 339, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.IList.get_IsFixedSize() */, { 9606, 339, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 339, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.IList.get_IsReadOnly() */, { 9608, 339, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 339, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.ICollection.get_SyncRoot() */, { 9612, 339, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector2>::IsCompatibleObject(System.Object) */, { 9613, 339, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9616, 339, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.IList.Add(System.Object) */, { 9618, 339, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<UnityEngine.Vector2>::AsReadOnly() */, { 9620, 339, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector2>::Contains(T) */, { 9621, 339, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.IList.Contains(System.Object) */, { 9622, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::CopyTo(T[]) */, { 9623, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::CopyTo(T[],System.Int32) */, { 9626, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::EnsureCapacity(System.Int32) */, { 9627, 339, -1 } /* T System.Collections.Generic.List`1<UnityEngine.Vector2>::Find(System.Predicate`1<T>) */, { 9628, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::ForEach(System.Action`1<T>) */, { 9629, 339, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.Vector2>::GetEnumerator() */, { 9630, 339, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 339, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 339, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector2>::IndexOf(T) */, { 9633, 339, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::Insert(System.Int32,T) */, { 9635, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 339, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector2>::Remove(T) */, { 9638, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::System.Collections.IList.Remove(System.Object) */, { 9639, 339, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector2>::RemoveAll(System.Predicate`1<T>) */, { 9640, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::RemoveAt(System.Int32) */, { 9641, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::RemoveRange(System.Int32,System.Int32) */, { 9642, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::Reverse() */, { 9643, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::Reverse(System.Int32,System.Int32) */, { 9644, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::Sort() */, { 9645, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::Sort(System.Comparison`1<T>) */, { 9648, 339, -1 } /* T[] System.Collections.Generic.List`1<UnityEngine.Vector2>::ToArray() */, { 9649, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::TrimExcess() */, { 9650, 339, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector2>::.cctor() */, { 9599, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::.ctor() */, { 9600, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::.ctor(System.Int32) */, { 9601, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 336, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector3>::get_Capacity() */, { 9603, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::set_Capacity(System.Int32) */, { 9605, 336, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.IList.get_IsFixedSize() */, { 9606, 336, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 336, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.IList.get_IsReadOnly() */, { 9608, 336, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 336, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.ICollection.get_SyncRoot() */, { 9612, 336, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector3>::IsCompatibleObject(System.Object) */, { 9613, 336, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9616, 336, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.IList.Add(System.Object) */, { 9618, 336, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<UnityEngine.Vector3>::AsReadOnly() */, { 9620, 336, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector3>::Contains(T) */, { 9621, 336, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.IList.Contains(System.Object) */, { 9622, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::CopyTo(T[]) */, { 9623, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::CopyTo(T[],System.Int32) */, { 9626, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::EnsureCapacity(System.Int32) */, { 9627, 336, -1 } /* T System.Collections.Generic.List`1<UnityEngine.Vector3>::Find(System.Predicate`1<T>) */, { 9628, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::ForEach(System.Action`1<T>) */, { 9629, 336, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.Vector3>::GetEnumerator() */, { 9630, 336, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 336, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 336, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector3>::IndexOf(T) */, { 9633, 336, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::Insert(System.Int32,T) */, { 9635, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 336, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector3>::Remove(T) */, { 9638, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::System.Collections.IList.Remove(System.Object) */, { 9639, 336, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector3>::RemoveAll(System.Predicate`1<T>) */, { 9640, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::RemoveAt(System.Int32) */, { 9641, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::RemoveRange(System.Int32,System.Int32) */, { 9642, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::Reverse() */, { 9643, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::Reverse(System.Int32,System.Int32) */, { 9644, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::Sort() */, { 9645, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::Sort(System.Comparison`1<T>) */, { 9648, 336, -1 } /* T[] System.Collections.Generic.List`1<UnityEngine.Vector3>::ToArray() */, { 9649, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::TrimExcess() */, { 9650, 336, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector3>::.cctor() */, { 9599, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::.ctor() */, { 9600, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::.ctor(System.Int32) */, { 9601, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 338, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector4>::get_Capacity() */, { 9603, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::set_Capacity(System.Int32) */, { 9604, 338, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector4>::get_Count() */, { 9605, 338, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.IList.get_IsFixedSize() */, { 9606, 338, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 338, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.IList.get_IsReadOnly() */, { 9608, 338, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 338, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.ICollection.get_SyncRoot() */, { 9612, 338, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector4>::IsCompatibleObject(System.Object) */, { 9613, 338, -1 } /* System.Object System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9616, 338, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.IList.Add(System.Object) */, { 9618, 338, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<UnityEngine.Vector4>::AsReadOnly() */, { 9620, 338, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector4>::Contains(T) */, { 9621, 338, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.IList.Contains(System.Object) */, { 9622, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::CopyTo(T[]) */, { 9623, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::CopyTo(T[],System.Int32) */, { 9626, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::EnsureCapacity(System.Int32) */, { 9627, 338, -1 } /* T System.Collections.Generic.List`1<UnityEngine.Vector4>::Find(System.Predicate`1<T>) */, { 9628, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::ForEach(System.Action`1<T>) */, { 9629, 338, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.Vector4>::GetEnumerator() */, { 9630, 338, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 338, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 338, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector4>::IndexOf(T) */, { 9633, 338, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::Insert(System.Int32,T) */, { 9635, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 338, -1 } /* System.Boolean System.Collections.Generic.List`1<UnityEngine.Vector4>::Remove(T) */, { 9638, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::System.Collections.IList.Remove(System.Object) */, { 9639, 338, -1 } /* System.Int32 System.Collections.Generic.List`1<UnityEngine.Vector4>::RemoveAll(System.Predicate`1<T>) */, { 9640, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::RemoveAt(System.Int32) */, { 9641, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::RemoveRange(System.Int32,System.Int32) */, { 9642, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::Reverse() */, { 9643, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::Reverse(System.Int32,System.Int32) */, { 9644, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::Sort() */, { 9645, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::Sort(System.Comparison`1<T>) */, { 9648, 338, -1 } /* T[] System.Collections.Generic.List`1<UnityEngine.Vector4>::ToArray() */, { 9649, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::TrimExcess() */, { 9650, 338, -1 } /* System.Void System.Collections.Generic.List`1<UnityEngine.Vector4>::.cctor() */, { 9600, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::.ctor(System.Int32) */, { 9601, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 619, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::get_Capacity() */, { 9603, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::set_Capacity(System.Int32) */, { 9604, 619, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::get_Count() */, { 9605, 619, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.get_IsFixedSize() */, { 9606, 619, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 619, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.get_IsReadOnly() */, { 9608, 619, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 619, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.ICollection.get_SyncRoot() */, { 9610, 619, -1 } /* T System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::get_Item(System.Int32) */, { 9611, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::set_Item(System.Int32,T) */, { 9612, 619, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::IsCompatibleObject(System.Object) */, { 9613, 619, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9616, 619, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.Add(System.Object) */, { 9617, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 619, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::AsReadOnly() */, { 9619, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Clear() */, { 9620, 619, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Contains(T) */, { 9621, 619, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.Contains(System.Object) */, { 9622, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::CopyTo(T[]) */, { 9623, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::CopyTo(T[],System.Int32) */, { 9626, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::EnsureCapacity(System.Int32) */, { 9627, 619, -1 } /* T System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Find(System.Predicate`1<T>) */, { 9628, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::ForEach(System.Action`1<T>) */, { 9629, 619, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::GetEnumerator() */, { 9630, 619, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 619, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 619, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::IndexOf(T) */, { 9633, 619, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Insert(System.Int32,T) */, { 9635, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 619, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Remove(T) */, { 9638, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.Remove(System.Object) */, { 9639, 619, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::RemoveAll(System.Predicate`1<T>) */, { 9640, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::RemoveAt(System.Int32) */, { 9641, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::RemoveRange(System.Int32,System.Int32) */, { 9642, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Reverse() */, { 9643, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Reverse(System.Int32,System.Int32) */, { 9644, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Sort() */, { 9645, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::Sort(System.Comparison`1<T>) */, { 9648, 619, -1 } /* T[] System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::ToArray() */, { 9649, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::TrimExcess() */, { 9650, 619, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.CameraDevice/CameraField>::.cctor() */, { 9600, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor(System.Int32) */, { 9601, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 565, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::get_Capacity() */, { 9603, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::set_Capacity(System.Int32) */, { 9604, 565, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::get_Count() */, { 9605, 565, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.get_IsFixedSize() */, { 9606, 565, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 565, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.get_IsReadOnly() */, { 9608, 565, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 565, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.ICollection.get_SyncRoot() */, { 9610, 565, -1 } /* T System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::get_Item(System.Int32) */, { 9611, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::set_Item(System.Int32,T) */, { 9612, 565, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::IsCompatibleObject(System.Object) */, { 9613, 565, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9616, 565, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.Add(System.Object) */, { 9617, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 565, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::AsReadOnly() */, { 9619, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Clear() */, { 9620, 565, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Contains(T) */, { 9621, 565, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.Contains(System.Object) */, { 9622, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::CopyTo(T[]) */, { 9623, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::CopyTo(T[],System.Int32) */, { 9626, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::EnsureCapacity(System.Int32) */, { 9627, 565, -1 } /* T System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Find(System.Predicate`1<T>) */, { 9628, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::ForEach(System.Action`1<T>) */, { 9629, 565, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::GetEnumerator() */, { 9630, 565, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 565, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 565, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::IndexOf(T) */, { 9633, 565, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Insert(System.Int32,T) */, { 9635, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 565, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Remove(T) */, { 9638, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.Remove(System.Object) */, { 9639, 565, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::RemoveAll(System.Predicate`1<T>) */, { 9640, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::RemoveAt(System.Int32) */, { 9641, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::RemoveRange(System.Int32,System.Int32) */, { 9642, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Reverse() */, { 9643, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Reverse(System.Int32,System.Int32) */, { 9644, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Sort() */, { 9645, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::Sort(System.Comparison`1<T>) */, { 9648, 565, -1 } /* T[] System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::ToArray() */, { 9649, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::TrimExcess() */, { 9650, 565, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TargetFinder/TargetSearchResult>::.cctor() */, { 9599, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::.ctor() */, { 9600, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::.ctor(System.Int32) */, { 9601, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 621, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::get_Capacity() */, { 9603, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::set_Capacity(System.Int32) */, { 9604, 621, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::get_Count() */, { 9605, 621, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.get_IsFixedSize() */, { 9606, 621, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 621, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.get_IsReadOnly() */, { 9608, 621, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 621, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.ICollection.get_SyncRoot() */, { 9610, 621, -1 } /* T System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::get_Item(System.Int32) */, { 9611, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::set_Item(System.Int32,T) */, { 9612, 621, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::IsCompatibleObject(System.Object) */, { 9613, 621, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9615, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Add(T) */, { 9616, 621, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.Add(System.Object) */, { 9617, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 621, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::AsReadOnly() */, { 9619, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Clear() */, { 9620, 621, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Contains(T) */, { 9621, 621, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.Contains(System.Object) */, { 9622, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::CopyTo(T[]) */, { 9623, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::CopyTo(T[],System.Int32) */, { 9626, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::EnsureCapacity(System.Int32) */, { 9627, 621, -1 } /* T System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Find(System.Predicate`1<T>) */, { 9628, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::ForEach(System.Action`1<T>) */, { 9629, 621, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::GetEnumerator() */, { 9630, 621, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 621, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 621, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::IndexOf(T) */, { 9633, 621, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Insert(System.Int32,T) */, { 9635, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 621, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Remove(T) */, { 9638, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.Remove(System.Object) */, { 9639, 621, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::RemoveAll(System.Predicate`1<T>) */, { 9640, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::RemoveAt(System.Int32) */, { 9641, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::RemoveRange(System.Int32,System.Int32) */, { 9642, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Reverse() */, { 9643, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Reverse(System.Int32,System.Int32) */, { 9644, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Sort() */, { 9645, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::Sort(System.Comparison`1<T>) */, { 9648, 621, -1 } /* T[] System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::ToArray() */, { 9649, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::TrimExcess() */, { 9650, 621, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/TrackableResultData>::.cctor() */, { 9600, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor(System.Int32) */, { 9601, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 632, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::get_Capacity() */, { 9603, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::set_Capacity(System.Int32) */, { 9604, 632, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::get_Count() */, { 9605, 632, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.get_IsFixedSize() */, { 9606, 632, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 632, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.get_IsReadOnly() */, { 9608, 632, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 632, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.ICollection.get_SyncRoot() */, { 9610, 632, -1 } /* T System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::get_Item(System.Int32) */, { 9611, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::set_Item(System.Int32,T) */, { 9612, 632, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::IsCompatibleObject(System.Object) */, { 9613, 632, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9616, 632, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.Add(System.Object) */, { 9617, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 632, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::AsReadOnly() */, { 9619, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Clear() */, { 9620, 632, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Contains(T) */, { 9621, 632, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.Contains(System.Object) */, { 9622, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::CopyTo(T[]) */, { 9623, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::CopyTo(T[],System.Int32) */, { 9626, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::EnsureCapacity(System.Int32) */, { 9627, 632, -1 } /* T System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Find(System.Predicate`1<T>) */, { 9628, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::ForEach(System.Action`1<T>) */, { 9629, 632, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::GetEnumerator() */, { 9630, 632, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 632, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 632, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::IndexOf(T) */, { 9633, 632, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Insert(System.Int32,T) */, { 9635, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 632, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Remove(T) */, { 9638, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.Remove(System.Object) */, { 9639, 632, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::RemoveAll(System.Predicate`1<T>) */, { 9640, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::RemoveAt(System.Int32) */, { 9641, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::RemoveRange(System.Int32,System.Int32) */, { 9642, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Reverse() */, { 9643, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Reverse(System.Int32,System.Int32) */, { 9644, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Sort() */, { 9645, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::Sort(System.Comparison`1<T>) */, { 9649, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::TrimExcess() */, { 9650, 632, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetData>::.cctor() */, { 9599, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor() */, { 9600, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor(System.Int32) */, { 9601, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor(System.Collections.Generic.IEnumerable`1<T>) */, { 9602, 622, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::get_Capacity() */, { 9603, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::set_Capacity(System.Int32) */, { 9604, 622, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::get_Count() */, { 9605, 622, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.get_IsFixedSize() */, { 9606, 622, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 622, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.get_IsReadOnly() */, { 9608, 622, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 622, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.ICollection.get_SyncRoot() */, { 9610, 622, -1 } /* T System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::get_Item(System.Int32) */, { 9611, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::set_Item(System.Int32,T) */, { 9612, 622, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::IsCompatibleObject(System.Object) */, { 9613, 622, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9616, 622, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.Add(System.Object) */, { 9617, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 622, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::AsReadOnly() */, { 9619, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Clear() */, { 9620, 622, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Contains(T) */, { 9621, 622, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.Contains(System.Object) */, { 9622, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::CopyTo(T[]) */, { 9623, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::CopyTo(T[],System.Int32) */, { 9626, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::EnsureCapacity(System.Int32) */, { 9627, 622, -1 } /* T System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Find(System.Predicate`1<T>) */, { 9628, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::ForEach(System.Action`1<T>) */, { 9629, 622, -1 } /* System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::GetEnumerator() */, { 9630, 622, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 622, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 622, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::IndexOf(T) */, { 9633, 622, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Insert(System.Int32,T) */, { 9635, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 622, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Remove(T) */, { 9638, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.Remove(System.Object) */, { 9639, 622, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::RemoveAll(System.Predicate`1<T>) */, { 9640, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::RemoveAt(System.Int32) */, { 9641, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::RemoveRange(System.Int32,System.Int32) */, { 9642, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Reverse() */, { 9643, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Reverse(System.Int32,System.Int32) */, { 9644, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Sort() */, { 9645, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::Sort(System.Comparison`1<T>) */, { 9649, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::TrimExcess() */, { 9650, 622, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.TrackerData/VuMarkTargetResultData>::.cctor() */, { 9599, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor() */, { 9600, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Int32) */, { 9602, 608, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Capacity() */, { 9603, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::set_Capacity(System.Int32) */, { 9604, 608, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Count() */, { 9605, 608, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.get_IsFixedSize() */, { 9606, 608, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9607, 608, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.get_IsReadOnly() */, { 9608, 608, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.ICollection.get_IsSynchronized() */, { 9609, 608, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.ICollection.get_SyncRoot() */, { 9610, 608, -1 } /* T System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Item(System.Int32) */, { 9611, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::set_Item(System.Int32,T) */, { 9612, 608, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::IsCompatibleObject(System.Object) */, { 9613, 608, -1 } /* System.Object System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.get_Item(System.Int32) */, { 9614, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9615, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Add(T) */, { 9616, 608, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.Add(System.Object) */, { 9617, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::AddRange(System.Collections.Generic.IEnumerable`1<T>) */, { 9618, 608, -1 } /* System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::AsReadOnly() */, { 9619, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Clear() */, { 9620, 608, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Contains(T) */, { 9621, 608, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.Contains(System.Object) */, { 9622, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::CopyTo(T[]) */, { 9623, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9624, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::CopyTo(System.Int32,T[],System.Int32,System.Int32) */, { 9625, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::CopyTo(T[],System.Int32) */, { 9626, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::EnsureCapacity(System.Int32) */, { 9627, 608, -1 } /* T System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Find(System.Predicate`1<T>) */, { 9628, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::ForEach(System.Action`1<T>) */, { 9630, 608, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 9631, 608, -1 } /* System.Collections.IEnumerator System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEnumerable.GetEnumerator() */, { 9632, 608, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::IndexOf(T) */, { 9633, 608, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.IndexOf(System.Object) */, { 9634, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Insert(System.Int32,T) */, { 9635, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9636, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9637, 608, -1 } /* System.Boolean System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Remove(T) */, { 9638, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.Remove(System.Object) */, { 9639, 608, -1 } /* System.Int32 System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::RemoveAll(System.Predicate`1<T>) */, { 9640, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::RemoveAt(System.Int32) */, { 9641, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::RemoveRange(System.Int32,System.Int32) */, { 9642, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Reverse() */, { 9643, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Reverse(System.Int32,System.Int32) */, { 9644, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Sort() */, { 9645, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Sort(System.Collections.Generic.IComparer`1<T>) */, { 9646, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9647, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::Sort(System.Comparison`1<T>) */, { 9648, 608, -1 } /* T[] System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::ToArray() */, { 9649, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::TrimExcess() */, { 9650, 608, -1 } /* System.Void System.Collections.Generic.List`1<Vuforia.VuforiaManager/TrackableIdPair>::.cctor() */, { 9510, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Boolean>::Compare(T,T) */, { 9511, 47, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.Boolean>::Equals(System.Object) */, { 9512, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Boolean>::GetHashCode() */, { 9513, 47, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.Boolean>::.ctor() */, { 9510, 115, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Compare(T,T) */, { 9511, 115, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(System.Object) */, { 9512, 115, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetHashCode() */, { 9513, 115, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 9510, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32>::Compare(T,T) */, { 9511, 24, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.Int32>::Equals(System.Object) */, { 9512, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32>::GetHashCode() */, { 9513, 24, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.Int32>::.ctor() */, { 9510, 91, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::Compare(T,T) */, { 9511, 91, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::Equals(System.Object) */, { 9512, 91, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::GetHashCode() */, { 9513, 91, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.Int32Enum>::.ctor() */, { 9510, 83, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.UInt64>::Compare(T,T) */, { 9511, 83, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<System.UInt64>::Equals(System.Object) */, { 9512, 83, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<System.UInt64>::GetHashCode() */, { 9513, 83, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<System.UInt64>::.ctor() */, { 9510, 324, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Compare(T,T) */, { 9511, 324, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Equals(System.Object) */, { 9512, 324, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetHashCode() */, { 9513, 324, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 9510, 340, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>::Compare(T,T) */, { 9511, 340, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>::Equals(System.Object) */, { 9512, 340, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>::GetHashCode() */, { 9513, 340, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>::.ctor() */, { 9510, 459, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>::Compare(T,T) */, { 9511, 459, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>::Equals(System.Object) */, { 9512, 459, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>::GetHashCode() */, { 9513, 459, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>::.ctor() */, { 9510, 373, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>::Compare(T,T) */, { 9511, 373, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>::Equals(System.Object) */, { 9512, 373, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>::GetHashCode() */, { 9513, 373, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>::.ctor() */, { 9510, 384, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>::Compare(T,T) */, { 9511, 384, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>::Equals(System.Object) */, { 9512, 384, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>::GetHashCode() */, { 9513, 384, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>::.ctor() */, { 9510, 385, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>::Compare(T,T) */, { 9511, 385, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>::Equals(System.Object) */, { 9512, 385, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>::GetHashCode() */, { 9513, 385, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>::.ctor() */, { 9510, 383, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>::Compare(T,T) */, { 9511, 383, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>::Equals(System.Object) */, { 9512, 383, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>::GetHashCode() */, { 9513, 383, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>::.ctor() */, { 9510, 339, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector2>::Compare(T,T) */, { 9511, 339, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector2>::Equals(System.Object) */, { 9512, 339, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector2>::GetHashCode() */, { 9513, 339, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector2>::.ctor() */, { 9510, 336, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>::Compare(T,T) */, { 9511, 336, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>::Equals(System.Object) */, { 9512, 336, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>::GetHashCode() */, { 9513, 336, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>::.ctor() */, { 9510, 338, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>::Compare(T,T) */, { 9511, 338, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>::Equals(System.Object) */, { 9512, 338, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>::GetHashCode() */, { 9513, 338, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>::.ctor() */, { 9510, 619, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/CameraField>::Compare(T,T) */, { 9511, 619, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/CameraField>::Equals(System.Object) */, { 9512, 619, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/CameraField>::GetHashCode() */, { 9513, 619, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.CameraDevice/CameraField>::.ctor() */, { 9510, 565, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.TargetFinder/TargetSearchResult>::Compare(T,T) */, { 9511, 565, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.TargetFinder/TargetSearchResult>::Equals(System.Object) */, { 9512, 565, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.TargetFinder/TargetSearchResult>::GetHashCode() */, { 9513, 565, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor() */, { 9510, 621, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/TrackableResultData>::Compare(T,T) */, { 9511, 621, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/TrackableResultData>::Equals(System.Object) */, { 9512, 621, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/TrackableResultData>::GetHashCode() */, { 9513, 621, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/TrackableResultData>::.ctor() */, { 9510, 632, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/VuMarkTargetData>::Compare(T,T) */, { 9511, 632, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/VuMarkTargetData>::Equals(System.Object) */, { 9512, 632, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/VuMarkTargetData>::GetHashCode() */, { 9513, 632, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor() */, { 9510, 622, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::Compare(T,T) */, { 9511, 622, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::Equals(System.Object) */, { 9512, 622, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::GetHashCode() */, { 9513, 622, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor() */, { 9510, 608, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::Compare(T,T) */, { 9511, 608, -1 } /* System.Boolean System.Collections.Generic.ObjectComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::Equals(System.Object) */, { 9512, 608, -1 } /* System.Int32 System.Collections.Generic.ObjectComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::GetHashCode() */, { 9513, 608, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor() */, { 9537, 47, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::Equals(T,T) */, { 9538, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::GetHashCode(T) */, { 9539, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 47, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::Equals(System.Object) */, { 9542, 47, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::GetHashCode() */, { 9543, 47, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>::.ctor() */, { 9537, 8, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::Equals(T,T) */, { 9538, 8, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::GetHashCode(T) */, { 9539, 8, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 8, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 8, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::Equals(System.Object) */, { 9542, 8, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::GetHashCode() */, { 9543, 8, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>::.ctor() */, { 9537, 9, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::Equals(T,T) */, { 9538, 9, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::GetHashCode(T) */, { 9539, 9, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 9, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 9, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::Equals(System.Object) */, { 9542, 9, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::GetHashCode() */, { 9543, 9, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Char>::.ctor() */, { 9537, 115, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(T,T) */, { 9538, 115, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetHashCode(T) */, { 9539, 115, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 115, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 115, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Equals(System.Object) */, { 9542, 115, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetHashCode() */, { 9543, 115, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor() */, { 9537, 24, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::Equals(T,T) */, { 9538, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::GetHashCode(T) */, { 9539, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 24, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::Equals(System.Object) */, { 9542, 24, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::GetHashCode() */, { 9543, 24, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>::.ctor() */, { 9537, 91, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::Equals(T,T) */, { 9538, 91, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::GetHashCode(T) */, { 9539, 91, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 91, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 91, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::Equals(System.Object) */, { 9542, 91, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::GetHashCode() */, { 9543, 91, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>::.ctor() */, { 9537, 167, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::Equals(T,T) */, { 9538, 167, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::GetHashCode(T) */, { 9539, 167, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 167, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 167, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::Equals(System.Object) */, { 9542, 167, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::GetHashCode() */, { 9543, 167, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>::.ctor() */, { 9537, 110, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::Equals(T,T) */, { 9538, 110, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::GetHashCode(T) */, { 9539, 110, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 110, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 110, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::Equals(System.Object) */, { 9542, 110, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::GetHashCode() */, { 9543, 110, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.Single>::.ctor() */, { 9537, 135, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::Equals(T,T) */, { 9538, 135, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::GetHashCode(T) */, { 9539, 135, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 135, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 135, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::Equals(System.Object) */, { 9542, 135, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::GetHashCode() */, { 9543, 135, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<System.UInt16>::.ctor() */, { 9537, 324, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Equals(T,T) */, { 9538, 324, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetHashCode(T) */, { 9539, 324, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 324, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 324, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Equals(System.Object) */, { 9542, 324, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetHashCode() */, { 9543, 324, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor() */, { 9537, 340, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::Equals(T,T) */, { 9538, 340, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::GetHashCode(T) */, { 9539, 340, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 340, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 340, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::Equals(System.Object) */, { 9542, 340, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::GetHashCode() */, { 9543, 340, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>::.ctor() */, { 9537, 459, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::Equals(T,T) */, { 9538, 459, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::GetHashCode(T) */, { 9539, 459, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 459, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 459, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::Equals(System.Object) */, { 9542, 459, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::GetHashCode() */, { 9543, 459, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::.ctor() */, { 9537, 335, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::Equals(T,T) */, { 9538, 335, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::GetHashCode(T) */, { 9539, 335, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 335, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 335, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::Equals(System.Object) */, { 9542, 335, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::GetHashCode() */, { 9543, 335, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Matrix4x4>::.ctor() */, { 9537, 498, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::Equals(T,T) */, { 9538, 498, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::GetHashCode(T) */, { 9539, 498, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 498, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 498, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::Equals(System.Object) */, { 9542, 498, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::GetHashCode() */, { 9543, 498, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>::.ctor() */, { 9537, 538, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::Equals(T,T) */, { 9538, 538, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::GetHashCode(T) */, { 9539, 538, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 538, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 538, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::Equals(System.Object) */, { 9542, 538, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::GetHashCode() */, { 9543, 538, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>::.ctor() */, { 9537, 541, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::Equals(T,T) */, { 9538, 541, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::GetHashCode(T) */, { 9539, 541, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 541, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 541, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::Equals(System.Object) */, { 9542, 541, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::GetHashCode() */, { 9543, 541, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>::.ctor() */, { 9537, 384, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::Equals(T,T) */, { 9538, 384, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::GetHashCode(T) */, { 9539, 384, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 384, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 384, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::Equals(System.Object) */, { 9542, 384, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::GetHashCode() */, { 9543, 384, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>::.ctor() */, { 9537, 385, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::Equals(T,T) */, { 9538, 385, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::GetHashCode(T) */, { 9539, 385, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 385, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 385, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::Equals(System.Object) */, { 9542, 385, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::GetHashCode() */, { 9543, 385, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>::.ctor() */, { 9537, 383, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::Equals(T,T) */, { 9538, 383, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::GetHashCode(T) */, { 9539, 383, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 383, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 383, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::Equals(System.Object) */, { 9542, 383, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::GetHashCode() */, { 9543, 383, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>::.ctor() */, { 9537, 339, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector2>::Equals(T,T) */, { 9538, 339, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector2>::GetHashCode(T) */, { 9539, 339, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector2>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 339, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector2>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 339, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector2>::Equals(System.Object) */, { 9542, 339, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector2>::GetHashCode() */, { 9543, 339, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector2>::.ctor() */, { 9537, 336, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::Equals(T,T) */, { 9538, 336, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::GetHashCode(T) */, { 9539, 336, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 336, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 336, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::Equals(System.Object) */, { 9542, 336, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::GetHashCode() */, { 9543, 336, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>::.ctor() */, { 9537, 338, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::Equals(T,T) */, { 9538, 338, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::GetHashCode(T) */, { 9539, 338, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 338, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 338, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::Equals(System.Object) */, { 9542, 338, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::GetHashCode() */, { 9543, 338, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>::.ctor() */, { 9537, 619, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::Equals(T,T) */, { 9538, 619, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::GetHashCode(T) */, { 9539, 619, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 619, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 619, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::Equals(System.Object) */, { 9542, 619, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::GetHashCode() */, { 9543, 619, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.CameraDevice/CameraField>::.ctor() */, { 9537, 565, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::Equals(T,T) */, { 9538, 565, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::GetHashCode(T) */, { 9539, 565, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 565, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 565, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::Equals(System.Object) */, { 9542, 565, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::GetHashCode() */, { 9543, 565, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor() */, { 9537, 621, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::Equals(T,T) */, { 9538, 621, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::GetHashCode(T) */, { 9539, 621, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 621, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 621, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::Equals(System.Object) */, { 9542, 621, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::GetHashCode() */, { 9543, 621, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/TrackableResultData>::.ctor() */, { 9537, 669, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::Equals(T,T) */, { 9538, 669, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::GetHashCode(T) */, { 9539, 669, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 669, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 669, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::Equals(System.Object) */, { 9542, 669, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::GetHashCode() */, { 9543, 669, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VirtualButtonData>::.ctor() */, { 9537, 632, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::Equals(T,T) */, { 9538, 632, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::GetHashCode(T) */, { 9539, 632, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 632, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 632, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::Equals(System.Object) */, { 9542, 632, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::GetHashCode() */, { 9543, 632, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor() */, { 9537, 622, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::Equals(T,T) */, { 9538, 622, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::GetHashCode(T) */, { 9539, 622, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 622, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 622, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::Equals(System.Object) */, { 9542, 622, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::GetHashCode() */, { 9543, 622, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor() */, { 9537, 608, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::Equals(T,T) */, { 9538, 608, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::GetHashCode(T) */, { 9539, 608, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 608, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 608, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::Equals(System.Object) */, { 9542, 608, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::GetHashCode() */, { 9543, 608, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor() */, { 9537, 676, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::Equals(T,T) */, { 9538, 676, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::GetHashCode(T) */, { 9539, 676, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9540, 676, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9541, 676, -1 } /* System.Boolean System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::Equals(System.Object) */, { 9542, 676, -1 } /* System.Int32 System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::GetHashCode() */, { 9543, 676, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<Vuforia.WebCamProfile/ProfileData>::.ctor() */, { 10771, 351, -1 } /* System.Void System.Collections.Generic.Queue`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor(System.Collections.Generic.Queue`1<T>) */, { 10772, 351, -1 } /* System.Void System.Collections.Generic.Queue`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dispose() */, { 10773, 351, -1 } /* System.Boolean System.Collections.Generic.Queue`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext() */, { 10774, 351, -1 } /* T System.Collections.Generic.Queue`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Current() */, { 10775, 351, -1 } /* System.Void System.Collections.Generic.Queue`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::ThrowEnumerationNotStartedOrEnded() */, { 10776, 351, -1 } /* System.Object System.Collections.Generic.Queue`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.get_Current() */, { 10777, 351, -1 } /* System.Void System.Collections.Generic.Queue`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.Reset() */, { 10758, 351, -1 } /* System.Void System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor() */, { 10761, 351, -1 } /* System.Boolean System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.ICollection.get_IsSynchronized() */, { 10762, 351, -1 } /* System.Object System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.ICollection.get_SyncRoot() */, { 10763, 351, -1 } /* System.Void System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 10765, 351, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.Generic.IEnumerable<T>.GetEnumerator() */, { 10766, 351, -1 } /* System.Collections.IEnumerator System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerable.GetEnumerator() */, { 10768, 351, -1 } /* System.Void System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::SetCapacity(System.Int32) */, { 10769, 351, -1 } /* System.Void System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext(System.Int32&) */, { 10770, 351, -1 } /* System.Void System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::ThrowForEmptyQueue() */, { 9279, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 115, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Count() */, { 9281, 115, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Item(System.Int32) */, { 9282, 115, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Contains(T) */, { 9283, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::CopyTo(T[],System.Int32) */, { 9284, 115, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::GetEnumerator() */, { 9285, 115, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IndexOf(T) */, { 9286, 115, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 115, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 115, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 115, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 115, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 115, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 115, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.get_IsFixedSize() */, { 9299, 115, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.get_IsReadOnly() */, { 9300, 115, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 115, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Add(System.Object) */, { 9303, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Clear() */, { 9304, 115, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::IsCompatibleObject(System.Object) */, { 9305, 115, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Contains(System.Object) */, { 9306, 115, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.Remove(System.Object) */, { 9309, 115, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 24, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::get_Count() */, { 9281, 24, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::get_Item(System.Int32) */, { 9282, 24, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::Contains(T) */, { 9283, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::CopyTo(T[],System.Int32) */, { 9284, 24, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::GetEnumerator() */, { 9285, 24, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::IndexOf(T) */, { 9286, 24, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 24, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 24, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 24, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 24, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 24, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 24, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IList.get_IsFixedSize() */, { 9299, 24, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IList.get_IsReadOnly() */, { 9300, 24, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 24, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IList.Add(System.Object) */, { 9303, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IList.Clear() */, { 9304, 24, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::IsCompatibleObject(System.Object) */, { 9305, 24, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IList.Contains(System.Object) */, { 9306, 24, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IList.Remove(System.Object) */, { 9309, 24, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 91, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::get_Count() */, { 9281, 91, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::get_Item(System.Int32) */, { 9282, 91, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::Contains(T) */, { 9283, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::CopyTo(T[],System.Int32) */, { 9284, 91, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::GetEnumerator() */, { 9285, 91, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::IndexOf(T) */, { 9286, 91, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 91, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 91, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 91, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 91, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 91, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 91, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IList.get_IsFixedSize() */, { 9299, 91, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IList.get_IsReadOnly() */, { 9300, 91, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 91, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IList.Add(System.Object) */, { 9303, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IList.Clear() */, { 9304, 91, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::IsCompatibleObject(System.Object) */, { 9305, 91, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IList.Contains(System.Object) */, { 9306, 91, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IList.Remove(System.Object) */, { 9309, 91, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Int32Enum>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 173, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, { 9281, 173, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, { 9282, 173, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::Contains(T) */, { 9283, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::CopyTo(T[],System.Int32) */, { 9284, 173, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::GetEnumerator() */, { 9285, 173, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::IndexOf(T) */, { 9286, 173, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 173, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 173, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 173, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 173, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 173, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 173, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.get_IsFixedSize() */, { 9299, 173, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.get_IsReadOnly() */, { 9300, 173, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 173, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Add(System.Object) */, { 9303, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Clear() */, { 9304, 173, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::IsCompatibleObject(System.Object) */, { 9305, 173, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Contains(System.Object) */, { 9306, 173, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.Remove(System.Object) */, { 9309, 173, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IList.RemoveAt(System.Int32) */, { 9280, 172, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, { 9281, 172, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, { 9282, 172, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::Contains(T) */, { 9283, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::CopyTo(T[],System.Int32) */, { 9284, 172, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::GetEnumerator() */, { 9285, 172, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::IndexOf(T) */, { 9286, 172, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 172, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 172, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 172, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 172, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 172, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 172, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.get_IsFixedSize() */, { 9299, 172, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.get_IsReadOnly() */, { 9300, 172, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 172, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Add(System.Object) */, { 9303, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Clear() */, { 9304, 172, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::IsCompatibleObject(System.Object) */, { 9305, 172, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Contains(System.Object) */, { 9306, 172, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.Remove(System.Object) */, { 9309, 172, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 324, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Count() */, { 9281, 324, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Item(System.Int32) */, { 9282, 324, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Contains(T) */, { 9283, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::CopyTo(T[],System.Int32) */, { 9284, 324, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::GetEnumerator() */, { 9285, 324, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IndexOf(T) */, { 9286, 324, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 324, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 324, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 324, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 324, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 324, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 324, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.get_IsFixedSize() */, { 9299, 324, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.get_IsReadOnly() */, { 9300, 324, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 324, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Add(System.Object) */, { 9303, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Clear() */, { 9304, 324, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::IsCompatibleObject(System.Object) */, { 9305, 324, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Contains(System.Object) */, { 9306, 324, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.Remove(System.Object) */, { 9309, 324, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 340, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::get_Count() */, { 9281, 340, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::get_Item(System.Int32) */, { 9282, 340, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::Contains(T) */, { 9283, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::CopyTo(T[],System.Int32) */, { 9284, 340, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::GetEnumerator() */, { 9285, 340, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::IndexOf(T) */, { 9286, 340, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 340, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 340, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 340, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 340, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 340, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 340, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IList.get_IsFixedSize() */, { 9299, 340, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IList.get_IsReadOnly() */, { 9300, 340, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 340, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IList.Add(System.Object) */, { 9303, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IList.Clear() */, { 9304, 340, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::IsCompatibleObject(System.Object) */, { 9305, 340, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IList.Contains(System.Object) */, { 9306, 340, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IList.Remove(System.Object) */, { 9309, 340, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Color32>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 459, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::get_Count() */, { 9281, 459, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::get_Item(System.Int32) */, { 9282, 459, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::Contains(T) */, { 9283, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::CopyTo(T[],System.Int32) */, { 9284, 459, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::GetEnumerator() */, { 9285, 459, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::IndexOf(T) */, { 9286, 459, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 459, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 459, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 459, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 459, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 459, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 459, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.get_IsFixedSize() */, { 9299, 459, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.get_IsReadOnly() */, { 9300, 459, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 459, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.Add(System.Object) */, { 9303, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.Clear() */, { 9304, 459, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::IsCompatibleObject(System.Object) */, { 9305, 459, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.Contains(System.Object) */, { 9306, 459, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.Remove(System.Object) */, { 9309, 459, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 384, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::get_Count() */, { 9281, 384, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::get_Item(System.Int32) */, { 9282, 384, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::Contains(T) */, { 9283, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::CopyTo(T[],System.Int32) */, { 9284, 384, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::GetEnumerator() */, { 9285, 384, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::IndexOf(T) */, { 9286, 384, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 384, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 384, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 384, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 384, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 384, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 384, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IList.get_IsFixedSize() */, { 9299, 384, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IList.get_IsReadOnly() */, { 9300, 384, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 384, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IList.Add(System.Object) */, { 9303, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IList.Clear() */, { 9304, 384, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::IsCompatibleObject(System.Object) */, { 9305, 384, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IList.Contains(System.Object) */, { 9306, 384, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IList.Remove(System.Object) */, { 9309, 384, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UICharInfo>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 385, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::get_Count() */, { 9281, 385, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::get_Item(System.Int32) */, { 9282, 385, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::Contains(T) */, { 9283, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::CopyTo(T[],System.Int32) */, { 9284, 385, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::GetEnumerator() */, { 9285, 385, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::IndexOf(T) */, { 9286, 385, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 385, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 385, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 385, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 385, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 385, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 385, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IList.get_IsFixedSize() */, { 9299, 385, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IList.get_IsReadOnly() */, { 9300, 385, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 385, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IList.Add(System.Object) */, { 9303, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IList.Clear() */, { 9304, 385, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::IsCompatibleObject(System.Object) */, { 9305, 385, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IList.Contains(System.Object) */, { 9306, 385, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IList.Remove(System.Object) */, { 9309, 385, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UILineInfo>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 383, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::get_Count() */, { 9281, 383, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::get_Item(System.Int32) */, { 9282, 383, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::Contains(T) */, { 9283, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::CopyTo(T[],System.Int32) */, { 9284, 383, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::GetEnumerator() */, { 9285, 383, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::IndexOf(T) */, { 9286, 383, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 383, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 383, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 383, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 383, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 383, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 383, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IList.get_IsFixedSize() */, { 9299, 383, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IList.get_IsReadOnly() */, { 9300, 383, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 383, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IList.Add(System.Object) */, { 9303, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IList.Clear() */, { 9304, 383, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::IsCompatibleObject(System.Object) */, { 9305, 383, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IList.Contains(System.Object) */, { 9306, 383, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IList.Remove(System.Object) */, { 9309, 383, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.UIVertex>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 339, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::get_Count() */, { 9281, 339, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::get_Item(System.Int32) */, { 9282, 339, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::Contains(T) */, { 9283, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::CopyTo(T[],System.Int32) */, { 9284, 339, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::GetEnumerator() */, { 9285, 339, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::IndexOf(T) */, { 9286, 339, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 339, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 339, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 339, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 339, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 339, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 339, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IList.get_IsFixedSize() */, { 9299, 339, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IList.get_IsReadOnly() */, { 9300, 339, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 339, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IList.Add(System.Object) */, { 9303, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IList.Clear() */, { 9304, 339, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::IsCompatibleObject(System.Object) */, { 9305, 339, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IList.Contains(System.Object) */, { 9306, 339, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IList.Remove(System.Object) */, { 9309, 339, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector2>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 336, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::get_Count() */, { 9281, 336, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::get_Item(System.Int32) */, { 9282, 336, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::Contains(T) */, { 9283, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::CopyTo(T[],System.Int32) */, { 9284, 336, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::GetEnumerator() */, { 9285, 336, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::IndexOf(T) */, { 9286, 336, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 336, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 336, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 336, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 336, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 336, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 336, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IList.get_IsFixedSize() */, { 9299, 336, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IList.get_IsReadOnly() */, { 9300, 336, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 336, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IList.Add(System.Object) */, { 9303, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IList.Clear() */, { 9304, 336, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::IsCompatibleObject(System.Object) */, { 9305, 336, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IList.Contains(System.Object) */, { 9306, 336, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IList.Remove(System.Object) */, { 9309, 336, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector3>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 338, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::get_Count() */, { 9281, 338, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::get_Item(System.Int32) */, { 9282, 338, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::Contains(T) */, { 9283, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::CopyTo(T[],System.Int32) */, { 9284, 338, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::GetEnumerator() */, { 9285, 338, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::IndexOf(T) */, { 9286, 338, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 338, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 338, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 338, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 338, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 338, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 338, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IList.get_IsFixedSize() */, { 9299, 338, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IList.get_IsReadOnly() */, { 9300, 338, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 338, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IList.Add(System.Object) */, { 9303, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IList.Clear() */, { 9304, 338, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::IsCompatibleObject(System.Object) */, { 9305, 338, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IList.Contains(System.Object) */, { 9306, 338, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IList.Remove(System.Object) */, { 9309, 338, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<UnityEngine.Vector4>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 619, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::get_Count() */, { 9281, 619, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::get_Item(System.Int32) */, { 9282, 619, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::Contains(T) */, { 9283, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::CopyTo(T[],System.Int32) */, { 9284, 619, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::GetEnumerator() */, { 9285, 619, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::IndexOf(T) */, { 9286, 619, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 619, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 619, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 619, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 619, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 619, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 619, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.get_IsFixedSize() */, { 9299, 619, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.get_IsReadOnly() */, { 9300, 619, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 619, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.Add(System.Object) */, { 9303, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.Clear() */, { 9304, 619, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::IsCompatibleObject(System.Object) */, { 9305, 619, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.Contains(System.Object) */, { 9306, 619, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.Remove(System.Object) */, { 9309, 619, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.CameraDevice/CameraField>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 565, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::get_Count() */, { 9281, 565, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::get_Item(System.Int32) */, { 9282, 565, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::Contains(T) */, { 9283, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::CopyTo(T[],System.Int32) */, { 9284, 565, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::GetEnumerator() */, { 9285, 565, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::IndexOf(T) */, { 9286, 565, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 565, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 565, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 565, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 565, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 565, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 565, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.get_IsFixedSize() */, { 9299, 565, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.get_IsReadOnly() */, { 9300, 565, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 565, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.Add(System.Object) */, { 9303, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.Clear() */, { 9304, 565, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::IsCompatibleObject(System.Object) */, { 9305, 565, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.Contains(System.Object) */, { 9306, 565, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.Remove(System.Object) */, { 9309, 565, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TargetFinder/TargetSearchResult>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 621, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::get_Count() */, { 9281, 621, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::get_Item(System.Int32) */, { 9282, 621, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::Contains(T) */, { 9283, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::CopyTo(T[],System.Int32) */, { 9284, 621, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::GetEnumerator() */, { 9285, 621, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::IndexOf(T) */, { 9286, 621, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 621, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 621, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 621, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 621, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 621, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 621, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.get_IsFixedSize() */, { 9299, 621, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.get_IsReadOnly() */, { 9300, 621, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 621, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.Add(System.Object) */, { 9303, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.Clear() */, { 9304, 621, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::IsCompatibleObject(System.Object) */, { 9305, 621, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.Contains(System.Object) */, { 9306, 621, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.Remove(System.Object) */, { 9309, 621, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 632, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::get_Count() */, { 9281, 632, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::get_Item(System.Int32) */, { 9282, 632, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::Contains(T) */, { 9283, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::CopyTo(T[],System.Int32) */, { 9284, 632, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::GetEnumerator() */, { 9285, 632, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::IndexOf(T) */, { 9286, 632, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 632, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 632, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 632, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 632, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 632, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 632, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.get_IsFixedSize() */, { 9299, 632, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.get_IsReadOnly() */, { 9300, 632, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 632, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.Add(System.Object) */, { 9303, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.Clear() */, { 9304, 632, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::IsCompatibleObject(System.Object) */, { 9305, 632, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.Contains(System.Object) */, { 9306, 632, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.Remove(System.Object) */, { 9309, 632, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetData>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 622, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::get_Count() */, { 9281, 622, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::get_Item(System.Int32) */, { 9282, 622, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::Contains(T) */, { 9283, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::CopyTo(T[],System.Int32) */, { 9284, 622, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::GetEnumerator() */, { 9285, 622, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::IndexOf(T) */, { 9286, 622, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 622, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 622, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 622, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 622, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 622, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 622, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.get_IsFixedSize() */, { 9299, 622, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.get_IsReadOnly() */, { 9300, 622, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 622, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.Add(System.Object) */, { 9303, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.Clear() */, { 9304, 622, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::IsCompatibleObject(System.Object) */, { 9305, 622, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.Contains(System.Object) */, { 9306, 622, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.Remove(System.Object) */, { 9309, 622, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.TrackerData/VuMarkTargetResultData>::System.Collections.IList.RemoveAt(System.Int32) */, { 9279, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9280, 608, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Count() */, { 9281, 608, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::get_Item(System.Int32) */, { 9282, 608, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::Contains(T) */, { 9283, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::CopyTo(T[],System.Int32) */, { 9284, 608, -1 } /* System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::GetEnumerator() */, { 9285, 608, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::IndexOf(T) */, { 9286, 608, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.ICollection<T>.get_IsReadOnly() */, { 9287, 608, -1 } /* T System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.IList<T>.get_Item(System.Int32) */, { 9288, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.IList<T>.set_Item(System.Int32,T) */, { 9289, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.ICollection<T>.Add(T) */, { 9290, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.ICollection<T>.Clear() */, { 9291, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.IList<T>.Insert(System.Int32,T) */, { 9292, 608, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.ICollection<T>.Remove(T) */, { 9293, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.Generic.IList<T>.RemoveAt(System.Int32) */, { 9294, 608, -1 } /* System.Collections.IEnumerator System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IEnumerable.GetEnumerator() */, { 9295, 608, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.ICollection.get_IsSynchronized() */, { 9296, 608, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.ICollection.get_SyncRoot() */, { 9297, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.ICollection.CopyTo(System.Array,System.Int32) */, { 9298, 608, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.get_IsFixedSize() */, { 9299, 608, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.get_IsReadOnly() */, { 9300, 608, -1 } /* System.Object System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.get_Item(System.Int32) */, { 9301, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.set_Item(System.Int32,System.Object) */, { 9302, 608, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.Add(System.Object) */, { 9303, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.Clear() */, { 9304, 608, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::IsCompatibleObject(System.Object) */, { 9305, 608, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.Contains(System.Object) */, { 9306, 608, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.IndexOf(System.Object) */, { 9307, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.Insert(System.Int32,System.Object) */, { 9308, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.Remove(System.Object) */, { 9309, 608, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<Vuforia.VuforiaManager/TrackableIdPair>::System.Collections.IList.RemoveAt(System.Int32) */, { 1022, 115, -1 } /* System.Void System.Comparison`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Object,System.IntPtr) */, { 1023, 115, -1 } /* System.Int32 System.Comparison`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Invoke(T,T) */, { 1024, 115, -1 } /* System.IAsyncResult System.Comparison`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 115, -1 } /* System.Int32 System.Comparison`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::EndInvoke(System.IAsyncResult) */, { 1022, 24, -1 } /* System.Void System.Comparison`1<System.Int32>::.ctor(System.Object,System.IntPtr) */, { 1023, 24, -1 } /* System.Int32 System.Comparison`1<System.Int32>::Invoke(T,T) */, { 1024, 24, -1 } /* System.IAsyncResult System.Comparison`1<System.Int32>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 24, -1 } /* System.Int32 System.Comparison`1<System.Int32>::EndInvoke(System.IAsyncResult) */, { 1022, 91, -1 } /* System.Void System.Comparison`1<System.Int32Enum>::.ctor(System.Object,System.IntPtr) */, { 1023, 91, -1 } /* System.Int32 System.Comparison`1<System.Int32Enum>::Invoke(T,T) */, { 1024, 91, -1 } /* System.IAsyncResult System.Comparison`1<System.Int32Enum>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 91, -1 } /* System.Int32 System.Comparison`1<System.Int32Enum>::EndInvoke(System.IAsyncResult) */, { 1022, 83, -1 } /* System.Void System.Comparison`1<System.UInt64>::.ctor(System.Object,System.IntPtr) */, { 1023, 83, -1 } /* System.Int32 System.Comparison`1<System.UInt64>::Invoke(T,T) */, { 1024, 83, -1 } /* System.IAsyncResult System.Comparison`1<System.UInt64>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 83, -1 } /* System.Int32 System.Comparison`1<System.UInt64>::EndInvoke(System.IAsyncResult) */, { 1022, 324, -1 } /* System.Void System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Object,System.IntPtr) */, { 1023, 324, -1 } /* System.Int32 System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Invoke(T,T) */, { 1024, 324, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 324, -1 } /* System.Int32 System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>::EndInvoke(System.IAsyncResult) */, { 1022, 340, -1 } /* System.Void System.Comparison`1<UnityEngine.Color32>::.ctor(System.Object,System.IntPtr) */, { 1023, 340, -1 } /* System.Int32 System.Comparison`1<UnityEngine.Color32>::Invoke(T,T) */, { 1024, 340, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.Color32>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 340, -1 } /* System.Int32 System.Comparison`1<UnityEngine.Color32>::EndInvoke(System.IAsyncResult) */, { 1023, 459, -1 } /* System.Int32 System.Comparison`1<UnityEngine.EventSystems.RaycastResult>::Invoke(T,T) */, { 1024, 459, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.EventSystems.RaycastResult>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 459, -1 } /* System.Int32 System.Comparison`1<UnityEngine.EventSystems.RaycastResult>::EndInvoke(System.IAsyncResult) */, { 1023, 373, -1 } /* System.Int32 System.Comparison`1<UnityEngine.RaycastHit>::Invoke(T,T) */, { 1024, 373, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.RaycastHit>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 373, -1 } /* System.Int32 System.Comparison`1<UnityEngine.RaycastHit>::EndInvoke(System.IAsyncResult) */, { 1022, 384, -1 } /* System.Void System.Comparison`1<UnityEngine.UICharInfo>::.ctor(System.Object,System.IntPtr) */, { 1023, 384, -1 } /* System.Int32 System.Comparison`1<UnityEngine.UICharInfo>::Invoke(T,T) */, { 1024, 384, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.UICharInfo>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 384, -1 } /* System.Int32 System.Comparison`1<UnityEngine.UICharInfo>::EndInvoke(System.IAsyncResult) */, { 1022, 385, -1 } /* System.Void System.Comparison`1<UnityEngine.UILineInfo>::.ctor(System.Object,System.IntPtr) */, { 1023, 385, -1 } /* System.Int32 System.Comparison`1<UnityEngine.UILineInfo>::Invoke(T,T) */, { 1024, 385, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.UILineInfo>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 385, -1 } /* System.Int32 System.Comparison`1<UnityEngine.UILineInfo>::EndInvoke(System.IAsyncResult) */, { 1022, 383, -1 } /* System.Void System.Comparison`1<UnityEngine.UIVertex>::.ctor(System.Object,System.IntPtr) */, { 1023, 383, -1 } /* System.Int32 System.Comparison`1<UnityEngine.UIVertex>::Invoke(T,T) */, { 1024, 383, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.UIVertex>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 383, -1 } /* System.Int32 System.Comparison`1<UnityEngine.UIVertex>::EndInvoke(System.IAsyncResult) */, { 1022, 339, -1 } /* System.Void System.Comparison`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr) */, { 1023, 339, -1 } /* System.Int32 System.Comparison`1<UnityEngine.Vector2>::Invoke(T,T) */, { 1024, 339, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.Vector2>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 339, -1 } /* System.Int32 System.Comparison`1<UnityEngine.Vector2>::EndInvoke(System.IAsyncResult) */, { 1022, 336, -1 } /* System.Void System.Comparison`1<UnityEngine.Vector3>::.ctor(System.Object,System.IntPtr) */, { 1023, 336, -1 } /* System.Int32 System.Comparison`1<UnityEngine.Vector3>::Invoke(T,T) */, { 1024, 336, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.Vector3>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 336, -1 } /* System.Int32 System.Comparison`1<UnityEngine.Vector3>::EndInvoke(System.IAsyncResult) */, { 1022, 338, -1 } /* System.Void System.Comparison`1<UnityEngine.Vector4>::.ctor(System.Object,System.IntPtr) */, { 1023, 338, -1 } /* System.Int32 System.Comparison`1<UnityEngine.Vector4>::Invoke(T,T) */, { 1024, 338, -1 } /* System.IAsyncResult System.Comparison`1<UnityEngine.Vector4>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 338, -1 } /* System.Int32 System.Comparison`1<UnityEngine.Vector4>::EndInvoke(System.IAsyncResult) */, { 1022, 619, -1 } /* System.Void System.Comparison`1<Vuforia.CameraDevice/CameraField>::.ctor(System.Object,System.IntPtr) */, { 1023, 619, -1 } /* System.Int32 System.Comparison`1<Vuforia.CameraDevice/CameraField>::Invoke(T,T) */, { 1024, 619, -1 } /* System.IAsyncResult System.Comparison`1<Vuforia.CameraDevice/CameraField>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 619, -1 } /* System.Int32 System.Comparison`1<Vuforia.CameraDevice/CameraField>::EndInvoke(System.IAsyncResult) */, { 1022, 565, -1 } /* System.Void System.Comparison`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor(System.Object,System.IntPtr) */, { 1023, 565, -1 } /* System.Int32 System.Comparison`1<Vuforia.TargetFinder/TargetSearchResult>::Invoke(T,T) */, { 1024, 565, -1 } /* System.IAsyncResult System.Comparison`1<Vuforia.TargetFinder/TargetSearchResult>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 565, -1 } /* System.Int32 System.Comparison`1<Vuforia.TargetFinder/TargetSearchResult>::EndInvoke(System.IAsyncResult) */, { 1022, 621, -1 } /* System.Void System.Comparison`1<Vuforia.TrackerData/TrackableResultData>::.ctor(System.Object,System.IntPtr) */, { 1023, 621, -1 } /* System.Int32 System.Comparison`1<Vuforia.TrackerData/TrackableResultData>::Invoke(T,T) */, { 1024, 621, -1 } /* System.IAsyncResult System.Comparison`1<Vuforia.TrackerData/TrackableResultData>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 621, -1 } /* System.Int32 System.Comparison`1<Vuforia.TrackerData/TrackableResultData>::EndInvoke(System.IAsyncResult) */, { 1022, 632, -1 } /* System.Void System.Comparison`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor(System.Object,System.IntPtr) */, { 1023, 632, -1 } /* System.Int32 System.Comparison`1<Vuforia.TrackerData/VuMarkTargetData>::Invoke(T,T) */, { 1024, 632, -1 } /* System.IAsyncResult System.Comparison`1<Vuforia.TrackerData/VuMarkTargetData>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 632, -1 } /* System.Int32 System.Comparison`1<Vuforia.TrackerData/VuMarkTargetData>::EndInvoke(System.IAsyncResult) */, { 1022, 622, -1 } /* System.Void System.Comparison`1<Vuforia.TrackerData/VuMarkTargetResultData>::.ctor(System.Object,System.IntPtr) */, { 1023, 622, -1 } /* System.Int32 System.Comparison`1<Vuforia.TrackerData/VuMarkTargetResultData>::Invoke(T,T) */, { 1024, 622, -1 } /* System.IAsyncResult System.Comparison`1<Vuforia.TrackerData/VuMarkTargetResultData>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 622, -1 } /* System.Int32 System.Comparison`1<Vuforia.TrackerData/VuMarkTargetResultData>::EndInvoke(System.IAsyncResult) */, { 1022, 608, -1 } /* System.Void System.Comparison`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Object,System.IntPtr) */, { 1023, 608, -1 } /* System.Int32 System.Comparison`1<Vuforia.VuforiaManager/TrackableIdPair>::Invoke(T,T) */, { 1024, 608, -1 } /* System.IAsyncResult System.Comparison`1<Vuforia.VuforiaManager/TrackableIdPair>::BeginInvoke(T,T,System.AsyncCallback,System.Object) */, { 1025, 608, -1 } /* System.Int32 System.Comparison`1<Vuforia.VuforiaManager/TrackableIdPair>::EndInvoke(System.IAsyncResult) */, { 3236, 8, -1 } /* System.Void System.EmptyArray`1<System.Byte>::.cctor() */, { 3236, 9, -1 } /* System.Void System.EmptyArray`1<System.Char>::.cctor() */, { 3236, 173, -1 } /* System.Void System.EmptyArray`1<System.Reflection.CustomAttributeNamedArgument>::.cctor() */, { 3236, 172, -1 } /* System.Void System.EmptyArray`1<System.Reflection.CustomAttributeTypedArgument>::.cctor() */, { 3236, 65, -1 } /* System.Void System.EmptyArray`1<System.Reflection.ParameterModifier>::.cctor() */, { 3236, 351, -1 } /* System.Void System.EmptyArray`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.cctor() */, { 1002, 47, -1 } /* System.Void System.Func`1<System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 1004, 47, -1 } /* System.IAsyncResult System.Func`1<System.Boolean>::BeginInvoke(System.AsyncCallback,System.Object) */, { 1005, 47, -1 } /* TResult System.Func`1<System.Boolean>::EndInvoke(System.IAsyncResult) */, { 1003, 24, -1 } /* TResult System.Func`1<System.Int32>::Invoke() */, { 1004, 24, -1 } /* System.IAsyncResult System.Func`1<System.Int32>::BeginInvoke(System.AsyncCallback,System.Object) */, { 1005, 24, -1 } /* TResult System.Func`1<System.Int32>::EndInvoke(System.IAsyncResult) */, { 1002, 296, -1 } /* System.Void System.Func`1<System.Nullable`1<System.Int32>>::.ctor(System.Object,System.IntPtr) */, { 1003, 296, -1 } /* TResult System.Func`1<System.Nullable`1<System.Int32>>::Invoke() */, { 1004, 296, -1 } /* System.IAsyncResult System.Func`1<System.Nullable`1<System.Int32>>::BeginInvoke(System.AsyncCallback,System.Object) */, { 1005, 296, -1 } /* TResult System.Func`1<System.Nullable`1<System.Int32>>::EndInvoke(System.IAsyncResult) */, { 1002, 186, -1 } /* System.Void System.Func`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Object,System.IntPtr) */, { 1003, 186, -1 } /* TResult System.Func`1<System.Threading.Tasks.VoidTaskResult>::Invoke() */, { 1004, 186, -1 } /* System.IAsyncResult System.Func`1<System.Threading.Tasks.VoidTaskResult>::BeginInvoke(System.AsyncCallback,System.Object) */, { 1005, 186, -1 } /* TResult System.Func`1<System.Threading.Tasks.VoidTaskResult>::EndInvoke(System.IAsyncResult) */, { 1006, 243, -1 } /* System.Void System.Func`2<System.Object,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 1007, 243, -1 } /* TResult System.Func`2<System.Object,System.Boolean>::Invoke(T) */, { 1008, 243, -1 } /* System.IAsyncResult System.Func`2<System.Object,System.Boolean>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1009, 243, -1 } /* TResult System.Func`2<System.Object,System.Boolean>::EndInvoke(System.IAsyncResult) */, { 1007, 185, -1 } /* TResult System.Func`2<System.Object,System.Int32>::Invoke(T) */, { 1008, 185, -1 } /* System.IAsyncResult System.Func`2<System.Object,System.Int32>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1009, 185, -1 } /* TResult System.Func`2<System.Object,System.Int32>::EndInvoke(System.IAsyncResult) */, { 1006, 298, -1 } /* System.Void System.Func`2<System.Object,System.Nullable`1<System.Int32>>::.ctor(System.Object,System.IntPtr) */, { 1007, 298, -1 } /* TResult System.Func`2<System.Object,System.Nullable`1<System.Int32>>::Invoke(T) */, { 1008, 298, -1 } /* System.IAsyncResult System.Func`2<System.Object,System.Nullable`1<System.Int32>>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1009, 298, -1 } /* TResult System.Func`2<System.Object,System.Nullable`1<System.Int32>>::EndInvoke(System.IAsyncResult) */, { 1006, 549, -1 } /* System.Void System.Func`2<System.Object,System.Single>::.ctor(System.Object,System.IntPtr) */, { 1007, 549, -1 } /* TResult System.Func`2<System.Object,System.Single>::Invoke(T) */, { 1008, 549, -1 } /* System.IAsyncResult System.Func`2<System.Object,System.Single>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1009, 549, -1 } /* TResult System.Func`2<System.Object,System.Single>::EndInvoke(System.IAsyncResult) */, { 1006, 188, -1 } /* System.Void System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>::.ctor(System.Object,System.IntPtr) */, { 1007, 188, -1 } /* TResult System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>::Invoke(T) */, { 1008, 188, -1 } /* System.IAsyncResult System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1009, 188, -1 } /* TResult System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>::EndInvoke(System.IAsyncResult) */, { 1007, 683, -1 } /* TResult System.Func`2<Vuforia.TrackerData/TrackableResultData,System.Boolean>::Invoke(T) */, { 1008, 683, -1 } /* System.IAsyncResult System.Func`2<Vuforia.TrackerData/TrackableResultData,System.Boolean>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1009, 683, -1 } /* TResult System.Func`2<Vuforia.TrackerData/TrackableResultData,System.Boolean>::EndInvoke(System.IAsyncResult) */, { 1010, 448, -1 } /* System.Void System.Func`3<System.Int32,System.IntPtr,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 1012, 448, -1 } /* System.IAsyncResult System.Func`3<System.Int32,System.IntPtr,System.Boolean>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 1013, 448, -1 } /* TResult System.Func`3<System.Int32,System.IntPtr,System.Boolean>::EndInvoke(System.IAsyncResult) */, { 1010, 316, -1 } /* System.Void System.Func`3<System.Object,System.Int32,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1011, 316, -1 } /* TResult System.Func`3<System.Object,System.Int32,System.Object>::Invoke(T1,T2) */, { 1012, 316, -1 } /* System.IAsyncResult System.Func`3<System.Object,System.Int32,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 1013, 316, -1 } /* TResult System.Func`3<System.Object,System.Int32,System.Object>::EndInvoke(System.IAsyncResult) */, { 1010, 193, -1 } /* System.Void System.Func`3<System.Object,System.Object,System.Int32>::.ctor(System.Object,System.IntPtr) */, { 1011, 193, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Int32>::Invoke(T1,T2) */, { 1012, 193, -1 } /* System.IAsyncResult System.Func`3<System.Object,System.Object,System.Int32>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 1013, 193, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Int32>::EndInvoke(System.IAsyncResult) */, { 1010, 200, -1 } /* System.Void System.Func`3<System.Object,System.Object,System.Threading.Tasks.VoidTaskResult>::.ctor(System.Object,System.IntPtr) */, { 1011, 200, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Threading.Tasks.VoidTaskResult>::Invoke(T1,T2) */, { 1012, 200, -1 } /* System.IAsyncResult System.Func`3<System.Object,System.Object,System.Threading.Tasks.VoidTaskResult>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 1013, 200, -1 } /* TResult System.Func`3<System.Object,System.Object,System.Threading.Tasks.VoidTaskResult>::EndInvoke(System.IAsyncResult) */, { 1010, 671, -1 } /* System.Void System.Func`3<System.Object,Vuforia.WebCamProfile/ProfileData,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1011, 671, -1 } /* TResult System.Func`3<System.Object,Vuforia.WebCamProfile/ProfileData,System.Object>::Invoke(T1,T2) */, { 1012, 671, -1 } /* System.IAsyncResult System.Func`3<System.Object,Vuforia.WebCamProfile/ProfileData,System.Object>::BeginInvoke(T1,T2,System.AsyncCallback,System.Object) */, { 1013, 671, -1 } /* TResult System.Func`3<System.Object,Vuforia.WebCamProfile/ProfileData,System.Object>::EndInvoke(System.IAsyncResult) */, { 1014, 134, -1 } /* System.Void System.Func`4<System.Object,System.Object,System.Boolean,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1015, 134, -1 } /* TResult System.Func`4<System.Object,System.Object,System.Boolean,System.Object>::Invoke(T1,T2,T3) */, { 1016, 134, -1 } /* System.IAsyncResult System.Func`4<System.Object,System.Object,System.Boolean,System.Object>::BeginInvoke(T1,T2,T3,System.AsyncCallback,System.Object) */, { 1017, 134, -1 } /* TResult System.Func`4<System.Object,System.Object,System.Boolean,System.Object>::EndInvoke(System.IAsyncResult) */, { 1018, 191, -1 } /* System.Void System.Func`5<System.Object,System.IO.Stream/ReadWriteParameters,System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr) */, { 1019, 191, -1 } /* TResult System.Func`5<System.Object,System.IO.Stream/ReadWriteParameters,System.Object,System.Object,System.Object>::Invoke(T1,T2,T3,T4) */, { 1020, 191, -1 } /* System.IAsyncResult System.Func`5<System.Object,System.IO.Stream/ReadWriteParameters,System.Object,System.Object,System.Object>::BeginInvoke(T1,T2,T3,T4,System.AsyncCallback,System.Object) */, { 1021, 191, -1 } /* TResult System.Func`5<System.Object,System.IO.Stream/ReadWriteParameters,System.Object,System.Object,System.Object>::EndInvoke(System.IAsyncResult) */, { 9599, 179, -1 } /* System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::.ctor() */, { 9615, 179, -1 } /* System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::Add(T) */, { 9610, 179, -1 } /* T System.Collections.Generic.List`1<System.IO.Directory/SearchData>::get_Item(System.Int32) */, { 9640, 179, -1 } /* System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::RemoveAt(System.Int32) */, { 9604, 179, -1 } /* System.Int32 System.Collections.Generic.List`1<System.IO.Directory/SearchData>::get_Count() */, { 9634, 179, -1 } /* System.Void System.Collections.Generic.List`1<System.IO.Directory/SearchData>::Insert(System.Int32,T) */, { 10912, 24, -1 } /* System.Void System.Linq.Buffer`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>) */, { 10913, 24, -1 } /* TElement[] System.Linq.Buffer`1<System.Int32>::ToArray() */, { 10912, 608, -1 } /* System.Void System.Linq.Buffer`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>) */, { 10913, 608, -1 } /* TElement[] System.Linq.Buffer`1<Vuforia.VuforiaManager/TrackableIdPair>::ToArray() */, { 10911, 608, -1 } /* System.Void System.Linq.EmptyEnumerable`1<Vuforia.VuforiaManager/TrackableIdPair>::.cctor() */, { 10889, 621, -1 } /* System.Void System.Linq.Enumerable/<>c__DisplayClass6_0`1<Vuforia.TrackerData/TrackableResultData>::.ctor() */, { 10890, 621, -1 } /* System.Boolean System.Linq.Enumerable/<>c__DisplayClass6_0`1<Vuforia.TrackerData/TrackableResultData>::<CombinePredicates>b__0(TSource) */, { 10837, 621, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<Vuforia.TrackerData/TrackableResultData>::.ctor() */, { 10838, 621, -1 } /* TSource System.Linq.Enumerable/Iterator`1<Vuforia.TrackerData/TrackableResultData>::get_Current() */, { 10840, 621, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<Vuforia.TrackerData/TrackableResultData>::Dispose() */, { 10841, 621, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<Vuforia.TrackerData/TrackableResultData>::GetEnumerator() */, { 10845, 621, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEnumerator.get_Current() */, { 10846, 621, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEnumerable.GetEnumerator() */, { 10847, 621, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<Vuforia.TrackerData/TrackableResultData>::System.Collections.IEnumerator.Reset() */, { 10854, 621, -1 } /* System.Void System.Linq.Enumerable/WhereArrayIterator`1<Vuforia.TrackerData/TrackableResultData>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>) */, { 10855, 621, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<Vuforia.TrackerData/TrackableResultData>::Clone() */, { 10856, 621, -1 } /* System.Boolean System.Linq.Enumerable/WhereArrayIterator`1<Vuforia.TrackerData/TrackableResultData>::MoveNext() */, { 10858, 621, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereArrayIterator`1<Vuforia.TrackerData/TrackableResultData>::Where(System.Func`2<TSource,System.Boolean>) */, { 10848, 621, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<Vuforia.TrackerData/TrackableResultData>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10849, 621, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<Vuforia.TrackerData/TrackableResultData>::Clone() */, { 10850, 621, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<Vuforia.TrackerData/TrackableResultData>::Dispose() */, { 10851, 621, -1 } /* System.Boolean System.Linq.Enumerable/WhereEnumerableIterator`1<Vuforia.TrackerData/TrackableResultData>::MoveNext() */, { 10853, 621, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1<Vuforia.TrackerData/TrackableResultData>::Where(System.Func`2<TSource,System.Boolean>) */, { 10859, 621, -1 } /* System.Void System.Linq.Enumerable/WhereListIterator`1<Vuforia.TrackerData/TrackableResultData>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10860, 621, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/WhereListIterator`1<Vuforia.TrackerData/TrackableResultData>::Clone() */, { 10861, 621, -1 } /* System.Boolean System.Linq.Enumerable/WhereListIterator`1<Vuforia.TrackerData/TrackableResultData>::MoveNext() */, { 10863, 621, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereListIterator`1<Vuforia.TrackerData/TrackableResultData>::Where(System.Func`2<TSource,System.Boolean>) */, { 3304, 47, -1 } /* System.Boolean System.Nullable`1<System.Boolean>::Equals(System.Object) */, { 3305, 47, -1 } /* System.Boolean System.Nullable`1<System.Boolean>::Equals(System.Nullable`1<T>) */, { 3306, 47, -1 } /* System.Int32 System.Nullable`1<System.Boolean>::GetHashCode() */, { 3307, 47, -1 } /* T System.Nullable`1<System.Boolean>::GetValueOrDefault() */, { 3308, 47, -1 } /* System.String System.Nullable`1<System.Boolean>::ToString() */, { 3309, 47, -1 } /* System.Object System.Nullable`1<System.Boolean>::Box(System.Nullable`1<T>) */, { 3310, 47, -1 } /* System.Nullable`1<T> System.Nullable`1<System.Boolean>::Unbox(System.Object) */, { 3304, 24, -1 } /* System.Boolean System.Nullable`1<System.Int32>::Equals(System.Object) */, { 3305, 24, -1 } /* System.Boolean System.Nullable`1<System.Int32>::Equals(System.Nullable`1<T>) */, { 3306, 24, -1 } /* System.Int32 System.Nullable`1<System.Int32>::GetHashCode() */, { 3308, 24, -1 } /* System.String System.Nullable`1<System.Int32>::ToString() */, { 3309, 24, -1 } /* System.Object System.Nullable`1<System.Int32>::Box(System.Nullable`1<T>) */, { 3310, 24, -1 } /* System.Nullable`1<T> System.Nullable`1<System.Int32>::Unbox(System.Object) */, { 3303, 110, -1 } /* T System.Nullable`1<System.Single>::get_Value() */, { 3304, 110, -1 } /* System.Boolean System.Nullable`1<System.Single>::Equals(System.Object) */, { 3305, 110, -1 } /* System.Boolean System.Nullable`1<System.Single>::Equals(System.Nullable`1<T>) */, { 3306, 110, -1 } /* System.Int32 System.Nullable`1<System.Single>::GetHashCode() */, { 3308, 110, -1 } /* System.String System.Nullable`1<System.Single>::ToString() */, { 3309, 110, -1 } /* System.Object System.Nullable`1<System.Single>::Box(System.Nullable`1<T>) */, { 3310, 110, -1 } /* System.Nullable`1<T> System.Nullable`1<System.Single>::Unbox(System.Object) */, { 1030, 115, -1 } /* System.Void System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Object,System.IntPtr) */, { 1031, 115, -1 } /* System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Invoke(T) */, { 1032, 115, -1 } /* System.IAsyncResult System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 115, -1 } /* System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::EndInvoke(System.IAsyncResult) */, { 1030, 24, -1 } /* System.Void System.Predicate`1<System.Int32>::.ctor(System.Object,System.IntPtr) */, { 1031, 24, -1 } /* System.Boolean System.Predicate`1<System.Int32>::Invoke(T) */, { 1032, 24, -1 } /* System.IAsyncResult System.Predicate`1<System.Int32>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 24, -1 } /* System.Boolean System.Predicate`1<System.Int32>::EndInvoke(System.IAsyncResult) */, { 1030, 91, -1 } /* System.Void System.Predicate`1<System.Int32Enum>::.ctor(System.Object,System.IntPtr) */, { 1031, 91, -1 } /* System.Boolean System.Predicate`1<System.Int32Enum>::Invoke(T) */, { 1032, 91, -1 } /* System.IAsyncResult System.Predicate`1<System.Int32Enum>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 91, -1 } /* System.Boolean System.Predicate`1<System.Int32Enum>::EndInvoke(System.IAsyncResult) */, { 1030, 324, -1 } /* System.Void System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor(System.Object,System.IntPtr) */, { 1031, 324, -1 } /* System.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Invoke(T) */, { 1032, 324, -1 } /* System.IAsyncResult System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 324, -1 } /* System.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>::EndInvoke(System.IAsyncResult) */, { 1030, 340, -1 } /* System.Void System.Predicate`1<UnityEngine.Color32>::.ctor(System.Object,System.IntPtr) */, { 1031, 340, -1 } /* System.Boolean System.Predicate`1<UnityEngine.Color32>::Invoke(T) */, { 1032, 340, -1 } /* System.IAsyncResult System.Predicate`1<UnityEngine.Color32>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 340, -1 } /* System.Boolean System.Predicate`1<UnityEngine.Color32>::EndInvoke(System.IAsyncResult) */, { 1030, 459, -1 } /* System.Void System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Object,System.IntPtr) */, { 1031, 459, -1 } /* System.Boolean System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::Invoke(T) */, { 1032, 459, -1 } /* System.IAsyncResult System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 459, -1 } /* System.Boolean System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::EndInvoke(System.IAsyncResult) */, { 1030, 384, -1 } /* System.Void System.Predicate`1<UnityEngine.UICharInfo>::.ctor(System.Object,System.IntPtr) */, { 1031, 384, -1 } /* System.Boolean System.Predicate`1<UnityEngine.UICharInfo>::Invoke(T) */, { 1032, 384, -1 } /* System.IAsyncResult System.Predicate`1<UnityEngine.UICharInfo>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 384, -1 } /* System.Boolean System.Predicate`1<UnityEngine.UICharInfo>::EndInvoke(System.IAsyncResult) */, { 1030, 385, -1 } /* System.Void System.Predicate`1<UnityEngine.UILineInfo>::.ctor(System.Object,System.IntPtr) */, { 1031, 385, -1 } /* System.Boolean System.Predicate`1<UnityEngine.UILineInfo>::Invoke(T) */, { 1032, 385, -1 } /* System.IAsyncResult System.Predicate`1<UnityEngine.UILineInfo>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 385, -1 } /* System.Boolean System.Predicate`1<UnityEngine.UILineInfo>::EndInvoke(System.IAsyncResult) */, { 1030, 383, -1 } /* System.Void System.Predicate`1<UnityEngine.UIVertex>::.ctor(System.Object,System.IntPtr) */, { 1031, 383, -1 } /* System.Boolean System.Predicate`1<UnityEngine.UIVertex>::Invoke(T) */, { 1032, 383, -1 } /* System.IAsyncResult System.Predicate`1<UnityEngine.UIVertex>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 383, -1 } /* System.Boolean System.Predicate`1<UnityEngine.UIVertex>::EndInvoke(System.IAsyncResult) */, { 1030, 339, -1 } /* System.Void System.Predicate`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr) */, { 1031, 339, -1 } /* System.Boolean System.Predicate`1<UnityEngine.Vector2>::Invoke(T) */, { 1032, 339, -1 } /* System.IAsyncResult System.Predicate`1<UnityEngine.Vector2>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 339, -1 } /* System.Boolean System.Predicate`1<UnityEngine.Vector2>::EndInvoke(System.IAsyncResult) */, { 1030, 336, -1 } /* System.Void System.Predicate`1<UnityEngine.Vector3>::.ctor(System.Object,System.IntPtr) */, { 1031, 336, -1 } /* System.Boolean System.Predicate`1<UnityEngine.Vector3>::Invoke(T) */, { 1032, 336, -1 } /* System.IAsyncResult System.Predicate`1<UnityEngine.Vector3>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 336, -1 } /* System.Boolean System.Predicate`1<UnityEngine.Vector3>::EndInvoke(System.IAsyncResult) */, { 1030, 338, -1 } /* System.Void System.Predicate`1<UnityEngine.Vector4>::.ctor(System.Object,System.IntPtr) */, { 1031, 338, -1 } /* System.Boolean System.Predicate`1<UnityEngine.Vector4>::Invoke(T) */, { 1032, 338, -1 } /* System.IAsyncResult System.Predicate`1<UnityEngine.Vector4>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 338, -1 } /* System.Boolean System.Predicate`1<UnityEngine.Vector4>::EndInvoke(System.IAsyncResult) */, { 1030, 619, -1 } /* System.Void System.Predicate`1<Vuforia.CameraDevice/CameraField>::.ctor(System.Object,System.IntPtr) */, { 1031, 619, -1 } /* System.Boolean System.Predicate`1<Vuforia.CameraDevice/CameraField>::Invoke(T) */, { 1032, 619, -1 } /* System.IAsyncResult System.Predicate`1<Vuforia.CameraDevice/CameraField>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 619, -1 } /* System.Boolean System.Predicate`1<Vuforia.CameraDevice/CameraField>::EndInvoke(System.IAsyncResult) */, { 1030, 565, -1 } /* System.Void System.Predicate`1<Vuforia.TargetFinder/TargetSearchResult>::.ctor(System.Object,System.IntPtr) */, { 1031, 565, -1 } /* System.Boolean System.Predicate`1<Vuforia.TargetFinder/TargetSearchResult>::Invoke(T) */, { 1032, 565, -1 } /* System.IAsyncResult System.Predicate`1<Vuforia.TargetFinder/TargetSearchResult>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 565, -1 } /* System.Boolean System.Predicate`1<Vuforia.TargetFinder/TargetSearchResult>::EndInvoke(System.IAsyncResult) */, { 1031, 621, -1 } /* System.Boolean System.Predicate`1<Vuforia.TrackerData/TrackableResultData>::Invoke(T) */, { 1032, 621, -1 } /* System.IAsyncResult System.Predicate`1<Vuforia.TrackerData/TrackableResultData>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 621, -1 } /* System.Boolean System.Predicate`1<Vuforia.TrackerData/TrackableResultData>::EndInvoke(System.IAsyncResult) */, { 1030, 632, -1 } /* System.Void System.Predicate`1<Vuforia.TrackerData/VuMarkTargetData>::.ctor(System.Object,System.IntPtr) */, { 1031, 632, -1 } /* System.Boolean System.Predicate`1<Vuforia.TrackerData/VuMarkTargetData>::Invoke(T) */, { 1032, 632, -1 } /* System.IAsyncResult System.Predicate`1<Vuforia.TrackerData/VuMarkTargetData>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 632, -1 } /* System.Boolean System.Predicate`1<Vuforia.TrackerData/VuMarkTargetData>::EndInvoke(System.IAsyncResult) */, { 1031, 622, -1 } /* System.Boolean System.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData>::Invoke(T) */, { 1032, 622, -1 } /* System.IAsyncResult System.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 622, -1 } /* System.Boolean System.Predicate`1<Vuforia.TrackerData/VuMarkTargetResultData>::EndInvoke(System.IAsyncResult) */, { 1030, 608, -1 } /* System.Void System.Predicate`1<Vuforia.VuforiaManager/TrackableIdPair>::.ctor(System.Object,System.IntPtr) */, { 1031, 608, -1 } /* System.Boolean System.Predicate`1<Vuforia.VuforiaManager/TrackableIdPair>::Invoke(T) */, { 1032, 608, -1 } /* System.IAsyncResult System.Predicate`1<Vuforia.VuforiaManager/TrackableIdPair>::BeginInvoke(T,System.AsyncCallback,System.Object) */, { 1033, 608, -1 } /* System.Boolean System.Predicate`1<Vuforia.VuforiaManager/TrackableIdPair>::EndInvoke(System.IAsyncResult) */, { 8791, 47, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(System.Threading.Tasks.Task`1<TResult>) */, { 8793, 47, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::GetTaskForResult(TResult) */, { 8794, 47, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::.cctor() */, { 8791, 24, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(System.Threading.Tasks.Task`1<TResult>) */, { 8793, 24, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::GetTaskForResult(TResult) */, { 8794, 24, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::.cctor() */, { 8791, 296, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetResult(System.Threading.Tasks.Task`1<TResult>) */, { 8793, 296, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::GetTaskForResult(TResult) */, { 8794, 296, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::.cctor() */, { 8785, 186, -1 } /* System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::Create() */, { 8790, 186, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(TResult) */, { 8793, 186, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::GetTaskForResult(TResult) */, { 8794, 186, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::.cctor() */, { 8847, 47, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8849, 47, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::UnsafeOnCompleted(System.Action) */, { 8847, 24, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8849, 24, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::UnsafeOnCompleted(System.Action) */, { 8847, 296, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8849, 296, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::UnsafeOnCompleted(System.Action) */, { 8847, 186, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8848, 186, -1 } /* System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::get_IsCompleted() */, { 8849, 186, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) */, { 8850, 186, -1 } /* TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::GetResult() */, { 8845, 47, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8845, 24, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8845, 296, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8845, 186, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 8846, 186, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter() */, { 8835, 47, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8836, 47, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::UnsafeOnCompleted(System.Action) */, { 8835, 24, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8836, 24, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::UnsafeOnCompleted(System.Action) */, { 8835, 296, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Nullable`1<System.Int32>>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8836, 296, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Nullable`1<System.Int32>>::UnsafeOnCompleted(System.Action) */, { 8837, 296, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Nullable`1<System.Int32>>::GetResult() */, { 8835, 186, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8836, 186, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) */, { 8837, 186, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::GetResult() */, { 6635, 122, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::.ctor(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 6636, 122, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::CompleteFromAsyncResult(System.IAsyncResult) */, { 6637, 122, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean) */, { 6638, 122, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Int32,System.Object>::.cctor() */, { 6635, 202, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::.ctor(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 6636, 202, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::CompleteFromAsyncResult(System.IAsyncResult) */, { 6637, 202, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean) */, { 6638, 202, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<System.Threading.Tasks.VoidTaskResult,System.Object>::.cctor() */, { 6632, 47, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Boolean>::.ctor() */, { 6633, 47, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Boolean>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6632, 24, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Int32>::.ctor() */, { 6633, 24, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Int32>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6632, 296, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Nullable`1<System.Int32>>::.ctor() */, { 6633, 296, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Nullable`1<System.Int32>>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6632, 186, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::.ctor() */, { 6633, 186, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6629, 47, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Boolean>::.cctor() */, { 6630, 47, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Boolean>::.ctor() */, { 6631, 47, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Boolean>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 6619, 181, -1 } /* TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::get_Result() */, { 6629, 24, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Int32>::.cctor() */, { 6630, 24, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Int32>::.ctor() */, { 6631, 24, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Int32>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 6629, 296, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Nullable`1<System.Int32>>::.cctor() */, { 6630, 296, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Nullable`1<System.Int32>>::.ctor() */, { 6631, 296, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Nullable`1<System.Int32>>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 6629, 186, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>::.cctor() */, { 6630, 186, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>::.ctor() */, { 6631, 186, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 6610, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(TResult) */, { 6612, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) */, { 6613, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6614, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6615, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6616, 47, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6618, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::DangerousSetResult(TResult) */, { 6619, 47, -1 } /* TResult System.Threading.Tasks.Task`1<System.Boolean>::get_Result() */, { 6620, 47, -1 } /* TResult System.Threading.Tasks.Task`1<System.Boolean>::get_ResultOnSuccess() */, { 6621, 47, -1 } /* TResult System.Threading.Tasks.Task`1<System.Boolean>::GetResultCore(System.Boolean) */, { 6622, 47, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetException(System.Object) */, { 6623, 47, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetCanceled(System.Threading.CancellationToken) */, { 6624, 47, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6625, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::InnerInvoke() */, { 6628, 47, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Boolean>::.cctor() */, { 6609, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor() */, { 6610, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(TResult) */, { 6613, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6614, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6615, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6616, 24, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6617, 24, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetResult(TResult) */, { 6618, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::DangerousSetResult(TResult) */, { 6620, 24, -1 } /* TResult System.Threading.Tasks.Task`1<System.Int32>::get_ResultOnSuccess() */, { 6621, 24, -1 } /* TResult System.Threading.Tasks.Task`1<System.Int32>::GetResultCore(System.Boolean) */, { 6622, 24, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetException(System.Object) */, { 6623, 24, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetCanceled(System.Threading.CancellationToken) */, { 6624, 24, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6625, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::InnerInvoke() */, { 6628, 24, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Int32>::.cctor() */, { 6609, 296, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor() */, { 6610, 296, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(TResult) */, { 6611, 296, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6612, 296, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) */, { 6613, 296, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6614, 296, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6615, 296, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6616, 296, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6617, 296, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::TrySetResult(TResult) */, { 6618, 296, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::DangerousSetResult(TResult) */, { 6619, 296, -1 } /* TResult System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::get_Result() */, { 6620, 296, -1 } /* TResult System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::get_ResultOnSuccess() */, { 6621, 296, -1 } /* TResult System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::GetResultCore(System.Boolean) */, { 6622, 296, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::TrySetException(System.Object) */, { 6623, 296, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::TrySetCanceled(System.Threading.CancellationToken) */, { 6624, 296, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6625, 296, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::InnerInvoke() */, { 6626, 296, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::GetAwaiter() */, { 6628, 296, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::.cctor() */, { 6610, 186, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(TResult) */, { 6611, 186, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6612, 186, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) */, { 6613, 186, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6614, 186, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6615, 186, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6616, 186, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6618, 186, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::DangerousSetResult(TResult) */, { 6619, 186, -1 } /* TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_Result() */, { 6620, 186, -1 } /* TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::get_ResultOnSuccess() */, { 6621, 186, -1 } /* TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::GetResultCore(System.Boolean) */, { 6622, 186, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetException(System.Object) */, { 6624, 186, -1 } /* System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6625, 186, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::InnerInvoke() */, { 6626, 186, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter() */, { 6627, 186, -1 } /* System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::ConfigureAwait(System.Boolean) */, { 6628, 186, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.cctor() */, { 900, 209, -1 } /* T1 System.Tuple`2<System.Object,System.Char>::get_Item1() */, { 901, 209, -1 } /* T2 System.Tuple`2<System.Object,System.Char>::get_Item2() */, { 902, 209, -1 } /* System.Void System.Tuple`2<System.Object,System.Char>::.ctor(T1,T2) */, { 903, 209, -1 } /* System.Boolean System.Tuple`2<System.Object,System.Char>::Equals(System.Object) */, { 904, 209, -1 } /* System.Boolean System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 905, 209, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Char>::System.IComparable.CompareTo(System.Object) */, { 906, 209, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 907, 209, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Char>::GetHashCode() */, { 908, 209, -1 } /* System.Int32 System.Tuple`2<System.Object,System.Char>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 909, 209, -1 } /* System.String System.Tuple`2<System.Object,System.Char>::ToString() */, { 910, 209, -1 } /* System.String System.Tuple`2<System.Object,System.Char>::System.ITupleInternal.ToString(System.Text.StringBuilder) */, { 923, 207, -1 } /* T1 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item1() */, { 924, 207, -1 } /* T2 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item2() */, { 925, 207, -1 } /* T3 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item3() */, { 926, 207, -1 } /* T4 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::get_Item4() */, { 927, 207, -1 } /* System.Boolean System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::Equals(System.Object) */, { 928, 207, -1 } /* System.Boolean System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 929, 207, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.IComparable.CompareTo(System.Object) */, { 930, 207, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 931, 207, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::GetHashCode() */, { 932, 207, -1 } /* System.Int32 System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 933, 207, -1 } /* System.String System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::ToString() */, { 934, 207, -1 } /* System.String System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>::System.ITupleInternal.ToString(System.Text.StringBuilder) */, { 693, 299, -1 } /* System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::Equals(System.Object) */, { 694, 299, -1 } /* System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::Equals(System.ValueTuple`2<T1,T2>) */, { 695, 299, -1 } /* System.Boolean System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) */, { 696, 299, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.IComparable.CompareTo(System.Object) */, { 697, 299, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::CompareTo(System.ValueTuple`2<T1,T2>) */, { 698, 299, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) */, { 699, 299, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::GetHashCode() */, { 700, 299, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) */, { 701, 299, -1 } /* System.Int32 System.ValueTuple`2<System.Int32,System.Boolean>::GetHashCodeCore(System.Collections.IEqualityComparer) */, { 702, 299, -1 } /* System.String System.ValueTuple`2<System.Int32,System.Boolean>::ToString() */, { 12104, 47, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Boolean>::Invoke(System.Object[]) */, { 12105, 47, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Boolean>::Invoke(T) */, { 12104, 24, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Int32>::Invoke(System.Object[]) */, { 12105, 24, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Int32>::Invoke(T) */, { 12104, 110, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Single>::Invoke(System.Object[]) */, { 12105, 110, -1 } /* System.Void UnityEngine.Events.CachedInvokableCall`1<System.Single>::Invoke(T) */, { 12087, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12088, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 12089, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12090, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12091, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::Invoke(System.Object[]) */, { 12092, 47, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Boolean>::Invoke(T1) */, { 12093, 47, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<System.Boolean>::Find(System.Object,System.Reflection.MethodInfo) */, { 12087, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12088, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 12089, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12090, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12091, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::Invoke(System.Object[]) */, { 12092, 24, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Int32>::Invoke(T1) */, { 12093, 24, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<System.Int32>::Find(System.Object,System.Reflection.MethodInfo) */, { 12087, 110, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12088, 110, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 12089, 110, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12090, 110, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12091, 110, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::Invoke(System.Object[]) */, { 12092, 110, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<System.Single>::Invoke(T1) */, { 12093, 110, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<System.Single>::Find(System.Object,System.Reflection.MethodInfo) */, { 12087, 330, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12088, 330, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 12089, 330, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12090, 330, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12091, 330, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::Invoke(System.Object[]) */, { 12092, 330, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::Invoke(T1) */, { 12093, 330, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<UnityEngine.Color>::Find(System.Object,System.Reflection.MethodInfo) */, { 12087, 339, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12088, 339, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 12089, 339, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12090, 339, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::remove_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 12091, 339, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::Invoke(System.Object[]) */, { 12092, 339, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::Invoke(T1) */, { 12093, 339, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>::Find(System.Object,System.Reflection.MethodInfo) */, { 12147, 47, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::Invoke(T0) */, { 12148, 47, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Boolean>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 12149, 47, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Boolean>::EndInvoke(System.IAsyncResult) */, { 12146, 24, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Int32>::.ctor(System.Object,System.IntPtr) */, { 12148, 24, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Int32>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 12149, 24, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Int32>::EndInvoke(System.IAsyncResult) */, { 12147, 110, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Single>::Invoke(T0) */, { 12148, 110, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<System.Single>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 12149, 110, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Single>::EndInvoke(System.IAsyncResult) */, { 12147, 330, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Color>::Invoke(T0) */, { 12148, 330, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.Color>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 12149, 330, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Color>::EndInvoke(System.IAsyncResult) */, { 12146, 365, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::.ctor(System.Object,System.IntPtr) */, { 12148, 365, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 12149, 365, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>::EndInvoke(System.IAsyncResult) */, { 12146, 339, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr) */, { 12147, 339, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::Invoke(T0) */, { 12148, 339, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::BeginInvoke(T0,System.AsyncCallback,System.Object) */, { 12149, 339, -1 } /* System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::EndInvoke(System.IAsyncResult) */, { 12157, 364, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::.ctor(System.Object,System.IntPtr) */, { 12158, 364, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::Invoke(T0,T1) */, { 12159, 364, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object) */, { 12160, 364, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>::EndInvoke(System.IAsyncResult) */, { 12157, 366, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::.ctor(System.Object,System.IntPtr) */, { 12159, 366, -1 } /* System.IAsyncResult UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::BeginInvoke(T0,T1,System.AsyncCallback,System.Object) */, { 12160, 366, -1 } /* System.Void UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>::EndInvoke(System.IAsyncResult) */, { 12152, 47, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Boolean>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) */, { 12153, 47, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Boolean>::FindMethod_Impl(System.String,System.Object) */, { 12154, 47, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Boolean>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12155, 47, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Boolean>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) */, { 12152, 24, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<System.Int32>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) */, { 12153, 24, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Int32>::FindMethod_Impl(System.String,System.Object) */, { 12154, 24, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12155, 24, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Int32>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) */, { 12153, 110, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.Single>::FindMethod_Impl(System.String,System.Object) */, { 12154, 110, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Single>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12155, 110, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.Single>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) */, { 12152, 330, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) */, { 12153, 330, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::FindMethod_Impl(System.String,System.Object) */, { 12154, 330, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12155, 330, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Color>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) */, { 12151, 339, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::AddListener(UnityEngine.Events.UnityAction`1<T0>) */, { 12152, 339, -1 } /* System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::RemoveListener(UnityEngine.Events.UnityAction`1<T0>) */, { 12153, 339, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::FindMethod_Impl(System.String,System.Object) */, { 12154, 339, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12155, 339, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) */, { 13828, 518, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.ColorTween>::.ctor() */, { 13829, 518, -1 } /* System.Boolean UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.ColorTween>::MoveNext() */, { 13830, 518, -1 } /* System.Object UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.ColorTween>::System.Collections.Generic.IEnumerator<object>.get_Current() */, { 13831, 518, -1 } /* System.Object UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.ColorTween>::System.Collections.IEnumerator.get_Current() */, { 13832, 518, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.ColorTween>::Dispose() */, { 13833, 518, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.ColorTween>::Reset() */, { 13828, 501, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.FloatTween>::.ctor() */, { 13829, 501, -1 } /* System.Boolean UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.FloatTween>::MoveNext() */, { 13830, 501, -1 } /* System.Object UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.FloatTween>::System.Collections.Generic.IEnumerator<object>.get_Current() */, { 13831, 501, -1 } /* System.Object UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.FloatTween>::System.Collections.IEnumerator.get_Current() */, { 13832, 501, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.FloatTween>::Dispose() */, { 13833, 501, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<UnityEngine.UI.CoroutineTween.FloatTween>::Reset() */, { 13824, 518, -1 } /* System.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>::Start(T) */, { 13824, 501, -1 } /* System.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::Start(T) */, { 13827, 501, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>::StopTween() */, { 15021, 24, -1 } /* System.Void UnityEngine.UI.ListPool`1<System.Int32>::Clear(System.Collections.Generic.List`1<T>) */, { 15024, 24, -1 } /* System.Void UnityEngine.UI.ListPool`1<System.Int32>::.cctor() */, { 15021, 340, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Color32>::Clear(System.Collections.Generic.List`1<T>) */, { 15024, 340, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Color32>::.cctor() */, { 15021, 383, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.UIVertex>::Clear(System.Collections.Generic.List`1<T>) */, { 15024, 383, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.UIVertex>::.cctor() */, { 15021, 339, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Vector2>::Clear(System.Collections.Generic.List`1<T>) */, { 15024, 339, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Vector2>::.cctor() */, { 15021, 336, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Vector3>::Clear(System.Collections.Generic.List`1<T>) */, { 15024, 336, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Vector3>::.cctor() */, { 15021, 338, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Vector4>::Clear(System.Collections.Generic.List`1<T>) */, { 15024, 338, -1 } /* System.Void UnityEngine.UI.ListPool`1<UnityEngine.Vector4>::.cctor() */, { 694, 802, -1 } /* System.Boolean System.ValueTuple`2<T1,T2>::Equals(System.ValueTuple`2<T1,T2>) */, { 9514, 804, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T1>::get_Default() */, { 9516, 804, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T1>::Equals(T,T) */, { 9514, 805, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T2>::get_Default() */, { 9516, 805, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T2>::Equals(T,T) */, { 697, 802, -1 } /* System.Int32 System.ValueTuple`2<T1,T2>::CompareTo(System.ValueTuple`2<T1,T2>) */, { 9497, 804, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<T1>::get_Default() */, { 9499, 804, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<T1>::Compare(T,T) */, { 9497, 805, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<T2>::get_Default() */, { 9499, 805, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<T2>::Compare(T,T) */, { 701, 802, -1 } /* System.Int32 System.ValueTuple`2<T1,T2>::GetHashCodeCore(System.Collections.IEqualityComparer) */, { 9279, 806, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<T>::.ctor(System.Collections.Generic.IList`1<T>) */, { 1027, 807, -1 } /* TOutput System.Converter`2<TInput,TOutput>::Invoke(TInput) */, { 987, 808, -1 } /* System.Void System.Action`1<T>::Invoke(T) */, { 746, -1, 809 } /* System.Int32 System.Array::BinarySearch<T>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 746, -1, 810 } /* System.Int32 System.Array::BinarySearch<T>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 746, -1, 811 } /* System.Int32 System.Array::BinarySearch<T>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 9377, 812, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<T>::BinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 851, -1, 813 } /* System.Int32 System.Array::IndexOfImpl<T>(T[],T,System.Int32,System.Int32) */, { 752, -1, 814 } /* System.Int32 System.Array::IndexOf<T>(T[],T,System.Int32,System.Int32) */, { 851, -1, 815 } /* System.Int32 System.Array::IndexOfImpl<T>(T[],T,System.Int32,System.Int32) */, { 758, -1, 816 } /* System.Int32 System.Array::LastIndexOf<T>(T[],T,System.Int32,System.Int32) */, { 758, -1, 817 } /* System.Int32 System.Array::LastIndexOf<T>(T[],T,System.Int32,System.Int32) */, { 852, -1, 818 } /* System.Int32 System.Array::LastIndexOfImpl<T>(T[],T,System.Int32,System.Int32) */, { 762, -1, 819 } /* System.Void System.Array::Reverse<T>(T[],System.Int32,System.Int32) */, { 778, -1, 820 } /* System.Void System.Array::Sort<T>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 821 } /* System.Void System.Array::Sort<T>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 822 } /* System.Void System.Array::Sort<T>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9376, 823, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::Sort(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9378, 824, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 783, -1, 825 } /* System.Void System.Array::Sort<TKey,TValue>(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 783, -1, 826 } /* System.Void System.Array::Sort<TKey,TValue>(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 783, -1, 828 } /* System.Void System.Array::Sort<TKey,TValue>(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 778, -1, 829 } /* System.Void System.Array::Sort<TKey>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9388, 830, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::get_Default() */, { 9390, 830, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::Sort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 789, -1, 831 } /* System.Int32 System.Array::FindIndex<T>(T[],System.Predicate`1<T>) */, { 1031, 832, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 849, -1, 833 } /* T[] System.Array::Empty<T>() */, { 1031, 833, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 705, -1, 833 } /* System.Void System.Array::Resize<T>(T[]&,System.Int32) */, { 791, -1, 834 } /* System.Int32 System.Array::FindIndex<T>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 791, -1, 835 } /* System.Int32 System.Array::FindIndex<T>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 1031, 836, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 1031, 837, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 795, -1, 838 } /* System.Int32 System.Array::FindLastIndex<T>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 795, -1, 839 } /* System.Int32 System.Array::FindLastIndex<T>(T[],System.Int32,System.Int32,System.Predicate`1<T>) */, { 1031, 840, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 1031, 841, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 862, 842, -1 } /* System.Void System.Array/InternalEnumerator`1<T>::.ctor(System.Array) */, { 9514, 844, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 9518, 844, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9514, 845, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 9519, 845, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 812, -1, 846 } /* T System.Array::InternalArray__get_Item<T>(System.Int32) */, { 865, 846, -1 } /* T System.Array/InternalEnumerator`1<T>::get_Current() */, { 870, 847, -1 } /* T System.Array/EmptyInternalEnumerator`1<T>::get_Current() */, { 873, 847, -1 } /* System.Void System.Array/EmptyInternalEnumerator`1<T>::.ctor() */, { 902, 848, -1 } /* System.Void System.Tuple`2<T1,T2>::.ctor(T1,T2) */, { 705, -1, 852 } /* System.Void System.Array::Resize<T>(T[]&,System.Int32) */, { 3305, 854, -1 } /* System.Boolean System.Nullable`1<T>::Equals(System.Nullable`1<T>) */, { 3301, 854, -1 } /* System.Void System.Nullable`1<T>::.ctor(T) */, { 4750, 855, -1 } /* R System.Reflection.MonoProperty/Getter`2<T,R>::Invoke(T) */, { 4754, 856, -1 } /* R System.Reflection.MonoProperty/StaticGetter`1<R>::Invoke() */, { 5055, 857, -1 } /* System.Void System.IO.Iterator`1<TSource>::Dispose(System.Boolean) */, { 5053, 857, -1 } /* System.IO.Iterator`1<TSource> System.IO.Iterator`1<TSource>::Clone() */, { 5052, 857, -1 } /* TSource System.IO.Iterator`1<TSource>::get_Current() */, { 5056, 857, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.IO.Iterator`1<TSource>::GetEnumerator() */, { 5051, 858, -1 } /* System.Void System.IO.Iterator`1<TSource>::.ctor() */, { 5071, 858, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<TSource>::NormalizeSearchPattern(System.String) */, { 5073, 858, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<TSource>::GetFullSearchString(System.String,System.String) */, { 5072, 858, -1 } /* System.String System.IO.FileSystemEnumerableIterator`1<TSource>::GetNormalizedSearchCriteria(System.String,System.String) */, { 5062, 858, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<TSource>::CommonInit() */, { 5068, 858, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<TSource>::HandleError(System.Int32,System.String) */, { 5067, 858, -1 } /* System.IO.SearchResult System.IO.FileSystemEnumerableIterator`1<TSource>::CreateSearchResult(System.IO.Directory/SearchData,Microsoft.Win32.Win32Native/WIN32_FIND_DATA) */, { 5074, 858, -1 } /* System.Boolean System.IO.SearchResultHandler`1<TSource>::IsResultIncluded(System.IO.SearchResult) */, { 5075, 858, -1 } /* TSource System.IO.SearchResultHandler`1<TSource>::CreateObject(System.IO.SearchResult) */, { 5063, 858, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<TSource>::.ctor(System.String,System.String,System.String,System.String,System.IO.SearchOption,System.IO.SearchResultHandler`1<TSource>,System.Boolean) */, { 5055, 858, -1 } /* System.Void System.IO.Iterator`1<TSource>::Dispose(System.Boolean) */, { 5069, 858, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<TSource>::AddSearchableDirsToStack(System.IO.Directory/SearchData) */, { 5070, 858, -1 } /* System.Void System.IO.FileSystemEnumerableIterator`1<TSource>::DoDemand(System.String) */, { 5054, 858, -1 } /* System.Void System.IO.Iterator`1<TSource>::Dispose() */, { 1031, 859, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 6216, 860, -1 } /* System.Void System.Threading.SparselyPopulatedArrayFragment`1<T>::.ctor(System.Int32) */, { 6219, 860, -1 } /* System.Int32 System.Threading.SparselyPopulatedArrayFragment`1<T>::get_Length() */, { 6556, -1, 860 } /* T System.Threading.Interlocked::CompareExchange<T>(T&,T,T) */, { 6213, 860, -1 } /* System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<T>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32) */, { 6217, 860, -1 } /* System.Void System.Threading.SparselyPopulatedArrayFragment`1<T>::.ctor(System.Int32,System.Threading.SparselyPopulatedArrayFragment`1<T>) */, { 6556, -1, 861 } /* T System.Threading.Interlocked::CompareExchange<System.Threading.SparselyPopulatedArrayFragment`1<T>>(T&,T,T) */, { 6217, 863, -1 } /* System.Void System.Threading.SparselyPopulatedArrayFragment`1<T>::.ctor(System.Int32,System.Threading.SparselyPopulatedArrayFragment`1<T>) */, { 6601, -1, 863 } /* T System.Threading.Volatile::Read<T>(T&) */, { 6556, -1, 863 } /* T System.Threading.Interlocked::CompareExchange<T>(T&,T,T) */, { 6601, -1, 864 } /* T System.Threading.Volatile::Read<T>(T&) */, { 6223, -1, 864 } /* T System.Threading.LazyInitializer::EnsureInitializedCore<T>(T&,System.Func`1<T>) */, { 1003, 865, -1 } /* TResult System.Func`1<T>::Invoke() */, { 6556, -1, 865 } /* T System.Threading.Interlocked::CompareExchange<T>(T&,T,T) */, { 6296, 867, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<T>::.ctor(T,T,System.Boolean) */, { 987, 866, -1 } /* System.Void System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<T>>::Invoke(T) */, { 6293, 868, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<T>::set_PreviousValue(T) */, { 6294, 868, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<T>::set_CurrentValue(T) */, { 6295, 868, -1 } /* System.Void System.Threading.AsyncLocalValueChangedArgs`1<T>::set_ThreadContextChanged(System.Boolean) */, { 6602, -1, 869 } /* System.Void System.Threading.Volatile::Write<T>(T&,T) */, { 6630, 873, -1 } /* System.Void System.Threading.Tasks.Task`1/<>c<TResult>::.ctor() */, { 6615, 871, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6614, 871, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) */, { 6613, 871, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(System.Func`1<TResult>,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6617, 871, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetResult(TResult) */, { 6621, 871, -1 } /* TResult System.Threading.Tasks.Task`1<TResult>::GetResultCore(System.Boolean) */, { 6624, 871, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 1003, 871, -1 } /* TResult System.Func`1<TResult>::Invoke() */, { 1007, 870, -1 } /* TResult System.Func`2<System.Object,TResult>::Invoke(T) */, { 8835, 871, -1 } /* System.Void System.Runtime.CompilerServices.TaskAwaiter`1<TResult>::.ctor(System.Threading.Tasks.Task`1<TResult>) */, { 8845, 871, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 6632, 871, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<TResult>::.ctor() */, { 6631, 871, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1/<>c<TResult>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) */, { 1006, 872, -1 } /* System.Void System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>>::.ctor(System.Object,System.IntPtr) */, { 6635, 877, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<TResult,TInstance>::.ctor(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>) */, { 1019, 874, -1 } /* TResult System.Func`5<TInstance,TArgs,System.AsyncCallback,System.Object,System.IAsyncResult>::Invoke(T1,T2,T3,T4) */, { 6637, 877, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<TResult,TInstance>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean) */, { 6609, 878, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor() */, { 6637, 880, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<TResult,TInstance>::Complete(TInstance,System.Func`3<TInstance,System.IAsyncResult,TResult>,System.IAsyncResult,System.Boolean) */, { 1011, 879, -1 } /* TResult System.Func`3<TInstance,System.IAsyncResult,TResult>::Invoke(T1,T2) */, { 6617, 878, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetResult(TResult) */, { 6618, 878, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::DangerousSetResult(TResult) */, { 6624, 878, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6622, 878, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetException(System.Object) */, { 6636, 880, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1/FromAsyncTrimPromise`1<TResult,TInstance>::CompleteFromAsyncResult(System.IAsyncResult) */, { 6633, 876, -1 } /* System.Void System.Threading.Tasks.TaskFactory`1<TResult>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) */, { 6610, 881, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(TResult) */, { 6609, 882, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor() */, { 6622, 882, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetException(System.Object) */, { 6611, 883, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6609, 884, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor() */, { 6624, 884, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 6616, 885, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1<TResult>::StartNew(System.Threading.Tasks.Task,System.Func`1<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler,System.Threading.StackCrawlMark&) */, { 6626, 886, -1 } /* System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<TResult>::GetAwaiter() */, { 8837, 886, -1 } /* TResult System.Runtime.CompilerServices.TaskAwaiter`1<TResult>::GetResult() */, { 8788, 186, 887 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::AwaitUnsafeOnCompleted<TAwaiter,TStateMachine>(!!0&,!!1&) */, { 8789, 888, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult>::get_Task() */, { 6609, 888, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor() */, { 8793, 888, -1 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult>::GetTaskForResult(TResult) */, { 6617, 888, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetResult(TResult) */, { 8790, 888, -1 } /* System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult>::SetResult(TResult) */, { 6622, 888, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetException(System.Object) */, { 6624, 888, -1 } /* System.Boolean System.Threading.Tasks.Task`1<TResult>::TrySetCanceled(System.Threading.CancellationToken,System.Object) */, { 8876, -1, 889 } /* T System.Runtime.CompilerServices.JitHelpers::UnsafeCast<System.Threading.Tasks.Task`1<TResult>>(System.Object) */, { 6610, 888, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(TResult) */, { 8796, -1, 888 } /* System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<TResult>(TResult) */, { 6611, 890, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) */, { 6620, 891, -1 } /* TResult System.Threading.Tasks.Task`1<TResult>::get_ResultOnSuccess() */, { 6620, 893, -1 } /* TResult System.Threading.Tasks.Task`1<TResult>::get_ResultOnSuccess() */, { 8847, 892, -1 } /* System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) */, { 856, -1, 894 } /* R System.Array::UnsafeMov<System.Object,T>(S) */, { 856, -1, 895 } /* R System.Array::UnsafeMov<T,System.Int32>(S) */, { 856, -1, 896 } /* R System.Array::UnsafeMov<T,System.Int64>(S) */, { 8882, 897, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<TKey,TValue>::RecomputeSize() */, { 8881, 897, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<TKey,TValue>::RehashWithoutResize() */, { 8883, 897, -1 } /* System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<TKey,TValue>::Rehash() */, { 9280, 898, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<T>::get_Count() */, { 9304, 898, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<T>::IsCompatibleObject(System.Object) */, { 9282, 898, -1 } /* System.Boolean System.Collections.ObjectModel.ReadOnlyCollection`1<T>::Contains(T) */, { 9285, 898, -1 } /* System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1<T>::IndexOf(T) */, { 9325, 904, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GetEnumerator() */, { 9371, 904, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Key() */, { 9372, 904, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Value() */, { 9355, 904, -1 } /* System.Collections.DictionaryEntry System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<TKey,TValue>::get_Entry() */, { 6601, -1, 908 } /* T System.Threading.Volatile::Read<System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>>(T&) */, { 9370, 906, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<TKey,TValue>::.ctor(TKey,TValue) */, { 9347, 900, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::get_DefaultConcurrencyLevel() */, { 9315, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::.ctor(System.Int32,System.Int32,System.Boolean,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9352, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/Tables<TKey,TValue>::.ctor(System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>[],System.Object[],System.Int32[]) */, { 9514, 899, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<TKey>::get_Default() */, { 9328, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::ThrowKeyNullException() */, { 9326, 900, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::TryAddInternal(TKey,System.Int32,TValue,System.Boolean,System.Boolean,TValue&) */, { 9346, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GetBucketAndLockNo(System.Int32,System.Int32&,System.Int32&,System.Int32,System.Int32) */, { 9514, 909, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<TValue>::get_Default() */, { 9516, 909, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<TValue>::Equals(T,T) */, { 6602, -1, 910 } /* System.Void System.Threading.Volatile::Write<System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>>(T&,T) */, { 9319, 900, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::TryGetValueInternal(TKey,System.Int32,TValue&) */, { 9345, 900, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GetBucket(System.Int32,System.Int32) */, { 6601, -1, 910 } /* T System.Threading.Volatile::Read<System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>>(T&) */, { 9348, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::AcquireAllLocks(System.Int32&) */, { 9350, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::ReleaseLocks(System.Int32,System.Int32) */, { 9322, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::CopyToPairs(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9370, 900, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<TKey,TValue>::.ctor(TKey,TValue) */, { 9361, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<TKey,TValue>::.ctor(System.Int32) */, { 9353, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>::.ctor(TKey,TValue,System.Int32,System.Collections.Concurrent.ConcurrentDictionary`2/Node<TKey,TValue>) */, { 9344, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GrowTable(System.Collections.Concurrent.ConcurrentDictionary`2/Tables<TKey,TValue>) */, { 9330, 900, -1 } /* System.Int32 System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GetCountInternal() */, { 1007, 900, -1 } /* TResult System.Func`2<TKey,TValue>::Invoke(T) */, { 9316, 900, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::TryAdd(TKey,TValue) */, { 9371, 900, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Key() */, { 9372, 900, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Value() */, { 9318, 900, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::TryGetValue(TKey,TValue&) */, { 9317, 900, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::TryRemoveInternal(TKey,TValue&,System.Boolean,TValue) */, { 9325, 900, -1 } /* System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::GetEnumerator() */, { 9354, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<TKey,TValue>::.ctor(System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>) */, { 9327, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::set_Item(TKey,TValue) */, { 9323, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::CopyToEntries(System.Collections.DictionaryEntry[],System.Int32) */, { 9324, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::CopyToObjects(System.Object[],System.Int32) */, { 9349, 900, -1 } /* System.Void System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::AcquireLocks(System.Int32,System.Int32,System.Int32&) */, { 9313, 900, -1 } /* System.Boolean System.Collections.Concurrent.ConcurrentDictionary`2<TKey,TValue>::IsValueWriteAtomic() */, { 9368, -1, 911 } /* TValue System.Collections.Generic.CollectionExtensions::GetValueOrDefault<TKey,TValue>(System.Collections.Generic.IReadOnlyDictionary`2<TKey,TValue>,TKey,TValue) */, { 9371, 913, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Key() */, { 9372, 913, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Value() */, { 9497, 914, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<T>::get_Default() */, { 9582, 914, -1 } /* System.Int32 System.Collections.Generic.IComparer`1<T>::Compare(T,T) */, { 1022, 914, -1 } /* System.Void System.Comparison`1<T>::.ctor(System.Object,System.IntPtr) */, { 9382, 914, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9379, 914, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<T>::InternalBinarySearch(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) */, { 1023, 914, -1 } /* System.Int32 System.Comparison`1<T>::Invoke(T,T) */, { 9383, 914, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::IntroSort(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9380, 914, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::SwapIfGreater(T[],System.Comparison`1<T>,System.Int32,System.Int32) */, { 9387, 914, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::InsertionSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9385, 914, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::Heapsort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9384, 914, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`1<T>::PickPivotAndPartition(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 9381, 914, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::Swap(T[],System.Int32,System.Int32) */, { 9386, 914, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::DownHeap(T[],System.Int32,System.Int32,System.Int32,System.Comparison`1<T>) */, { 9389, 915, -1 } /* System.Collections.Generic.ArraySortHelper`2<TKey,TValue> System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::CreateArraySortHelper() */, { 9399, 915, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::.ctor() */, { 9497, 916, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<TKey>::get_Default() */, { 9393, 915, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::IntrospectiveSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9394, 915, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::IntroSort(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9391, 915, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::SwapIfGreaterWithItems(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>,System.Int32,System.Int32) */, { 9398, 915, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::InsertionSort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9396, 915, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::Heapsort(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9395, 915, -1 } /* System.Int32 System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::PickPivotAndPartition(TKey[],TValue[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9392, 915, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::Swap(TKey[],TValue[],System.Int32,System.Int32) */, { 9397, 915, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`2<TKey,TValue>::DownHeap(TKey[],TValue[],System.Int32,System.Int32,System.Int32,System.Collections.Generic.IComparer`1<TKey>) */, { 9370, 920, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<TKey,TValue>::.ctor(TKey,TValue) */, { 9371, 920, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Key() */, { 9372, 920, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Value() */, { 9462, 922, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<TKey,TValue>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9405, 922, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<TKey,TValue>::get_Count() */, { 9415, 922, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<TKey,TValue>::ContainsKey(TKey) */, { 9450, 922, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue>::CopyTo(TKey[],System.Int32) */, { 9482, 926, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9405, 926, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<TKey,TValue>::get_Count() */, { 9416, 926, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<TKey,TValue>::ContainsValue(TValue) */, { 9470, 926, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue>::CopyTo(TValue[],System.Int32) */, { 9403, 918, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>) */, { 9422, 918, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::Initialize(System.Int32) */, { 9514, 917, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<TKey>::get_Default() */, { 9448, 918, -1 } /* System.Void System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9468, 918, -1 } /* System.Void System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) */, { 9421, 918, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<TKey,TValue>::FindEntry(TKey) */, { 9423, 918, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<TKey,TValue>::TryInsert(TKey,TValue,System.Collections.Generic.InsertionBehavior) */, { 9371, 918, -1 } /* TKey System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Key() */, { 9372, 918, -1 } /* TValue System.Collections.Generic.KeyValuePair`2<TKey,TValue>::get_Value() */, { 9410, 918, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::Add(TKey,TValue) */, { 9514, 930, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<TValue>::get_Default() */, { 9516, 930, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<TValue>::Equals(T,T) */, { 9427, 918, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<TKey,TValue>::Remove(TKey) */, { 9405, 918, -1 } /* System.Int32 System.Collections.Generic.Dictionary`2<TKey,TValue>::get_Count() */, { 9370, 918, -1 } /* System.Void System.Collections.Generic.KeyValuePair`2<TKey,TValue>::.ctor(TKey,TValue) */, { 9439, 918, -1 } /* System.Void System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) */, { 9417, 918, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32) */, { 9425, 918, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::Resize() */, { 9426, 918, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::Resize(System.Int32,System.Boolean) */, { 9437, 918, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<TKey,TValue>::IsCompatibleKey(System.Object) */, { 9409, 918, -1 } /* System.Void System.Collections.Generic.Dictionary`2<TKey,TValue>::set_Item(TKey,TValue) */, { 9498, 931, -1 } /* System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<T>::CreateComparer() */, { 9513, 931, -1 } /* System.Void System.Collections.Generic.ObjectComparer`1<T>::.ctor() */, { 9499, 931, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<T>::Compare(T,T) */, { 1973, 932, -1 } /* System.Int32 System.IComparable`1<T>::CompareTo(T) */, { 9501, 932, -1 } /* System.Void System.Collections.Generic.Comparer`1<T>::.ctor() */, { 3302, 934, -1 } /* System.Boolean System.Nullable`1<T>::get_HasValue() */, { 1973, 934, -1 } /* System.Int32 System.IComparable`1<T>::CompareTo(T) */, { 9501, 933, -1 } /* System.Void System.Collections.Generic.Comparer`1<System.Nullable`1<T>>::.ctor() */, { 9501, 935, -1 } /* System.Void System.Collections.Generic.Comparer`1<T>::.ctor() */, { 9515, 936, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T>::CreateComparer() */, { 9543, 936, -1 } /* System.Void System.Collections.Generic.ObjectEqualityComparer`1<T>::.ctor() */, { 9516, 936, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::Equals(T,T) */, { 9517, 936, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::GetHashCode(T) */, { 1993, 937, -1 } /* System.Boolean System.IEquatable`1<T>::Equals(T) */, { 9522, 937, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<T>::.ctor() */, { 3302, 939, -1 } /* System.Boolean System.Nullable`1<T>::get_HasValue() */, { 1993, 939, -1 } /* System.Boolean System.IEquatable`1<T>::Equals(T) */, { 9522, 938, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<System.Nullable`1<T>>::.ctor() */, { 9522, 940, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<T>::.ctor() */, { 8877, -1, 941 } /* System.Int32 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCast<T>(T) */, { 9522, 941, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<T>::.ctor() */, { 9553, 942, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<T>::.ctor() */, { 8877, -1, 942 } /* System.Int32 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCast<T>(T) */, { 9553, 943, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<T>::.ctor() */, { 8877, -1, 943 } /* System.Int32 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCast<T>(T) */, { 8878, -1, 944 } /* System.Int64 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCastLong<T>(T) */, { 9522, 944, -1 } /* System.Void System.Collections.Generic.EqualityComparer`1<T>::.ctor() */, { 9654, 955, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<T>::MoveNextRare() */, { 9655, 955, -1 } /* T System.Collections.Generic.List`1/Enumerator<T>::get_Current() */, { 9615, 954, -1 } /* System.Void System.Collections.Generic.List`1<T>::Add(T) */, { 854, -1, 954 } /* T System.Array::UnsafeLoad<T>(T[],System.Int32) */, { 9610, 954, -1 } /* T System.Collections.Generic.List`1<T>::get_Item(System.Int32) */, { 680, -1, 954 } /* System.Void System.ThrowHelper::IfNullAndNullsAreIllegalThenThrow<T>(System.Object,System.ExceptionArgument) */, { 9611, 954, -1 } /* System.Void System.Collections.Generic.List`1<T>::set_Item(System.Int32,T) */, { 9626, 954, -1 } /* System.Void System.Collections.Generic.List`1<T>::EnsureCapacity(System.Int32) */, { 9604, 954, -1 } /* System.Int32 System.Collections.Generic.List`1<T>::get_Count() */, { 9636, 954, -1 } /* System.Void System.Collections.Generic.List`1<T>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>) */, { 9279, 954, -1 } /* System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<T>::.ctor(System.Collections.Generic.IList`1<T>) */, { 9514, 954, -1 } /* System.Collections.Generic.EqualityComparer`1<T> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 9516, 954, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::Equals(T,T) */, { 9612, 954, -1 } /* System.Boolean System.Collections.Generic.List`1<T>::IsCompatibleObject(System.Object) */, { 9620, 954, -1 } /* System.Boolean System.Collections.Generic.List`1<T>::Contains(T) */, { 9625, 954, -1 } /* System.Void System.Collections.Generic.List`1<T>::CopyTo(T[],System.Int32) */, { 9603, 954, -1 } /* System.Void System.Collections.Generic.List`1<T>::set_Capacity(System.Int32) */, { 1031, 954, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(T) */, { 987, 954, -1 } /* System.Void System.Action`1<T>::Invoke(T) */, { 9651, 954, -1 } /* System.Void System.Collections.Generic.List`1/Enumerator<T>::.ctor(System.Collections.Generic.List`1<T>) */, { 752, -1, 954 } /* System.Int32 System.Array::IndexOf<T>(T[],T,System.Int32,System.Int32) */, { 9632, 954, -1 } /* System.Int32 System.Collections.Generic.List`1<T>::IndexOf(T) */, { 9634, 954, -1 } /* System.Void System.Collections.Generic.List`1<T>::Insert(System.Int32,T) */, { 9640, 954, -1 } /* System.Void System.Collections.Generic.List`1<T>::RemoveAt(System.Int32) */, { 9637, 954, -1 } /* System.Boolean System.Collections.Generic.List`1<T>::Remove(T) */, { 9643, 954, -1 } /* System.Void System.Collections.Generic.List`1<T>::Reverse(System.Int32,System.Int32) */, { 762, -1, 954 } /* System.Void System.Array::Reverse<T>(T[],System.Int32,System.Int32) */, { 9646, 954, -1 } /* System.Void System.Collections.Generic.List`1<T>::Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 778, -1, 954 } /* System.Void System.Array::Sort<T>(T[],System.Int32,System.Int32,System.Collections.Generic.IComparer`1<T>) */, { 9378, 954, -1 } /* System.Void System.Collections.Generic.ArraySortHelper`1<T>::Sort(T[],System.Int32,System.Int32,System.Comparison`1<T>) */, { 10718, 957, -1 } /* System.Int32 System.Collections.Generic.LinkedList`1<T>::get_Count() */, { 10724, 956, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<T>::AddLast(T) */, { 10754, 956, -1 } /* System.Void System.Collections.Generic.LinkedListNode`1<T>::.ctor(System.Collections.Generic.LinkedList`1<T>,T) */, { 10737, 956, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::InternalInsertNodeToEmptyList(System.Collections.Generic.LinkedListNode`1<T>) */, { 10736, 956, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::InternalInsertNodeBefore(System.Collections.Generic.LinkedListNode`1<T>,System.Collections.Generic.LinkedListNode`1<T>) */, { 10739, 956, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::ValidateNewNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10755, 956, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1<T>::get_Next() */, { 10757, 956, -1 } /* System.Void System.Collections.Generic.LinkedListNode`1<T>::Invalidate() */, { 10728, 956, -1 } /* System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1<T>::Find(T) */, { 10718, 956, -1 } /* System.Int32 System.Collections.Generic.LinkedList`1<T>::get_Count() */, { 9514, 956, -1 } /* System.Collections.Generic.EqualityComparer`1<!0> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 9516, 956, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::Equals(!0,!0) */, { 10745, 956, -1 } /* System.Void System.Collections.Generic.LinkedList`1/Enumerator<T>::.ctor(System.Collections.Generic.LinkedList`1<T>) */, { 10729, 956, -1 } /* System.Collections.Generic.LinkedList`1/Enumerator<T> System.Collections.Generic.LinkedList`1<T>::GetEnumerator() */, { 10738, 956, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::InternalRemoveNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10740, 956, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::ValidateNode(System.Collections.Generic.LinkedListNode`1<T>) */, { 10727, 956, -1 } /* System.Void System.Collections.Generic.LinkedList`1<T>::CopyTo(T[],System.Int32) */, { 10775, 960, -1 } /* System.Void System.Collections.Generic.Queue`1/Enumerator<T>::ThrowEnumerationNotStartedOrEnded() */, { 10774, 960, -1 } /* T System.Collections.Generic.Queue`1/Enumerator<T>::get_Current() */, { 849, -1, 959 } /* !!0[] System.Array::Empty<T>() */, { 10768, 959, -1 } /* System.Void System.Collections.Generic.Queue`1<T>::SetCapacity(System.Int32) */, { 10769, 959, -1 } /* System.Void System.Collections.Generic.Queue`1<T>::MoveNext(System.Int32&) */, { 10771, 959, -1 } /* System.Void System.Collections.Generic.Queue`1/Enumerator<T>::.ctor(System.Collections.Generic.Queue`1<T>) */, { 10770, 959, -1 } /* System.Void System.Collections.Generic.Queue`1<T>::ThrowForEmptyQueue() */, { 8892, -1, 959 } /* System.Boolean System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences<T>() */, { 10793, 962, -1 } /* System.Void System.Collections.Generic.Stack`1/Enumerator<T>::ThrowEnumerationNotStartedOrEnded() */, { 10792, 962, -1 } /* T System.Collections.Generic.Stack`1/Enumerator<T>::get_Current() */, { 849, -1, 961 } /* !!0[] System.Array::Empty<T>() */, { 10789, 961, -1 } /* System.Void System.Collections.Generic.Stack`1/Enumerator<T>::.ctor(System.Collections.Generic.Stack`1<T>) */, { 10788, 961, -1 } /* System.Void System.Collections.Generic.Stack`1<T>::ThrowForEmptyStack() */, { 8892, -1, 961 } /* System.Boolean System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences<T>() */, { 705, -1, 961 } /* System.Void System.Array::Resize<T>(!!0[]&,System.Int32) */, { 10844, 964, -1 } /* System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::Where(System.Func`2<TSource,System.Boolean>) */, { 10854, 964, -1 } /* System.Void System.Linq.Enumerable/WhereArrayIterator`1<TSource>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>) */, { 10859, 964, -1 } /* System.Void System.Linq.Enumerable/WhereListIterator`1<TSource>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10848, 964, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<TSource>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10843, 966, 968 } /* System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable/Iterator`1<TSource>::Select<TResult>(System.Func`2<TSource,!!0>) */, { 10870, 967, -1 } /* System.Void System.Linq.Enumerable/WhereSelectArrayIterator`2<TSource,TResult>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10875, 967, -1 } /* System.Void System.Linq.Enumerable/WhereSelectListIterator`2<TSource,TResult>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10864, 967, -1 } /* System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<TSource,TResult>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10821, -1, 972 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::SelectIterator<TSource,TResult>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`3<TSource,System.Int32,TResult>) */, { 10880, 976, -1 } /* System.Void System.Linq.Enumerable/<SelectIterator>d__5`2<TSource,TResult>::.ctor(System.Int32) */, { 10889, 978, -1 } /* System.Void System.Linq.Enumerable/<>c__DisplayClass6_0`1<TSource>::.ctor() */, { 10890, 978, -1 } /* System.Boolean System.Linq.Enumerable/<>c__DisplayClass6_0`1<TSource>::<CombinePredicates>b__0(TSource) */, { 1006, 977, -1 } /* System.Void System.Func`2<TSource,System.Boolean>::.ctor(System.Object,System.IntPtr) */, { 10891, 982, -1 } /* System.Void System.Linq.Enumerable/<>c__DisplayClass7_0`3<TSource,TMiddle,TResult>::.ctor() */, { 10892, 982, -1 } /* TResult System.Linq.Enumerable/<>c__DisplayClass7_0`3<TSource,TMiddle,TResult>::<CombineSelectors>b__0(TSource) */, { 1006, 981, -1 } /* System.Void System.Func`2<TSource,TResult>::.ctor(System.Object,System.IntPtr) */, { 10912, 983, -1 } /* System.Void System.Linq.Buffer`1<TSource>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>) */, { 10913, 983, -1 } /* TElement[] System.Linq.Buffer`1<TSource>::ToArray() */, { 9601, 984, -1 } /* System.Void System.Collections.Generic.List`1<TSource>::.ctor(System.Collections.Generic.IEnumerable`1<!0>) */, { 10827, -1, 985 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::OfTypeIterator<TResult>(System.Collections.IEnumerable) */, { 10893, 986, -1 } /* System.Void System.Linq.Enumerable/<OfTypeIterator>d__97`1<TResult>::.ctor(System.Int32) */, { 10829, -1, 987 } /* System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::CastIterator<TResult>(System.Collections.IEnumerable) */, { 10902, 988, -1 } /* System.Void System.Linq.Enumerable/<CastIterator>d__99`1<TResult>::.ctor(System.Int32) */, { 1007, 992, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 1007, 994, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 1007, 998, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 10839, 999, -1 } /* System.Linq.Enumerable/Iterator`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::Clone() */, { 10838, 999, -1 } /* TSource System.Linq.Enumerable/Iterator`1<TSource>::get_Current() */, { 10841, 999, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::GetEnumerator() */, { 10864, 1005, -1 } /* System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<TSource,TResult>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10837, 1003, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::.ctor() */, { 10848, 1003, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<TSource>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10840, 1003, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::Dispose() */, { 1007, 1004, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 10822, -1, 1003 } /* System.Func`2<TSource,System.Boolean> System.Linq.Enumerable::CombinePredicates<TSource>(System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,System.Boolean>) */, { 10870, 1009, -1 } /* System.Void System.Linq.Enumerable/WhereSelectArrayIterator`2<TSource,TResult>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10837, 1007, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::.ctor() */, { 10854, 1007, -1 } /* System.Void System.Linq.Enumerable/WhereArrayIterator`1<TSource>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>) */, { 1007, 1008, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 10840, 1007, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::Dispose() */, { 10822, -1, 1007 } /* System.Func`2<TSource,System.Boolean> System.Linq.Enumerable::CombinePredicates<TSource>(System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,System.Boolean>) */, { 10875, 1013, -1 } /* System.Void System.Linq.Enumerable/WhereSelectListIterator`2<TSource,TResult>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10837, 1011, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::.ctor() */, { 10859, 1011, -1 } /* System.Void System.Linq.Enumerable/WhereListIterator`1<TSource>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 9629, 1011, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<TSource>::GetEnumerator() */, { 9655, 1011, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<TSource>::get_Current() */, { 1007, 1012, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 9653, 1011, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<TSource>::MoveNext() */, { 10840, 1011, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::Dispose() */, { 10822, -1, 1011 } /* System.Func`2<TSource,System.Boolean> System.Linq.Enumerable::CombinePredicates<TSource>(System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,System.Boolean>) */, { 10823, -1, 1021 } /* System.Func`2<TSource,TResult> System.Linq.Enumerable::CombineSelectors<TSource,TResult,TResult2>(System.Func`2<TSource,TMiddle>,System.Func`2<TMiddle,TResult>) */, { 10864, 1022, -1 } /* System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<TSource,TResult2>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10837, 1015, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TResult>::.ctor() */, { 10864, 1018, -1 } /* System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<TSource,TResult>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10840, 1015, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TResult>::Dispose() */, { 1007, 1017, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 1007, 1018, -1 } /* !1 System.Func`2<TSource,TResult>::Invoke(!0) */, { 10848, 1015, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<TResult>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10823, -1, 1029 } /* System.Func`2<TSource,TResult> System.Linq.Enumerable::CombineSelectors<TSource,TResult,TResult2>(System.Func`2<TSource,TMiddle>,System.Func`2<TMiddle,TResult>) */, { 10870, 1030, -1 } /* System.Void System.Linq.Enumerable/WhereSelectArrayIterator`2<TSource,TResult2>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10837, 1024, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TResult>::.ctor() */, { 10870, 1026, -1 } /* System.Void System.Linq.Enumerable/WhereSelectArrayIterator`2<TSource,TResult>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 1007, 1025, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 1007, 1026, -1 } /* !1 System.Func`2<TSource,TResult>::Invoke(!0) */, { 10840, 1024, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TResult>::Dispose() */, { 10848, 1024, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<TResult>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10823, -1, 1038 } /* System.Func`2<TSource,TResult> System.Linq.Enumerable::CombineSelectors<TSource,TResult,TResult2>(System.Func`2<TSource,TMiddle>,System.Func`2<TMiddle,TResult>) */, { 10875, 1039, -1 } /* System.Void System.Linq.Enumerable/WhereSelectListIterator`2<TSource,TResult2>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 10837, 1032, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TResult>::.ctor() */, { 10875, 1035, -1 } /* System.Void System.Linq.Enumerable/WhereSelectListIterator`2<TSource,TResult>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>) */, { 9629, 1033, -1 } /* System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<TSource>::GetEnumerator() */, { 9655, 1033, -1 } /* !0 System.Collections.Generic.List`1/Enumerator<TSource>::get_Current() */, { 1007, 1034, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 1007, 1035, -1 } /* !1 System.Func`2<TSource,TResult>::Invoke(!0) */, { 9653, 1033, -1 } /* System.Boolean System.Collections.Generic.List`1/Enumerator<TSource>::MoveNext() */, { 10840, 1032, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TResult>::Dispose() */, { 10848, 1032, -1 } /* System.Void System.Linq.Enumerable/WhereEnumerableIterator`1<TResult>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) */, { 10883, 1044, -1 } /* System.Void System.Linq.Enumerable/<SelectIterator>d__5`2<TSource,TResult>::<>m__Finally1() */, { 1011, 1043, -1 } /* !2 System.Func`3<TSource,System.Int32,TResult>::Invoke(!0,!1) */, { 10881, 1044, -1 } /* System.Void System.Linq.Enumerable/<SelectIterator>d__5`2<TSource,TResult>::System.IDisposable.Dispose() */, { 10880, 1044, -1 } /* System.Void System.Linq.Enumerable/<SelectIterator>d__5`2<TSource,TResult>::.ctor(System.Int32) */, { 10887, 1044, -1 } /* System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/<SelectIterator>d__5`2<TSource,TResult>::System.Collections.Generic.IEnumerable<TResult>.GetEnumerator() */, { 1007, 1045, -1 } /* !1 System.Func`2<TSource,System.Boolean>::Invoke(!0) */, { 1007, 1047, -1 } /* !1 System.Func`2<TSource,TMiddle>::Invoke(!0) */, { 1007, 1046, -1 } /* !1 System.Func`2<TMiddle,TResult>::Invoke(!0) */, { 10896, 1048, -1 } /* System.Void System.Linq.Enumerable/<OfTypeIterator>d__97`1<TResult>::<>m__Finally1() */, { 10894, 1048, -1 } /* System.Void System.Linq.Enumerable/<OfTypeIterator>d__97`1<TResult>::System.IDisposable.Dispose() */, { 10893, 1048, -1 } /* System.Void System.Linq.Enumerable/<OfTypeIterator>d__97`1<TResult>::.ctor(System.Int32) */, { 10900, 1048, -1 } /* System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/<OfTypeIterator>d__97`1<TResult>::System.Collections.Generic.IEnumerable<TResult>.GetEnumerator() */, { 10905, 1049, -1 } /* System.Void System.Linq.Enumerable/<CastIterator>d__99`1<TResult>::<>m__Finally1() */, { 10903, 1049, -1 } /* System.Void System.Linq.Enumerable/<CastIterator>d__99`1<TResult>::System.IDisposable.Dispose() */, { 10902, 1049, -1 } /* System.Void System.Linq.Enumerable/<CastIterator>d__99`1<TResult>::.ctor(System.Int32) */, { 10909, 1049, -1 } /* System.Collections.Generic.IEnumerator`1<TResult> System.Linq.Enumerable/<CastIterator>d__99`1<TResult>::System.Collections.Generic.IEnumerable<TResult>.GetEnumerator() */, { 10948, 1053, -1 } /* T System.Collections.Generic.HashSet`1/Enumerator<T>::get_Current() */, { 9514, 1052, -1 } /* System.Collections.Generic.EqualityComparer`1<!0> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 10915, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1<T>::.ctor(System.Collections.Generic.IEqualityComparer`1<T>) */, { 10917, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1<T>::.ctor(System.Collections.Generic.IEnumerable`1<T>,System.Collections.Generic.IEqualityComparer`1<T>) */, { 10943, 1052, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<T>::AreEqualityComparersEqual(System.Collections.Generic.HashSet`1<T>,System.Collections.Generic.HashSet`1<T>) */, { 10919, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1<T>::CopyFrom(System.Collections.Generic.HashSet`1<T>) */, { 10938, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1<T>::Initialize(System.Int32) */, { 10933, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1<T>::UnionWith(System.Collections.Generic.IEnumerable`1<T>) */, { 10937, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1<T>::TrimExcess() */, { 10942, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1<T>::AddValue(System.Int32,System.Int32,T) */, { 10941, 1052, -1 } /* System.Boolean System.Collections.Generic.HashSet`1<T>::AddIfNotPresent(T) */, { 10944, 1052, -1 } /* System.Int32 System.Collections.Generic.HashSet`1<T>::InternalGetHashCode(T) */, { 10935, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1<T>::CopyTo(T[],System.Int32,System.Int32) */, { 8892, -1, 1052 } /* System.Boolean System.Runtime.CompilerServices.RuntimeHelpers::IsReferenceOrContainsReferences<T>() */, { 10945, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1/Enumerator<T>::.ctor(System.Collections.Generic.HashSet`1<T>) */, { 10934, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1<T>::CopyTo(T[]) */, { 10940, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1<T>::SetCapacity(System.Int32) */, { 10939, 1052, -1 } /* System.Void System.Collections.Generic.HashSet`1<T>::IncreaseCapacity() */, { 10936, 1052, -1 } /* System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1<T>::get_Comparer() */, { 11317, -1, 1054 } /* T[] UnityEngine.GameObject::GetComponentsInChildren<T>(System.Boolean) */, { 11318, -1, 1055 } /* System.Void UnityEngine.GameObject::GetComponentsInChildren<T>(System.Boolean,System.Collections.Generic.List`1<T>) */, { 11208, -1, 1056 } /* T[] UnityEngine.Component::GetComponentsInChildren<T>(System.Boolean) */, { 11209, -1, 1057 } /* System.Void UnityEngine.Component::GetComponentsInChildren<T>(System.Boolean,System.Collections.Generic.List`1<T>) */, { 11320, -1, 1058 } /* System.Void UnityEngine.GameObject::GetComponentsInParent<T>(System.Boolean,System.Collections.Generic.List`1<T>) */, { 11315, -1, 1060 } /* T[] UnityEngine.GameObject::GetComponents<T>() */, { 11312, -1, 1061 } /* T UnityEngine.GameObject::GetComponentInChildren<T>(System.Boolean) */, { 11317, -1, 1064 } /* T[] UnityEngine.GameObject::GetComponentsInChildren<T>(System.Boolean) */, { 11667, -1, 1066 } /* T[] UnityEngine.Mesh::GetAllocArrayFromChannel<T>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh/InternalVertexChannelType,System.Int32) */, { 11746, -1, 1067 } /* System.Int32 UnityEngine.NoAllocHelpers::SafeLength<T>(System.Collections.Generic.List`1<T>) */, { 11746, -1, 1068 } /* System.Int32 UnityEngine.NoAllocHelpers::SafeLength<T>(System.Collections.Generic.List`1<T>) */, { 11671, -1, 1069 } /* System.Void UnityEngine.Mesh::SetListForChannel<T>(UnityEngine.Rendering.VertexAttribute,UnityEngine.Mesh/InternalVertexChannelType,System.Int32,System.Collections.Generic.List`1<T>) */, { 9604, 1070, -1 } /* System.Int32 System.Collections.Generic.List`1<T>::get_Count() */, { 11847, -1, 1071 } /* T[] UnityEngine.Resources::ConvertObjects<T>(UnityEngine.Object[]) */, { 12089, 1072, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T1>::add_Delegate(UnityEngine.Events.UnityAction`1<T1>) */, { 6556, -1, 1073 } /* !!0 System.Threading.Interlocked::CompareExchange<UnityEngine.Events.UnityAction`1<T1>>(!!0&,!!0,!!0) */, { 12077, -1, 1072 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T1>(System.Object) */, { 12147, 1072, -1 } /* System.Void UnityEngine.Events.UnityAction`1<T1>::Invoke(T0) */, { 12077, -1, 1075 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T1>(System.Object) */, { 12077, -1, 1076 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T2>(System.Object) */, { 12158, 1074, -1 } /* System.Void UnityEngine.Events.UnityAction`2<T1,T2>::Invoke(T0,T1) */, { 12077, -1, 1078 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T1>(System.Object) */, { 12077, -1, 1079 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T2>(System.Object) */, { 12077, -1, 1080 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T3>(System.Object) */, { 12165, 1077, -1 } /* System.Void UnityEngine.Events.UnityAction`3<T1,T2,T3>::Invoke(T0,T1,T2) */, { 12077, -1, 1082 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T1>(System.Object) */, { 12077, -1, 1083 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T2>(System.Object) */, { 12077, -1, 1084 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T3>(System.Object) */, { 12077, -1, 1085 } /* System.Void UnityEngine.Events.BaseInvokableCall::ThrowOnInvalidArg<T4>(System.Object) */, { 12172, 1081, -1 } /* System.Void UnityEngine.Events.UnityAction`4<T1,T2,T3,T4>::Invoke(T0,T1,T2,T3) */, { 12087, 1086, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12092, 1086, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T>::Invoke(T1) */, { 12155, 1087, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<T0>::GetDelegate(UnityEngine.Events.UnityAction`1<T0>) */, { 12087, 1087, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T0>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12088, 1087, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T0>::.ctor(UnityEngine.Events.UnityAction`1<T1>) */, { 12092, 1087, -1 } /* System.Void UnityEngine.Events.InvokableCall`1<T0>::Invoke(T1) */, { 12094, 1088, -1 } /* System.Void UnityEngine.Events.InvokableCall`2<T0,T1>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12097, 1089, -1 } /* System.Void UnityEngine.Events.InvokableCall`3<T0,T1,T2>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 12100, 1090, -1 } /* System.Void UnityEngine.Events.InvokableCall`4<T0,T1,T2,T3>::.ctor(System.Object,System.Reflection.MethodInfo) */, { 9514, 1091, -1 } /* System.Collections.Generic.EqualityComparer`1<!0> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 12251, -1, 1091 } /* System.Void UnityEngine.Assertions.Assert::AreEqual<T>(T,T,System.String,System.Collections.Generic.IEqualityComparer`1<T>) */, { 13558, -1, 1093 } /* System.Void UnityEngine.EventSystems.ExecuteEvents::GetEventList<T>(UnityEngine.GameObject,System.Collections.Generic.IList`1<UnityEngine.EventSystems.IEventSystemHandler>) */, { 13564, 1093, -1 } /* System.Void UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>::Invoke(T1,UnityEngine.EventSystems.BaseEventData) */, { 13555, -1, 1094 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<T>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) */, { 13557, -1, 1095 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::ShouldSendToComponent<T>(UnityEngine.Component) */, { 13558, -1, 1096 } /* System.Void UnityEngine.EventSystems.ExecuteEvents::GetEventList<T>(UnityEngine.GameObject,System.Collections.Generic.IList`1<UnityEngine.EventSystems.IEventSystemHandler>) */, { 13559, -1, 1097 } /* System.Boolean UnityEngine.EventSystems.ExecuteEvents::CanHandleEvent<T>(UnityEngine.GameObject) */, { 13828, 1098, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>c__Iterator0<T>::.ctor() */, { 13827, 1098, -1 } /* System.Void UnityEngine.UI.CoroutineTween.TweenRunner`1<T>::StopTween() */, { 13824, 1098, -1 } /* System.Collections.IEnumerator UnityEngine.UI.CoroutineTween.TweenRunner`1<T>::Start(T) */, { 11307, -1, 1099 } /* !!0 UnityEngine.GameObject::GetComponent<T>() */, { 11323, -1, 1099 } /* !!0 UnityEngine.GameObject::AddComponent<T>() */, { 9514, 1100, -1 } /* System.Collections.Generic.EqualityComparer`1<!0> System.Collections.Generic.EqualityComparer`1<T>::get_Default() */, { 9516, 1100, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::Equals(!0,!0) */, { 9599, 1101, -1 } /* System.Void System.Collections.Generic.List`1<T>::.ctor() */, { 9400, 1102, -1 } /* System.Void System.Collections.Generic.Dictionary`2<T,System.Int32>::.ctor() */, { 9615, 1101, -1 } /* System.Void System.Collections.Generic.List`1<T>::Add(!0) */, { 9604, 1101, -1 } /* System.Int32 System.Collections.Generic.List`1<T>::get_Count() */, { 9410, 1102, -1 } /* System.Void System.Collections.Generic.Dictionary`2<T,System.Int32>::Add(!0,!1) */, { 9415, 1102, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<T,System.Int32>::ContainsKey(!0) */, { 9428, 1102, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<T,System.Int32>::TryGetValue(!0,!1&) */, { 15016, 1101, -1 } /* System.Void UnityEngine.UI.Collections.IndexedSet`1<T>::RemoveAt(System.Int32) */, { 15007, 1101, -1 } /* System.Collections.Generic.IEnumerator`1<T> UnityEngine.UI.Collections.IndexedSet`1<T>::GetEnumerator() */, { 9619, 1101, -1 } /* System.Void System.Collections.Generic.List`1<T>::Clear() */, { 9414, 1102, -1 } /* System.Void System.Collections.Generic.Dictionary`2<T,System.Int32>::Clear() */, { 9625, 1101, -1 } /* System.Void System.Collections.Generic.List`1<T>::CopyTo(!0[],System.Int32) */, { 9610, 1101, -1 } /* !0 System.Collections.Generic.List`1<T>::get_Item(System.Int32) */, { 9427, 1102, -1 } /* System.Boolean System.Collections.Generic.Dictionary`2<T,System.Int32>::Remove(!0) */, { 9640, 1101, -1 } /* System.Void System.Collections.Generic.List`1<T>::RemoveAt(System.Int32) */, { 9611, 1101, -1 } /* System.Void System.Collections.Generic.List`1<T>::set_Item(System.Int32,!0) */, { 9409, 1102, -1 } /* System.Void System.Collections.Generic.Dictionary`2<T,System.Int32>::set_Item(!0,!1) */, { 1031, 1101, -1 } /* System.Boolean System.Predicate`1<T>::Invoke(!0) */, { 15006, 1101, -1 } /* System.Boolean UnityEngine.UI.Collections.IndexedSet`1<T>::Remove(T) */, { 9647, 1101, -1 } /* System.Void System.Collections.Generic.List`1<T>::Sort(System.Comparison`1<!0>) */, { 9619, 1103, -1 } /* System.Void System.Collections.Generic.List`1<T>::Clear() */, { 15030, 1104, -1 } /* T UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<T>>::Get() */, { 15031, 1104, -1 } /* System.Void UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<T>>::Release(T) */, { 15021, 1103, -1 } /* System.Void UnityEngine.UI.ListPool`1<T>::Clear(System.Collections.Generic.List`1<T>) */, { 12146, 1104, -1 } /* System.Void UnityEngine.Events.UnityAction`1<System.Collections.Generic.List`1<T>>::.ctor(System.Object,System.IntPtr) */, { 15025, 1104, -1 } /* System.Void UnityEngine.UI.ObjectPool`1<System.Collections.Generic.List`1<T>>::.ctor(UnityEngine.Events.UnityAction`1<T>,UnityEngine.Events.UnityAction`1<T>) */, { 10778, 1105, -1 } /* System.Void System.Collections.Generic.Stack`1<T>::.ctor() */, { 15026, 1105, -1 } /* System.Int32 UnityEngine.UI.ObjectPool`1<T>::get_countAll() */, { 15029, 1105, -1 } /* System.Int32 UnityEngine.UI.ObjectPool`1<T>::get_countInactive() */, { 10779, 1105, -1 } /* System.Int32 System.Collections.Generic.Stack`1<T>::get_Count() */, { 1040, -1, 1105 } /* !!0 System.Activator::CreateInstance<T>() */, { 15027, 1105, -1 } /* System.Void UnityEngine.UI.ObjectPool`1<T>::set_countAll(System.Int32) */, { 10786, 1105, -1 } /* !0 System.Collections.Generic.Stack`1<T>::Pop() */, { 12147, 1105, -1 } /* System.Void UnityEngine.Events.UnityAction`1<T>::Invoke(!0) */, { 10785, 1105, -1 } /* !0 System.Collections.Generic.Stack`1<T>::Peek() */, { 10787, 1105, -1 } /* System.Void System.Collections.Generic.Stack`1<T>::Push(!0) */, { 15401, -1, 1106 } /* T[] Vuforia.UnityComponentExtensions::GetComponentsOnlyInChildren<T>(UnityEngine.Component,System.Boolean) */, { 9599, 1107, -1 } /* System.Void System.Collections.Generic.List`1<T>::.ctor() */, { 11208, -1, 1107 } /* !!0[] UnityEngine.Component::GetComponentsInChildren<T>(System.Boolean) */, { 9615, 1107, -1 } /* System.Void System.Collections.Generic.List`1<T>::Add(!0) */, { 9648, 1107, -1 } /* !0[] System.Collections.Generic.List`1<T>::ToArray() */, { 987, 1108, -1 } /* System.Void System.Action`1<T>::Invoke(!0) */, { 17889, -1, 1111 } /* T Vuforia.VuforiaRuntimeUtilities::SafeInitTracker<T>() */, { 17982, -1, 1112 } /* T Vuforia.ITrackerManager::GetTracker<T>() */, { 17983, -1, 1112 } /* T Vuforia.ITrackerManager::InitTracker<T>() */, { 17982, -1, 1113 } /* T Vuforia.ITrackerManager::GetTracker<T>() */, { 17984, -1, 1113 } /* System.Boolean Vuforia.ITrackerManager::DeinitTracker<T>() */, { 17967, -1, 1114 } /* System.Type Vuforia.TrackerManager::GetMappableType<T>() */, { 17969, -1, 1115 } /* System.Boolean Vuforia.TrackerManager::IsTrackerSupportedNatively<T>() */, { 17967, -1, 1115 } /* System.Type Vuforia.TrackerManager::GetMappableType<T>() */, { 17967, -1, 1116 } /* System.Type Vuforia.TrackerManager::GetMappableType<T>() */, { 17969, -1, 1116 } /* System.Boolean Vuforia.TrackerManager::IsTrackerSupportedNatively<T>() */, { 5056, 858, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.IO.Iterator`1<TSource>::GetEnumerator() */, { 5059, 858, -1 } /* System.Collections.IEnumerator System.IO.Iterator`1<TSource>::System.Collections.IEnumerable.GetEnumerator() */, { 5052, 858, -1 } /* TSource System.IO.Iterator`1<TSource>::get_Current() */, { 5058, 858, -1 } /* System.Object System.IO.Iterator`1<TSource>::System.Collections.IEnumerator.get_Current() */, { 5060, 858, -1 } /* System.Void System.IO.Iterator`1<TSource>::System.Collections.IEnumerator.Reset() */, { 6625, 878, -1 } /* System.Void System.Threading.Tasks.Task`1<TResult>::InnerInvoke() */, { 6625, 181, -1 } /* System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::InnerInvoke() */, { 9521, 1, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.String>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9520, 1, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.String>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9518, 1, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.String>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 1, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.String>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9500, 932, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<T>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9500, 933, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<System.Nullable`1<T>>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9500, 935, -1 } /* System.Int32 System.Collections.Generic.Comparer`1<T>::System.Collections.IComparer.Compare(System.Object,System.Object) */, { 9521, 937, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9520, 937, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 938, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Nullable`1<T>>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9520, 938, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Nullable`1<T>>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 940, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9520, 940, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9521, 941, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9520, 941, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9518, 941, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 941, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9556, 942, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<T>::Equals(System.Object) */, { 9557, 942, -1 } /* System.Int32 System.Collections.Generic.EnumEqualityComparer`1<T>::GetHashCode() */, { 9521, 942, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9520, 942, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9551, 942, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<T>::Equals(T,T) */, { 9518, 942, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 942, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9555, 942, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<T>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9556, 943, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<T>::Equals(System.Object) */, { 9557, 943, -1 } /* System.Int32 System.Collections.Generic.EnumEqualityComparer`1<T>::GetHashCode() */, { 9521, 943, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9520, 943, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9551, 943, -1 } /* System.Boolean System.Collections.Generic.EnumEqualityComparer`1<T>::Equals(T,T) */, { 9518, 943, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 943, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 9555, 943, -1 } /* System.Void System.Collections.Generic.EnumEqualityComparer`1<T>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, { 9521, 944, -1 } /* System.Boolean System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) */, { 9520, 944, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::System.Collections.IEqualityComparer.GetHashCode(System.Object) */, { 9518, 944, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::IndexOf(T[],T,System.Int32,System.Int32) */, { 9519, 944, -1 } /* System.Int32 System.Collections.Generic.EqualityComparer`1<T>::LastIndexOf(T[],T,System.Int32,System.Int32) */, { 10841, 1003, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::GetEnumerator() */, { 10846, 1003, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerable.GetEnumerator() */, { 10838, 1003, -1 } /* TSource System.Linq.Enumerable/Iterator`1<TSource>::get_Current() */, { 10845, 1003, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerator.get_Current() */, { 10847, 1003, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerator.Reset() */, { 10841, 1007, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::GetEnumerator() */, { 10846, 1007, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerable.GetEnumerator() */, { 10838, 1007, -1 } /* TSource System.Linq.Enumerable/Iterator`1<TSource>::get_Current() */, { 10845, 1007, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerator.get_Current() */, { 10847, 1007, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerator.Reset() */, { 10841, 1011, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<TSource>::GetEnumerator() */, { 10846, 1011, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerable.GetEnumerator() */, { 10838, 1011, -1 } /* TSource System.Linq.Enumerable/Iterator`1<TSource>::get_Current() */, { 10845, 1011, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerator.get_Current() */, { 10847, 1011, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TSource>::System.Collections.IEnumerator.Reset() */, { 10841, 1015, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<TResult>::GetEnumerator() */, { 10846, 1015, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<TResult>::System.Collections.IEnumerable.GetEnumerator() */, { 10838, 1015, -1 } /* TSource System.Linq.Enumerable/Iterator`1<TResult>::get_Current() */, { 10845, 1015, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<TResult>::System.Collections.IEnumerator.get_Current() */, { 10847, 1015, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TResult>::System.Collections.IEnumerator.Reset() */, { 10841, 1024, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<TResult>::GetEnumerator() */, { 10846, 1024, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<TResult>::System.Collections.IEnumerable.GetEnumerator() */, { 10838, 1024, -1 } /* TSource System.Linq.Enumerable/Iterator`1<TResult>::get_Current() */, { 10845, 1024, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<TResult>::System.Collections.IEnumerator.get_Current() */, { 10847, 1024, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TResult>::System.Collections.IEnumerator.Reset() */, { 10841, 1032, -1 } /* System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/Iterator`1<TResult>::GetEnumerator() */, { 10846, 1032, -1 } /* System.Collections.IEnumerator System.Linq.Enumerable/Iterator`1<TResult>::System.Collections.IEnumerable.GetEnumerator() */, { 10838, 1032, -1 } /* TSource System.Linq.Enumerable/Iterator`1<TResult>::get_Current() */, { 10845, 1032, -1 } /* System.Object System.Linq.Enumerable/Iterator`1<TResult>::System.Collections.IEnumerator.get_Current() */, { 10847, 1032, -1 } /* System.Void System.Linq.Enumerable/Iterator`1<TResult>::System.Collections.IEnumerator.Reset() */, { 12093, 1086, -1 } /* System.Boolean UnityEngine.Events.InvokableCall`1<T>::Find(System.Object,System.Reflection.MethodInfo) */, { 12153, 360, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::FindMethod_Impl(System.String,System.Object) */, { 12154, 360, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12153, 468, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<UnityEngine.EventSystems.BaseEventData>::FindMethod_Impl(System.String,System.Object) */, { 12154, 468, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.EventSystems.BaseEventData>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12153, 1, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<System.String>::FindMethod_Impl(System.String,System.Object) */, { 12154, 1, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<System.String>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12153, 485, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<UnityEngine.GameObject>::FindMethod_Impl(System.String,System.Object) */, { 12154, 485, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.GameObject>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12153, 484, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<UnityEngine.Transform>::FindMethod_Impl(System.String,System.Object) */, { 12154, 484, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<UnityEngine.Transform>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, { 12153, 600, -1 } /* System.Reflection.MethodInfo UnityEngine.Events.UnityEvent`1<Vuforia.HitTestResult>::FindMethod_Impl(System.String,System.Object) */, { 12154, 600, -1 } /* UnityEngine.Events.BaseInvokableCall UnityEngine.Events.UnityEvent`1<Vuforia.HitTestResult>::GetDelegate(System.Object,System.Reflection.MethodInfo) */, };
[ "altutar@davidson.edu" ]
altutar@davidson.edu
fc585a3dd2e5d7aa54a128565f870f3e02b17576
14321c43ff636244fb79d4435874ef062f6ed785
/SUSYPheno/DARKSUSY/darksusy-5.1.1/contrib/galprop/v42.3ds/tridag_ext.cc
31ac1c45c0fcc2c831a92d29b130a214d363d55f
[]
no_license
Etienne357/FYS5555
13f9301bcca6f4d16c95a38245b025ea35356f58
8bb0ec5eecb37abb451a3a9b25d3f3aca9a1f882
refs/heads/master
2022-02-04T22:48:30.649921
2022-01-13T13:45:09
2022-01-13T13:45:09
194,678,500
0
1
null
null
null
null
UTF-8
C++
false
false
2,125
cc
//**.****|****.****|****.****|****.****|****.****|****.****|****.****|****.****| // * tridag_ext.cc * galprop package * 3/29/2002 //**"****!****"****!****"****!****"****!****"****!****"****!****"****!****"****| #include <stdio.h> #include <iostream.h> int tridag_ext_init=0; int tridag_ext(float a[], float b[], float c[], float r[], float u[], int n,int nk) { int j,key,k,kk; static int NMAX; static float *gam; static float *bet; if(tridag_ext_init==0) { tridag_ext_init=1; NMAX=n*nk; cout<<" tridag_ext: initializing arrays: n="<<n<<" nk= "<<nk<<endl; cout<<" tridag_ext: initializing arrays to dimension ="<<NMAX<<endl; gam =new float[NMAX]; bet =new float[NMAX]; } // cout<<" tridag_ext: : n="<<n<<" nk= "<<nk<<" NMAX="<<NMAX<<endl; // the dimensions in x,y,z,p are different so may need to reallocate: AWS20010123 if(n*nk>NMAX) { cout<<" tridag_ext ... n*nk>NMAX"<<endl; cout<<" tridag_ext: : n="<<n<<" nk= "<<nk<<" NMAX="<<NMAX<<endl; NMAX=n*nk; cout<<" tridag_sym_ext: re-initializing arrays: n="<<n<<" nk= "<<nk<<endl; cout<<" tridag_sym_ext: re-initializing arrays to dimension ="<<NMAX<<endl; delete[] gam; delete[] bet; gam =new float[NMAX]; bet =new float[NMAX]; } if(b[0] == 0) { printf("\ntridag ... rewrite equations\n\n"); return (1); } #pragma vdir nodep for(k=0,kk=0;k<nk;k++,kk+=n) bet[k]=b[kk]; #pragma vdir nodep for(k=0,kk=0;k<nk;k++,kk+=n) u[kk]= r[kk]/bet[k]; for(j=1; j<n; j++) { #pragma vdir nodep for(k=0,kk=0; k<nk; k++,kk+=n) gam[j+kk] = c[j-1+kk]/bet[k]; #pragma vdir nodep for(k=0,kk=0;k<nk;k++,kk+=n) bet[k] = b[j+kk]-a[j+kk]*gam[j+kk]; // if(bet == 0.) { printf("\ntridag ... tridag failed\n\n"); return (2); } #pragma vdir nodep for(k=0,kk=0;k<nk;k++,kk+=n) u[j+kk] = (r[j+kk]-a[j+kk]*u[j-1+kk])/bet[k]; } for(j=n-2; j>=0;j--) #pragma vdir nodep for(k=0,kk=0;k<nk;k++,kk+=n) u[j+kk]=u[j+kk]-gam[j+1+kk]*u[j+1+kk]; return (0); }
[ "michael.arlandoo@gmail.com" ]
michael.arlandoo@gmail.com
d7ce0ed44045076955e22db825e16ed0455ff256
41b4adb10cc86338d85db6636900168f55e7ff18
/aws-cpp-sdk-inspector/source/model/DescribeApplicationRequest.cpp
0b72398c71328fddcb0f5a4a71b58596f13b2584
[ "JSON", "MIT", "Apache-2.0" ]
permissive
totalkyos/AWS
1c9ac30206ef6cf8ca38d2c3d1496fa9c15e5e80
7cb444814e938f3df59530ea4ebe8e19b9418793
refs/heads/master
2021-01-20T20:42:09.978428
2016-07-16T00:03:49
2016-07-16T00:03:49
63,465,708
1
1
null
null
null
null
UTF-8
C++
false
false
1,401
cpp
/* * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. 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. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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 <aws/inspector/model/DescribeApplicationRequest.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::Inspector::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; DescribeApplicationRequest::DescribeApplicationRequest() : m_applicationArnHasBeenSet(false) { } Aws::String DescribeApplicationRequest::SerializePayload() const { JsonValue payload; if(m_applicationArnHasBeenSet) { payload.WithString("applicationArn", m_applicationArn); } return payload.WriteReadable(); } Aws::Http::HeaderValueCollection DescribeApplicationRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "InspectorService.DescribeApplication")); return headers; }
[ "henso@amazon.com" ]
henso@amazon.com
c2fb6e3460b2da0f715bce06a4384386129a0605
9de18ef120a8ae68483b866c1d4c7b9c2fbef46e
/src/SshQtTestUtils/include/SshQtTestUtils/KillProcessListeningOnTcpPort.h
44aa7b27e7ee6257517ccc79db8903b99edc0803
[ "BSD-2-Clause", "LicenseRef-scancode-free-unknown" ]
permissive
google/orbit
02a5b4556cd2f979f377b87c24dd2b0a90dff1e2
68c4ae85a6fe7b91047d020259234f7e4961361c
refs/heads/main
2023-09-03T13:14:49.830576
2023-08-25T06:28:36
2023-08-25T06:28:36
104,358,587
2,680
325
BSD-2-Clause
2023-08-25T06:28:37
2017-09-21T14:28:35
C++
UTF-8
C++
false
false
833
h
// Copyright (c) 2022 The Orbit Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef ORBIT_SSH_QT_TEST_UTILS_KILL_PROCESS_LISTENING_ON_TCP_PORT_H_ #define ORBIT_SSH_QT_TEST_UTILS_KILL_PROCESS_LISTENING_ON_TCP_PORT_H_ #include "OrbitBase/Result.h" #include "OrbitSshQt/Session.h" namespace orbit_ssh_qt_test_utils { // Launches a task through the given SSH session that kills the process listening on the given TCP // port. Reports an error if that fails. Note that also an error is reported if it fails to kill // any process. ErrorMessageOr<void> KillProcessListeningOnTcpPort(orbit_ssh_qt::Session* session, int tcp_port); } // namespace orbit_ssh_qt_test_utils #endif // ORBIT_SSH_QT_TEST_UTILS_KILL_PROCESS_LISTENING_ON_TCP_PORT_H_
[ "noreply@github.com" ]
google.noreply@github.com
5aef8ec74a0b776f8dded448f10d22a9f470aac7
1aed635fb5746b3b3dfcde46dd31896b290d385f
/torch/csrc/jit/codegen/cuda/lower_instrument.h
6ad39737b44035cfa1e171854ae01e14088815b4
[ "BSD-2-Clause", "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "BSL-1.0", "Apache-2.0" ]
permissive
csarofeen/pytorch
a9dd0f8ffa0642d72df2d5e109a8b4d9c2389cbc
d19988093d1b7942d15dce6ef61b62dccfc3b8a3
refs/heads/master
2023-04-30T02:42:13.558738
2022-12-21T01:43:51
2022-12-21T21:20:56
88,071,101
35
10
NOASSERTION
2023-06-21T17:37:30
2017-04-12T16:02:31
C++
UTF-8
C++
false
false
781
h
#pragma once #include <torch/csrc/jit/codegen/cuda/ir_all_nodes.h> namespace torch { namespace jit { namespace fuser { namespace cuda { //! Set up KernelPerformanceProfile of GpuLower when enabled, which //! keeps track of expressions to profile. A new TensorView is added //! for storing profiling results. The expression list is prepended //! with an kir::Allocate node to allocate the TensorView profile //! buffer. Note that any expression added after this pass will not be //! profiled, so this pass should be called after all expressions are //! lowered. KernelPerformanceProfile is copied to Kernel after //! lowering. std::vector<Expr*> instrumentKernel(const std::vector<Expr*>& exprs); } // namespace cuda } // namespace fuser } // namespace jit } // namespace torch
[ "nshulga@fb.com" ]
nshulga@fb.com
d3c437265341560b9a2f43d36e4095b541729fd6
52eaa24b0401faf19fea83e2cdce0b8910cec1c7
/Common/DirectXHelper.h
7d63ecdead08bbfbba24810729ae6535e7848465
[]
no_license
GiraffeSoftwareDevelopment/UwpDirectX11Sample
3ee7cc7f3216ceb4ae5861b7478214a376a52639
8a38477150d220e19a55763b426d2fcbda43eff9
refs/heads/master
2020-06-16T06:09:11.806570
2019-07-08T13:48:29
2019-07-08T13:48:29
195,497,953
0
0
null
null
null
null
UTF-8
C++
false
false
1,632
h
#pragma once #include <ppltasks.h> namespace UwpWithDirectX11Sample { template<class T> inline void safe_release (T& p) { if (p) { p->Release(); p = NULL; } } class ScopedMutex { public: ScopedMutex(std::mutex *lock) { m_lock = lock; m_lock->lock(); } ~ScopedMutex(){m_lock->unlock();} std::mutex *m_lock; }; } namespace DX { inline void ThrowIfFailed(HRESULT hr) { if (FAILED(hr)) { throw Platform::Exception::CreateException(hr); } } inline Concurrency::task<std::vector<byte>> ReadDataAsync(const std::wstring& filename) { using namespace Windows::Storage; using namespace Concurrency; auto folder = Windows::ApplicationModel::Package::Current->InstalledLocation; return create_task(folder->GetFileAsync(Platform::StringReference(filename.c_str()))).then([] (StorageFile^ file) { return FileIO::ReadBufferAsync(file); }).then([] (Streams::IBuffer^ fileBuffer) -> std::vector<byte> { std::vector<byte> returnBuffer; returnBuffer.resize(fileBuffer->Length); Streams::DataReader::FromBuffer(fileBuffer)->ReadBytes(Platform::ArrayReference<byte>(returnBuffer.data(), fileBuffer->Length)); return returnBuffer; }); } inline float ConvertDipsToPixels(float dips, float dpi) { static const float dipsPerInch = 96.0f; return floorf(dips * dpi / dipsPerInch + 0.5f); } #if defined(_DEBUG) inline bool SdkLayersAvailable() { HRESULT hr = D3D11CreateDevice( nullptr, D3D_DRIVER_TYPE_NULL, 0, D3D11_CREATE_DEVICE_DEBUG, nullptr, 0, D3D11_SDK_VERSION, nullptr, nullptr, nullptr); return SUCCEEDED(hr); } #endif }
[ "kurosawatakuya@gmail.com" ]
kurosawatakuya@gmail.com
50d4fe7892d67115a07a912bedc34b3f12329878
0882b44e8478e64e418c7aa1df347b84f52d7f2e
/cdoes/BST.cpp
7d2148d7cf3fb5cdc0a2a399b4d2adf7f6b12111
[]
no_license
Aldokimi/Algorithms_and_Datastructure
247e2d8fecd4d955c477993e400f45c69665b562
69ebf4308352d7729e38b3dae84f177a873cc451
refs/heads/main
2023-04-30T13:06:22.729726
2021-05-21T08:20:18
2021-05-21T08:20:18
332,343,028
0
0
null
null
null
null
UTF-8
C++
false
false
1,864
cpp
#include <iostream> using namespace std; class BST { int data; BST *left, *right; public: // Default constructor. BST(); // Parameterized constructor. BST(int); // Insert function. BST* Insert(BST*, int); // Inorder traversal. void Inorder(BST*); }; // Default Constructor definition. BST ::BST() : data(0) , left(NULL) , right(NULL) { } // Parameterized Constructor definition. BST ::BST(int value) { data = value; left = right = NULL; } // Insert function definition. BST* BST ::Insert(BST* root, int value) { if (!root) { // Insert the first node, if root is NULL. return new BST(value); } // Insert data. if (value > root->data) { // Insert right node data, if the 'value' // to be inserted is greater than 'root' node data. // Process right nodes. root->right = Insert(root->right, value); } else { // Insert left node data, if the 'value' // to be inserted is greater than 'root' node data. // Process left nodes. root->left = Insert(root->left, value); } // Return 'root' node, after insertion. return root; } // Inorder traversal function. // This gives data in sorted order. void BST ::Inorder(BST* root) { if (!root) { return; } Inorder(root->left); cout << root->data << endl; Inorder(root->right); } // Driver code int main() { BST b, *root = NULL; root = b.Insert(root, 50); b.Insert(root, 30); b.Insert(root, 20); b.Insert(root, 40); b.Insert(root, 70); b.Insert(root, 60); b.Insert(root, 80); //from those basics you can aplly the other methods easly return 0; }
[ "The_Thing@users.noreply.github.com" ]
The_Thing@users.noreply.github.com
7e1f51654daead7d9f92c9c86c0ffc3c15cc29e4
230ae952d81a91081a713f9ba35ebca9106dfbdc
/elementary/automorphicNum.cpp
06cdadcfdccb128cee7914e5508afb7cda20bb44
[]
no_license
AgathEmmanuel/cpper
06a1ad438fe25e5362f915f341ce77994d2b67dd
3bb4743c4109cb0e24abbfbdf075823e7bb49f7c
refs/heads/master
2023-08-29T10:15:48.284126
2021-10-31T14:22:28
2021-10-31T14:22:28
314,866,592
0
0
null
null
null
null
UTF-8
C++
false
false
302
cpp
#include <iostream> using namespace std; bool_auto(int n){ int sq=n*n; while(n>0){ if(n%10!=sq%10) return false; n/=10; sq/=10; } return true; } int main(){ int num; cout<<"Enter num "; cin>>num; bool_auto(num)?cout<<"auotmorphic":cout<<"not automorphic"; cout<<endl; return 0; }
[ "agathemmanuel00@gmail.com" ]
agathemmanuel00@gmail.com
dffeb98705bd78fa59c703cfa53b22aeb933f10b
77e68c7f1514ef1c32d6cb1937cc24344b491a38
/app/application.cpp
cd11d2fc8f0dca66ccff6f22e274da1622dad22d
[]
no_license
jakubbialas/esp-blink
d96945c8eb7fa061a7cf234dc7866026f135f20c
f05e25cd6fcac54dd95a676463d6a7db90628842
refs/heads/master
2020-04-05T13:23:24.448944
2018-11-09T18:08:59
2018-11-09T18:08:59
156,900,274
0
0
null
null
null
null
UTF-8
C++
false
false
1,992
cpp
#include <user_config.h> #include <SmingCore/SmingCore.h> #define LAMP1 4 #define LAMP2 5 #define LAMP3 0 //!! #define LAMP4 2 #define LAMP5 15 #define LAMPR 13 #define LAMPG 12 #define LAMPB 14 Timer procTimer1; Timer procTimer2; bool state = true; uint8_t pins[3] = { LAMPR, LAMPG, LAMPB }; // List of pins that you want to connect to pwm HardwarePWM HW_pwm(pins, 3); void blink() { debugf("\n\n############# blink #############################################"); digitalWrite(LAMP1, state); digitalWrite(LAMP2, state); digitalWrite(LAMP3, state); digitalWrite(LAMP4, state); digitalWrite(LAMP5, state); // digitalWrite(LAMPR, state); // digitalWrite(LAMPG, state); // digitalWrite(LAMPB, state); state = !state; } int32 i = 0; int32 inc = 1; void doPWM() { i += inc; HW_pwm.analogWrite(LAMPR, (i + 0 ) % 60); HW_pwm.analogWrite(LAMPG, (i + 20) % 60); HW_pwm.analogWrite(LAMPB, (i + 40) % 60); debugf("\n\n############################ %i ##########################################", i); } void init() { Serial.begin(SERIAL_BAUD_RATE); // 115200 by default Serial.systemDebugOutput(true); // Enable debug output to serial WifiAccessPoint.enable(false, true); WifiStation.enable(true, true); WifiStation.config("Valhalla", "dalejdupa", true, true); WifiStation.enableDHCP(true); WifiStation.connect(); pinMode(LAMP1, OUTPUT); pinMode(LAMP2, OUTPUT); pinMode(LAMP3, OUTPUT); pinMode(LAMP4, OUTPUT); pinMode(LAMP5, OUTPUT); // pinMode(LAMPR, OUTPUT); // pinMode(LAMPG, OUTPUT); // pinMode(LAMPB, OUTPUT); debugf("\n\n###########################################################################"); procTimer1.initializeMs(500, blink).start(); HW_pwm.analogWrite(LAMPR, 1); HW_pwm.analogWrite(LAMPG, 1); HW_pwm.analogWrite(LAMPB, 1); // // //debugf("PWM output set on all 8 Pins. Kindly check..."); // //debugf("Now Pin 2 will go from 0 to VCC to 0 in cycles."); // procTimer2.initializeMs(100, doPWM).start(); }
[ "jb@3a.pl" ]
jb@3a.pl
b1905ae7f09c0cf5a47d6220fc87a34387bb67d6
2669416a91734076f1bcf21d2e64e005ee5b4f90
/XJTFBPlatformLib/tfbPlatform/TfbTemplat.h
23745e6424c61b85c3945634f355907c270f1757
[]
no_license
qjj617/QuantizationTradePlatformServer
3e48e00b414f62a3e3bfad9bc87dc8fea7bb3f15
abae418bd468cb3965fa4866ac739c9dbc634c60
refs/heads/master
2020-03-20T04:11:29.928955
2017-11-06T09:26:11
2017-11-06T09:26:11
null
0
0
null
null
null
null
GB18030
C++
false
false
3,068
h
/********************************************************************** 文件名:TfbTemplat.h 功能和模块的目的:文件定义了天富宝国际交易系统模板类 开发者及日期:李宝鑫 2017.10.10 **********************************************************************/ #pragma once #include <vector> #include "TfbTradeApi.h" #include "windows.h" #include "../../protocol/XJIPlatformApi.h" //平台回调接口头文件 #include <string> #include "TfbCommon.h" struct TfbLoadTrade { //用户名 STR64 sUserName; //订单号 int nOrderNo; //成交时间 STR64 cTradeDataTime; //合约 STR16 sContrctNo; //买卖 char chOrderSide; //平开标志 char chOffset; //成交价格 double dMatchPrice; //成交数量 int nMatchVolume; //手续费 double dFeeValue; }; class CTfbTemplat { public: CTfbTemplat(PFNPLATFORMDATAPROC pfn); ~CTfbTemplat(); //多用户开发 double PushCurPriceInfo(const tPriceData *pPriceDateInfo);//根据行情计算浮动盈亏 bool PushUserInfo(string sUserFlag, AdminUserRsp_Trade* pUserRsp); string GetUserFlag(int nUserID); //根据UserID获取UserFlag string GetUserFlag(string sUserName); //根据UserName获取UserFlag string TfbGetUserName(int nUserID); //根据UserID获取用户名 bool PushPositionInfo(string sUserName, TFBApiPosition *pPositionInfo); bool PushOrderInfo(string sUserName, TFBApiOrder* pOrderInfo); bool ModifyOrderInfo(string sUserName, int nOrderID); //修改订单状态 //订单成交时根据持仓ID修改持仓量(平仓时需要把持仓量0发给界面,用户信息里由于已平仓不会有平仓商品的持仓量) bool ModifyPositionInfo(string sUserName, int nUserID, string sProductCode, double dNumber, int nIsBuy); bool PullOrderInfo(string sUserName, int nOrderID); //撤单 bool ClearPositionInfo(string sUserName); //清空某用户持仓 bool ClearOrderInfo(string sUserName); //清空某用户订单 bool ClearUserInfo(string sUserName); //清空某用户数据 bool PushUserInforRespond(string sUserName, TFBApiUserInforRespond *pUserInforRespond); bool ClearUserInfofRespond(string sUserName); //清空用户回调数据 bool PushLoadTradeOrder(string sUserName, TFBApiLoadTrade *pLoadTrade);//加载成交订单信息 bool GetLoadTradeOrder(string sUserName, string sStartDate, string sEndDate); //推送制定起止日期成交订单 bool ClearLoadTradeOrder(string sUserName);//清空某用户已成交订单数据 bool ModifyLoadTradeOrder(string sUserName, TFBApiUpDateTrade *pUpdateTrade); //新成交订单添加 public: PFNPLATFORMDATAPROC m_pPlatformDataProc; private: CRITICAL_SECTION cs; map <string, vector<AdminUserRsp_Trade>> m_UserMap; map <string, vector<TFBApiPosition>> m_PositionMap; map <string, vector<TFBApiOrder>> m_OrderMap; map <string, vector<TFBApiUserInforRespond>> m_UserInforRespondMap; map <string, vector<TfbLoadTrade>> m_LoadTradeOrder; double dPositionProfit; };
[ "zjian.cao@qq.com" ]
zjian.cao@qq.com
f2f20ed852a3f454375e42948e48afc98de3e451
131c79267f1d6e4297caa02d38cecd25b52ebc79
/vc2019/Image.cpp
95c70e1ae6659ab0a2c602a27c8d702cee6bf323
[]
no_license
DarkoVasiljevic/Cinder-app
e38db745f7926f26f5eeb80c004516fbcea4757e
02ef6e377cf3afd2ca0a8238937f7220733d3569
refs/heads/master
2023-03-27T07:21:43.159296
2021-03-28T01:10:58
2021-03-28T01:10:58
341,076,589
1
0
null
null
null
null
UTF-8
C++
false
false
2,432
cpp
#include "Image.h" void Image::SetToList() { //std::copy(_imagesFileSet.begin(), _imagesFileSet.end(), std::back_inserter(_imagesFileList)); } void Image::SetBackgroundImage(const fs::path& path) { _imageBackground = gl::Texture::create(loadImage(path)); } void Image::SaveImage(fs::path& path) { if (!_imagesSavePath.empty()) { Surface s8(_imageBackground->createSource()); writeImage(writeFile(_imagesSavePath.string() + path.string()), s8); } } void Image::DrawBackgroundImage(Area& window, Texture2dRef imageBackground) { if (imageBackground) { gl::clear(); Rectf dest = Rectf(imageBackground->getBounds()).getCenteredFill(window, true); gl::draw(imageBackground, dest); } } void Image::InitSheaders() { _shaderSolid = gl::getStockShader( gl::ShaderDef().color() ); _shaderBatch = gl::Batch::create( geom::Rect() .rect(Rectf(-15, -10, 15, 10)), _shaderSolid); } void Image::DrawShadedImages() { std::vector<Area> _areaCoord; CalculateAreaCoordinates(&_areaCoord, _textureList.size(), vec2(0, 0), vec2(1200, 700)); for (int i = 0; i < _textureList.size(); i++) { if (_textureList.size() == 0) break; Rectf drawRect(_areaCoord[i]); gl::draw(_textureList[i], drawRect); } } void Image::CreateBackgroundShadedImage(const std::vector<fs::path>& files) { _frameBuffer->bindFramebuffer(); for(auto& file : files) { ImageSourceRef image = loadImage(_imagesSavePath.string() + file.filename().string()); _textureList.push_back(Texture2d::create(image)); } sx2 = 1200, sy2 = 700; _frameBuffer->unbindFramebuffer(); } void Image::CalculateHelper(std::vector<Area>* tmp, int size, vec2 ul, vec2 dr) { int dx = dr.x / size; int x1, x2; int y1 = ul.y, y2 = dr.y; for (int i = 0; i < size; i++) { x1 = i * dx; x2 = (i + 1) * dx; tmp->push_back(Area(x1, y1, x2, y2)); } } void Image::CalculateAreaCoordinates(std::vector<Area>* tmp, int size, vec2 ul, vec2 dr) { if (size == 0) return; tmp->clear(); if (size == 1) { Area a(sx1, sy1, sx2, sy2); tmp->push_back(a); return; } else if (size == 2) { tmp->push_back(Area(sx1, sy1, sx2/2, sy2)); tmp->push_back(Area(sx1 + sx2/2, sy1, sx2, sy2)); return; } else if (size % 2 == 1) { CalculateHelper(tmp, size, ul, dr); return; } else if (size % 2 == 0) { CalculateHelper(tmp, size/2, ul, vec2(dr.x, dr.y / 2)); CalculateHelper(tmp, size/2, vec2(ul.x, dr.y / 2), dr); } }
[ "darkovasiljevic84@gmail.com" ]
darkovasiljevic84@gmail.com
d4893fd0912fea639d22431883e2140fddef738a
2af86e4840922beaf2c5db4758d3d0432c050318
/func_moudle/timestamp_ms.h
75af63afe32f529d4b668005dd9097e29c35e1a0
[]
no_license
wangjingtao93/c-Project
9c6d295605dbc58a2704eb61a675814c690e7694
bd0afea58139983f1dcb6929e73b6c2229832ecd
refs/heads/master
2022-12-27T01:30:38.252636
2020-10-13T02:51:23
2020-10-13T02:51:23
303,563,442
0
0
null
null
null
null
UTF-8
C++
false
false
519
h
#ifndef _TIMESTAMP_MS_H_ #define _TIMESTAMP_MS_H_ #include <stdint.h> #include <chrono> namespace utils { //返回当前时间,秒 inline uint64_t now_timestamp_ms() { return std::chrono::duration_cast<std::chrono::milliseconds> (std::chrono::system_clock::now().time_since_epoch()).count(); } //返回当前时间,毫秒 inline uint64_t now_timestamp_us() { return std::chrono::duration_cast<std::chrono::microseconds> (std::chrono::system_clock::now().time_since_epoch()).count(); } } #endif
[ "wangjingtao93@163.com" ]
wangjingtao93@163.com
0160770b56e7228c6e7c960d521369af93950abf
3e7d9572a446daa431f927a76e250f64853201fe
/src/ast_transformations.cpp
a298947244e71ee905d856d333a68cd57d7c538f
[]
no_license
patroclos/pony_intellisense_cli
8401fcb7ee9965ad0276e9df688ad9fa26f27d2f
afcb0b5179867da4a3b93f9ffc61de23d5425a6c
refs/heads/master
2020-03-07T13:42:30.533238
2018-03-31T07:17:26
2018-03-31T07:17:26
127,508,009
1
0
null
null
null
null
UTF-8
C++
false
false
2,075
cpp
#include "ast_transformations.hpp" #include <algorithm> #include <cstring> using namespace std; pass_opt_data_guard::pass_opt_data_guard(pass_opt_t *opt, void *newData) { this->options = opt; this->old_data = opt->data; opt->data = newData; } pass_opt_data_guard::~pass_opt_data_guard() { options->data = old_data; } struct seq_data { const char *file = nullptr; vector<ast_t *> nodes; }; static ast_result_t visit_seq_post(ast_t **pAst, pass_opt_t *opt) { pony_assert(pAst != nullptr); pony_assert(*pAst != nullptr); //if (ast_id(*pAst) >= TK_PROGRAM || ast_line(*pAst) != 6) auto data = static_cast<seq_data *>(opt->data); if (ast_source(*pAst) != nullptr && ast_source(*pAst)->file == data->file) data->nodes.push_back(*pAst); return AST_OK; } vector<ast_t *> tree_to_sourceloc_ordered_sequence(ast_t *tree, pass_opt_t *opt, const char *file) { seq_data data; data.file = stringtab(file); pass_opt_data_guard data_guard(opt, &data); ast_visit(&tree, nullptr, visit_seq_post, opt, PASS_ALL); sort(data.nodes.begin(), data.nodes.end(), [](ast_t *a, ast_t *b) { if (ast_line(a) < ast_line(b)) return true; if (ast_id(a) >= TK_PROGRAM) return false; return ast_pos(a) < ast_pos(b); }); return data.nodes; } ast_t *find_identifier_at(ast_t *tree, pass_opt_t *opt, caret_t const &position, string const &sourcefile) { auto sequence = tree_to_sourceloc_ordered_sequence(tree, opt, stringtab(sourcefile.c_str())); for (auto &node : sequence) { if (ast_id(node) != TK_ID) continue; source_t *source = ast_source(node); if (source == nullptr || source->file == nullptr || strcmp(source->file, sourcefile.c_str()) != 0) continue; caret_t node_loc(ast_line(node), ast_pos(node)); if (position.in_range(node_loc, ast_name_len(node))) { return node; } } return nullptr; } ast_t *ast_first_child_of_type(ast_t *parent, token_id id) { for (ast_t *ast = ast_child(parent); ast != nullptr; ast = ast_sibling(ast)) if (ast_id(ast) == id) return ast; return nullptr; }
[ "jenschjoshua@gmail.com" ]
jenschjoshua@gmail.com
070f91f29961de2f4a4e21878b01315ef68f4d0c
81c66c9c0b78f8e9c698dcbb8507ec2922efc8b7
/src/domains/cg/hierScheduler/HierScheduler.cc
d86e5d9e19ad83085971e452528e14845dd25f19
[ "MIT-Modern-Variant" ]
permissive
Argonnite/ptolemy
3394f95d3f58e0170995f926bd69052e6e8909f2
581de3a48a9b4229ee8c1948afbf66640568e1e6
refs/heads/master
2021-01-13T00:53:43.646959
2015-10-21T20:49:36
2015-10-21T20:49:36
44,703,423
0
0
null
null
null
null
UTF-8
C++
false
false
9,997
cc
static const char file_id[] = "HierScheduler.cc"; /***************************************************************** Version identification: @(#)HierScheduler.cc 1.19 8/8/96 Copyright (c) 1990-1996 The Regents of the University of California. All rights reserved. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following two paragraphs appear in all copies of this software. IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. PT_COPYRIGHT_VERSION_2 COPYRIGHTENDKEY Programmer: Jose Luis Pino *****************************************************************/ #ifdef __GNUG__ #pragma implementation #endif #include "HierScheduler.h" #include "GalIter.h" #include "GraphUtils.h" #include "HierCluster.h" #include <iostream.h> // These are needed for Cluster->Worm conversion #include "ShadowTarget.h" #include "Domain.h" #include "EventHorizon.h" #include "CGWormBase.h" /*virtual*/double HierScheduler::getStopTime() { return topScheduler.getStopTime(); } /*virtual*/ void HierScheduler::setStopTime(double limit) { topScheduler.setStopTime(limit); } /*virtual*/ StringList HierScheduler::displaySchedule(){ StringList schedule; schedule << "{\n { scheduler \"Pino's Hierarchical Scheduler\" }\n" << " { numberOfStars " << sdfStars << " }\n" << " { numberOfStarOrClusterFirings " << dagNodes() << " }\n" << " { galaxy " << galaxy()->fullName() << " }\n" << " { cluster\n" << topScheduler.displaySchedule() << " }\n"; GalStarIter nextStar(wormholes); DataFlowStar* star; while ((star = (DataFlowStar*) nextStar++) != NULL) schedule << " { cluster " << star->fullName() << " {\n" << star->scheduler()->displaySchedule() << " } }\n"; schedule << "}\n"; return schedule; } int HierScheduler::run() { return topScheduler.run(); } ParProcessors* HierScheduler::setUpProcs(int num) { parProcs = topScheduler.setUpProcs(num); parProcs->moveStars = TRUE; return parProcs; } int HierScheduler::dagNodes() const { return topScheduler.dagNodes(); } #define VISITED flags[0] #define NUMBER flags[1] #define PREDECESSORS flags[2] #define SUCCESSORS flags[3] inline int amIChainSource(Block& b) { if (b.SUCCESSORS != 1) return FALSE; if (b.PREDECESSORS != 1) return TRUE; PredecessorIter predecessors(b); Block* predecessor = predecessors.next(); if (predecessor && predecessor->SUCCESSORS > 1) return TRUE; return FALSE; } // The complexity is shown within the O() function. // Let: // V = number of top blocks in the galaxy // E = number of arcs in the galaxy void clusterChains(Galaxy& g) { // initialize flags for finding chain clusters - O(V) ClusterIter nextCluster(g); Cluster *cluster; int clusterNum = 0; while ((cluster = nextCluster++) != NULL) { // It is more efficient to initialize the flag with // the largest index first cluster->SUCCESSORS = 0; cluster->PREDECESSORS = 0; cluster->NUMBER = clusterNum++; cluster->VISITED = cluster->NUMBER; } // compute total number of predecessors and successors - O(E) nextCluster.reset(); while ((cluster = nextCluster++) != NULL) { SuccessorIter nextSuccessor(*cluster); Block* successor; while ((successor = nextSuccessor++) != NULL) { if (successor->VISITED == cluster->NUMBER) continue; successor->VISITED = cluster->NUMBER; successor->PREDECESSORS++; cluster->SUCCESSORS++; } } nextCluster.reset(); while ((cluster = nextCluster++) != NULL) { if (!amIChainSource(*cluster)) continue; SuccessorIter successors(*cluster); Block* successor = successors.next(); while (successor && successor->PREDECESSORS == 1) { cluster->merge((Cluster&)*successor,FALSE); if (successor->SUCCESSORS != 1) break; SuccessorIter successors(*cluster); successor = successors.next(); } } cleanupAfterCluster(g); } // This function is currently only at the file scope level - if others // depend on it, we may want to promote it to be a cluster method. // It is used to resolve the procId of a cluster - if there is an // inconsistancy, Error::abortRun will be called. inline int resolveProcId(Cluster& cluster) { GalStarIter nextStar(cluster); CGStar* star; int procId = -1; while ((star = (CGStar*) nextStar++) != NULL) { int starProcId = star->getProcId(); if (starProcId != -1) { if (procId == -1) procId = starProcId; else if (procId != starProcId) { StringList msg; msg << "The procId of the star, " << star->fullName() << ", is " << starProcId << ". This is " " inconsistant with the resolved procId of the " " cluster, " << cluster.fullName() << ", which is " << procId; Error::abortRun(msg); return procId; } } } return procId; } void HierScheduler :: setup () { invalid = FALSE; if (!galaxy()) { Error::abortRun("HierScheduler: no galaxy!"); return; } if (!checkConnectivity()) return; // We count the number of stars in the unclustered system to // return the number of stars in the original sdf graph. sdfStars = totalNumberOfStars(*galaxy()); galaxy()->initialize(); if (SimControl::haltRequested()) return; if (!repetitions()) return; HierCluster temp; temp.initializeForClustering(*galaxy()); // clusterChains(*galaxy()); // Now we output the clustered graph (with and w/o hierarchy // exposed). We need to do this before we do the cluster->worm // conversion StringList dot; dot = printClusterDot(*galaxy()); mtarget->writeFile(dot,".cdot"); dot = printDot(*galaxy()); mtarget->writeFile(dot,".dot"); // We may want to promote this code into a Cluster method if // others going to need to convert their clusters into wormholes. // If so, we'll have to convert the ClusterIter into a // GalAllBlockIter - this code only converts the top-cluster blocks. ClusterIter clusters(*galaxy()); Cluster* cluster; while ((cluster = clusters++) != NULL) { if (cluster->clusterScheduler()) { // First, resolve the procId int procId = resolveProcId(*cluster); // Make sure there wasn't a inconsistancy in resolving the procId if (SimControl::haltRequested()) return; // Replace the cluster with a new wormhole clusters.remove(); ShadowTarget* shadow = new ShadowTarget; Star& newWorm = Domain::named(cluster->domain())->newWorm(*cluster,shadow); // Configure the new wormhole newWorm.setTarget(mtarget); if (SimControl::haltRequested()) return; galaxy()->addBlock(newWorm,cluster->name()); // We could introduce a virtual function here so that // other types of clusters can configure the new worm // star ((CGWormBase*)((CGStar&)newWorm).asWormhole())->execTime = ((HierCluster*)cluster)->execTime; // If the resolved procId has been resolved to something // other than automatic mapping (-1, the default) then we // set the procId of the wormhole if (procId != -1) ((CGStar&)newWorm).setProcId(procId); // Configure the worm ports ClusterPortIter nextPort(*cluster); ClusterPort* clusterPort; while ((clusterPort = nextPort++) != NULL) { DFPortHole& insidePort = (DFPortHole&)clusterPort->realPort(); DFPortHole* outsidePort = (DFPortHole*)insidePort.far()->asEH()->ghostAsPort(); // We could introduce a virtual function here so that // other types of clusters can configure the new worm // ports // Compute the SDF parameters int numXfer = insidePort.numXfer(); int maxBackValue = insidePort.maxDelay(); int reps = ((HierCluster*)clusterPort->alias()->parent())-> repetitions; outsidePort->setSDFParams (numXfer*reps, numXfer*(reps-1)-maxBackValue); } // Set the scheduler/compute the schedule shadow->setGalaxy(*cluster); shadow->setScheduler(cluster->clusterScheduler()); shadow->initialize(); } } // Compute top-level schedule topScheduler.setGalaxy(*galaxy()); topScheduler.setup(); // Now explode the wormholes in the subgalaxies // This code doesn't handle nested CGWormholes - FIXME // This code doesn't handle parallel CGWormholes - FIXME int i; for (i=0; i < parProcs->size() ; i++) { Galaxy* subGalaxy = parProcs->getProc(i)->myGalaxy(); GalStarIter stars(*subGalaxy); Star* star; while ((star = stars++) != NULL) { Wormhole* worm = ((CGStar*)star)->asWormhole(); if (worm) { stars.remove(); // Sets all the internal stars and the scheduler to // the correct target worm->insideGalaxy().setTarget(star->target()); subGalaxy->addBlock(*worm->explode(),star->name()); wormholes.addBlock(*star,star->name()); } } } // Set all looping levels for child targets > 0. Targets might // have to do different style buffering (ie. CGC) int childNum = 0; CGTarget* child; while ((child = mtarget->cgChild(childNum++))) child->loopingLevel = "3"; } void HierScheduler :: compileRun() { topScheduler.compileRun(); } HierScheduler::~HierScheduler() { delete &topScheduler; }
[ "dermalin3k@hotmail.com" ]
dermalin3k@hotmail.com
9a3c5ace8f57ef8ff8d471ce906d848c54eaa8d7
afcb4b0587eabf8993a11f26174b044ee5b65fde
/build-snoke-Desktop_Qt_5_5_0_MinGW_32bit-Debug/ui_gameform.h
069d7fe1a3653789dc57fbee413a8c2fa2f15745
[]
no_license
xiaohanglei/Snake
445a51fc5c06dcc16a202c39b3c3cde4f9f20bc9
c4185d9fbb1953f658ef435b8b9752f03f52fc6d
refs/heads/master
2021-05-15T02:46:15.529302
2017-10-19T08:44:33
2017-10-19T08:44:33
106,362,323
0
0
null
null
null
null
UTF-8
C++
false
false
7,724
h
/******************************************************************************** ** Form generated from reading UI file 'gameform.ui' ** ** Created by: Qt User Interface Compiler version 5.5.0 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ #ifndef UI_GAMEFORM_H #define UI_GAMEFORM_H #include <QtCore/QVariant> #include <QtWidgets/QAction> #include <QtWidgets/QApplication> #include <QtWidgets/QButtonGroup> #include <QtWidgets/QFrame> #include <QtWidgets/QGridLayout> #include <QtWidgets/QHeaderView> #include <QtWidgets/QLabel> #include <QtWidgets/QPushButton> #include <QtWidgets/QSpacerItem> #include <QtWidgets/QWidget> QT_BEGIN_NAMESPACE class Ui_GameForm { public: QFrame *line; QLabel *label; QLabel *label_2; QLabel *score; QLabel *level; QFrame *line_2; QWidget *layoutWidget; QGridLayout *gridLayout; QSpacerItem *horizontalSpacer; QSpacerItem *horizontalSpacer_2; QPushButton *btnleft; QPushButton *btnbut; QSpacerItem *horizontalSpacer_4; QPushButton *btnright; QSpacerItem *horizontalSpacer_3; QPushButton *btntop; QSpacerItem *horizontalSpacer_5; QPushButton *btnstop; QPushButton *btnsta; QPushButton *btnret; void setupUi(QWidget *GameForm) { if (GameForm->objectName().isEmpty()) GameForm->setObjectName(QStringLiteral("GameForm")); GameForm->resize(470, 300); GameForm->setStyleSheet(QStringLiteral("")); line = new QFrame(GameForm); line->setObjectName(QStringLiteral("line")); line->setGeometry(QRect(300, 0, 20, 291)); line->setFrameShape(QFrame::VLine); line->setFrameShadow(QFrame::Sunken); label = new QLabel(GameForm); label->setObjectName(QStringLiteral("label")); label->setGeometry(QRect(330, 40, 71, 21)); QFont font; font.setFamily(QStringLiteral("Andalus")); font.setPointSize(12); font.setBold(true); font.setWeight(75); label->setFont(font); label_2 = new QLabel(GameForm); label_2->setObjectName(QStringLiteral("label_2")); label_2->setGeometry(QRect(330, 70, 71, 31)); label_2->setFont(font); score = new QLabel(GameForm); score->setObjectName(QStringLiteral("score")); score->setGeometry(QRect(400, 35, 61, 31)); QFont font1; font1.setFamily(QStringLiteral("Aharoni")); font1.setPointSize(24); font1.setBold(true); font1.setWeight(75); score->setFont(font1); score->setFrameShape(QFrame::Box); score->setAlignment(Qt::AlignCenter); level = new QLabel(GameForm); level->setObjectName(QStringLiteral("level")); level->setGeometry(QRect(400, 70, 61, 31)); level->setFont(font1); level->setFrameShape(QFrame::Box); level->setAlignment(Qt::AlignCenter); line_2 = new QFrame(GameForm); line_2->setObjectName(QStringLiteral("line_2")); line_2->setGeometry(QRect(0, 280, 311, 16)); line_2->setFrameShape(QFrame::HLine); line_2->setFrameShadow(QFrame::Sunken); layoutWidget = new QWidget(GameForm); layoutWidget->setObjectName(QStringLiteral("layoutWidget")); layoutWidget->setGeometry(QRect(310, 110, 161, 140)); gridLayout = new QGridLayout(layoutWidget); gridLayout->setObjectName(QStringLiteral("gridLayout")); gridLayout->setContentsMargins(0, 0, 0, 0); horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer, 0, 0, 1, 1); horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_2, 0, 2, 1, 1); btnleft = new QPushButton(layoutWidget); btnleft->setObjectName(QStringLiteral("btnleft")); QIcon icon; icon.addFile(QStringLiteral(":/new/prefix1/lef.png"), QSize(), QIcon::Normal, QIcon::Off); btnleft->setIcon(icon); btnleft->setIconSize(QSize(24, 24)); gridLayout->addWidget(btnleft, 1, 0, 1, 1); btnbut = new QPushButton(layoutWidget); btnbut->setObjectName(QStringLiteral("btnbut")); QIcon icon1; icon1.addFile(QStringLiteral(":/new/prefix1/but.png"), QSize(), QIcon::Normal, QIcon::Off); btnbut->setIcon(icon1); btnbut->setIconSize(QSize(24, 24)); gridLayout->addWidget(btnbut, 2, 1, 1, 1); horizontalSpacer_4 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_4, 2, 2, 1, 1); btnright = new QPushButton(layoutWidget); btnright->setObjectName(QStringLiteral("btnright")); QIcon icon2; icon2.addFile(QStringLiteral(":/new/prefix1/rig.png"), QSize(), QIcon::Normal, QIcon::Off); btnright->setIcon(icon2); btnright->setIconSize(QSize(24, 24)); gridLayout->addWidget(btnright, 1, 2, 1, 1); horizontalSpacer_3 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_3, 2, 0, 1, 1); btntop = new QPushButton(layoutWidget); btntop->setObjectName(QStringLiteral("btntop")); QIcon icon3; icon3.addFile(QStringLiteral(":/new/prefix1/top.png"), QSize(), QIcon::Normal, QIcon::Off); btntop->setIcon(icon3); btntop->setIconSize(QSize(24, 24)); gridLayout->addWidget(btntop, 0, 1, 1, 1); horizontalSpacer_5 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); gridLayout->addItem(horizontalSpacer_5, 1, 1, 1, 1); btnstop = new QPushButton(GameForm); btnstop->setObjectName(QStringLiteral("btnstop")); btnstop->setGeometry(QRect(320, 260, 61, 31)); QFont font2; font2.setFamily(QString::fromUtf8("\346\245\267\344\275\223")); font2.setPointSize(12); font2.setBold(false); font2.setWeight(50); btnstop->setFont(font2); btnsta = new QPushButton(GameForm); btnsta->setObjectName(QStringLiteral("btnsta")); btnsta->setGeometry(QRect(320, 260, 61, 31)); btnsta->setFont(font2); btnret = new QPushButton(GameForm); btnret->setObjectName(QStringLiteral("btnret")); btnret->setGeometry(QRect(400, 260, 61, 31)); btnret->setFont(font2); retranslateUi(GameForm); QMetaObject::connectSlotsByName(GameForm); } // setupUi void retranslateUi(QWidget *GameForm) { GameForm->setWindowTitle(QApplication::translate("GameForm", "\346\270\270\346\210\217\344\270\255", 0)); label->setText(QApplication::translate("GameForm", "\345\210\206 \346\225\260\357\274\232", 0)); label_2->setText(QApplication::translate("GameForm", "\347\255\211 \347\272\247\357\274\232", 0)); score->setText(QString()); level->setText(QString()); btnleft->setText(QString()); btnbut->setText(QString()); btnright->setText(QString()); btntop->setText(QString()); btnstop->setText(QApplication::translate("GameForm", "\346\232\202\345\201\234", 0)); btnsta->setText(QApplication::translate("GameForm", "\345\274\200\345\247\213", 0)); btnret->setText(QApplication::translate("GameForm", "\350\277\224\345\233\236", 0)); } // retranslateUi }; namespace Ui { class GameForm: public Ui_GameForm {}; } // namespace Ui QT_END_NAMESPACE #endif // UI_GAMEFORM_H
[ "xiaohangl@sina.cn" ]
xiaohangl@sina.cn
e246ff36eaf4314a2eaa6bc2d0ae1932b1cae338
9b1082956b2e60fd2e5b7b6e514d5c504b51bc7c
/Siv3D/Include/Siv3D/RandomColor.hpp
e1b490030ff1bb9bf80acd1f5aeacc09b8f5dd95
[ "MIT" ]
permissive
winjii/OpenSiv3D
c46dd17391408dde4b76189def4c9c92405ac4ea
ecd65536a1142a8f04c45c2d6a33fe93c386af78
refs/heads/master
2021-05-07T15:27:32.299985
2017-12-03T05:38:10
2017-12-28T08:23:52
110,008,252
0
0
null
2017-11-08T17:30:37
2017-11-08T17:30:36
null
UTF-8
C++
false
false
1,643
hpp
//----------------------------------------------- // // This file is part of the Siv3D Engine. // // Copyright (c) 2008-2017 Ryo Suzuki // Copyright (c) 2016-2017 OpenSiv3D Project // // Licensed under the MIT License. // //----------------------------------------------- # pragma once # include "Random.hpp" # include "Color.hpp" # include "HSV.hpp" # include "NamedParameter.hpp" namespace s3d { inline Color RandomColor() { return HueToColor(Random(360.0)); } inline Color RandomColor( const std::pair<uint32, uint32>& rMinMax, const std::pair<uint32, uint32>& gMinMax, const std::pair<uint32, uint32>& bMinMax ) { Color c; c.r = Random(rMinMax.first, rMinMax.second); c.g = Random(gMinMax.first, gMinMax.second); c.b = Random(bMinMax.first, bMinMax.second); c.a = 255; return c; } inline Color RandomColorF() { return HueToColor(Random(360.0)); } inline Color RandomColorF( const std::pair<double, double>& rMinMax, const std::pair<double, double>& gMinMax, const std::pair<double, double>& bMinMax ) { ColorF c; c.r = Random(rMinMax.first, rMinMax.second); c.g = Random(gMinMax.first, gMinMax.second); c.b = Random(bMinMax.first, bMinMax.second); c.a = 255; return c; } inline HSV RandomHSV() { return{ Random(360.0), 1.0, 1.0 }; } inline HSV RandomHSV( const std::pair<double, double>& hMinMax, const std::pair<double, double>& sMinMax, const std::pair<double, double>& vMinMax ) { HSV hsv; hsv.h = Random(hMinMax.first, hMinMax.second); hsv.s = Random(sMinMax.first, sMinMax.second); hsv.v = Random(vMinMax.first, vMinMax.second); return hsv; } }
[ "reputeless@gmail.com" ]
reputeless@gmail.com
4c87f6b65c0a609f46aafd3e5ca7f0f7413c5ddd
2b2e8d5b0c31822b465f007bb518608788947952
/src/rootme/RootMeStats.h
8b806e0c301259b8e7e21158e6ec1de7aa1f5ad1
[]
no_license
SeimuPVE/RankingScript
2493ac957c832cd65332f853db55742f873ed565
d366bc45405a5082687e908400de1d86c4596ae3
refs/heads/master
2020-03-28T18:49:05.779563
2018-11-10T22:42:14
2018-11-10T22:42:14
148,915,184
0
0
null
null
null
null
UTF-8
C++
false
false
177
h
// // Created by seimu on 07/09/18. // #ifndef RANKINGSCRIPT_ROOTMESTATS_H #define RANKINGSCRIPT_ROOTMESTATS_H class RootMeStats { }; #endif //RANKINGSCRIPT_ROOTMESTATS_H
[ "paul.vanelsue@gmail.com" ]
paul.vanelsue@gmail.com
5ca8d01d893f5069aac474e4c479943956c931cb
538e125858dd641ab1b6de47b66b7425e7d2fa2d
/DuiLib/Control/UIColorPalette.cpp
f19fd9a1c7daef39b1c6d8ed0dee2e3a04dde980
[]
no_license
warren-lei/duilib
799a9cd3815ef1aae84b2c262fd13a4c27798b71
5e7c0cf770a57c74c4c2f20657fa22eb5adfe277
refs/heads/master
2021-08-29T01:54:00.213877
2017-12-13T09:49:10
2017-12-13T09:49:10
114,102,679
1
0
null
null
null
null
GB18030
C++
false
false
11,589
cpp
#include "StdAfx.h" #include <math.h> namespace DuiLib { #define HSLMAX 255 /* H,L, and S vary over 0-HSLMAX */ #define RGBMAX 255 /* R,G, and B vary over 0-RGBMAX */ #define HSLUNDEFINED (HSLMAX*2/3) /* * Convert hue value to RGB */ static float HueToRGB(float v1, float v2, float vH) { if (vH < 0.0f) vH += 1.0f; if (vH > 1.0f) vH -= 1.0f; if ((6.0f * vH) < 1.0f) return (v1 + (v2 - v1) * 6.0f * vH); if ((2.0f * vH) < 1.0f) return (v2); if ((3.0f * vH) < 2.0f) return (v1 + (v2 - v1) * ((2.0f / 3.0f) - vH) * 6.0f); return (v1); } /* * Convert color RGB to HSL * pHue HSL hue value [0 - 1] * pSat HSL saturation value [0 - 1] * pLue HSL luminance value [0 - 1] */ static void RGBToHSL(DWORD clr, float *pHue, float *pSat, float *pLue) { float R = (float)(GetRValue(clr) / 255.0f); //RGB from 0 to 255 float G = (float)(GetGValue(clr) / 255.0f); float B = (float)(GetBValue(clr) / 255.0f); float H, S, L; float fMin = min(R, min(G, B)); //Min. value of RGB float fMax = max(R, max(G, B)); //Max. value of RGB float fDelta = fMax - fMin; //Delta RGB value L = (fMax + fMin) / 2.0f; if (fDelta == 0) //This is a gray, no chroma... { H = 0.0f; //HSL results from 0 to 1 S = 0.0f; } else //Chromatic data... { float del_R, del_G, del_B; if (L < 0.5) S = fDelta / (fMax + fMin); else S = fDelta / (2.0f - fMax - fMin); del_R = (((fMax - R) / 6.0f) + (fDelta / 2.0f)) / fDelta; del_G = (((fMax - G) / 6.0f) + (fDelta / 2.0f)) / fDelta; del_B = (((fMax - B) / 6.0f) + (fDelta / 2.0f)) / fDelta; if (R == fMax) H = del_B - del_G; else if (G == fMax) H = (1.0f / 3.0f) + del_R - del_B; else if (B == fMax) H = (2.0f / 3.0f) + del_G - del_R; if (H < 0.0f) H += 1.0f; if (H > 1.0f) H -= 1.0f; } *pHue = H; *pSat = S; *pLue = L; } /* * Convert color HSL to RGB * H HSL hue value [0 - 1] * S HSL saturation value [0 - 1] * L HSL luminance value [0 - 1] */ static DWORD HSLToRGB(float H, float S, float L) { BYTE R, G, B; float var_1, var_2; if (S == 0) //HSL from 0 to 1 { R = G = B = (BYTE)(L * 255.0f); //RGB results from 0 to 255 } else { if (L < 0.5) var_2 = L * (1.0f + S); else var_2 = (L + S) - (S * L); var_1 = 2.0f * L - var_2; R = (BYTE)(255.0f * HueToRGB(var_1, var_2, H + (1.0f / 3.0f))); G = (BYTE)(255.0f * HueToRGB(var_1, var_2, H)); B = (BYTE)(255.0f * HueToRGB(var_1, var_2, H - (1.0f / 3.0f))); } return RGB(R, G, B); } /* * _HSLToRGB color HSL value to RGB * clr RGB color value * nHue HSL hue value [0 - 360] * nSat HSL saturation value [0 - 200] * nLue HSL luminance value [0 - 200] */ #define _HSLToRGB(h,s,l) (0xFF << 24 | HSLToRGB((float)h / 360.0f,(float)s / 200.0f,l / 200.0f)) /////////////////////////////////////////////////////////////////////// // // IMPLEMENT_DUICONTROL(CColorPaletteUI) CColorPaletteUI::CColorPaletteUI() : m_uButtonState(0) , m_bIsInBar(false) , m_bIsInPallet(false) , m_nCurH(180) , m_nCurS(200) , m_nCurB(100) , m_nPalletHeight(200) , m_nBarHeight(10) , m_pBits(NULL) { memset(&m_bmInfo, 0, sizeof(m_bmInfo)); m_hMemBitmap=NULL; } CColorPaletteUI::~CColorPaletteUI() { if (m_pBits) free(m_pBits); if (m_hMemBitmap) { ::DeleteObject(m_hMemBitmap); } } DWORD CColorPaletteUI::GetSelectColor() { DWORD dwColor = _HSLToRGB(m_nCurH, m_nCurS, m_nCurB); return 0xFF << 24 | GetRValue(dwColor) << 16 | GetGValue(dwColor) << 8 | GetBValue(dwColor); } void CColorPaletteUI::SetSelectColor(DWORD dwColor) { float H = 0, S = 0, B = 0; COLORREF dwBkClr = RGB(GetBValue(dwColor),GetGValue(dwColor),GetRValue(dwColor)); RGBToHSL(dwBkClr, &H, &S, &B); m_nCurH = (int)(H*360); m_nCurS = (int)(S*200); m_nCurB = (int)(B*200); UpdatePalletData(); NeedUpdate(); } LPCTSTR CColorPaletteUI::GetClass() const { return _T("ColorPaletteUI"); } LPVOID CColorPaletteUI::GetInterface(LPCTSTR pstrName) { if (_tcscmp(pstrName, DUI_CTR_COLORPALETTE) == 0) return static_cast<CColorPaletteUI*>(this); return CControlUI::GetInterface(pstrName); } void CColorPaletteUI::SetPalletHeight(int nHeight) { m_nPalletHeight = nHeight; } int CColorPaletteUI::GetPalletHeight() const { return m_nPalletHeight; } void CColorPaletteUI::SetBarHeight(int nHeight) { if (nHeight>150) { nHeight = 150; //限制最大高度,由于当前设计,nheight超出190,程序会因越界访问崩溃 } m_nBarHeight = nHeight; } int CColorPaletteUI::GetBarHeight() const { return m_nBarHeight; } void CColorPaletteUI::SetThumbImage(LPCTSTR pszImage) { if (m_strThumbImage != pszImage) { m_strThumbImage = pszImage; NeedUpdate(); } } LPCTSTR CColorPaletteUI::GetThumbImage() const { return m_strThumbImage.GetData(); } void CColorPaletteUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue) { if (_tcscmp(pstrName, _T("palletheight")) == 0) SetPalletHeight(_ttoi(pstrValue)); else if (_tcscmp(pstrName, _T("barheight")) == 0) SetBarHeight(_ttoi(pstrValue)); else if (_tcscmp(pstrName, _T("thumbimage")) == 0) SetThumbImage(pstrValue); else CControlUI::SetAttribute(pstrName, pstrValue); } void CColorPaletteUI::DoInit() { m_MemDc = CreateCompatibleDC(GetManager()->GetPaintDC()); m_hMemBitmap = CreateCompatibleBitmap(GetManager()->GetPaintDC(), 400, 360); HBITMAP pOldBit = (HBITMAP)SelectObject(m_MemDc, m_hMemBitmap); ::GetObject(m_hMemBitmap, sizeof(m_bmInfo), &m_bmInfo); DWORD dwSize = m_bmInfo.bmHeight * m_bmInfo.bmWidthBytes; m_pBits = (BYTE *)malloc(dwSize); ::GetBitmapBits(m_hMemBitmap, dwSize, m_pBits); } void CColorPaletteUI::SetPos(RECT rc, bool bNeedInvalidate) { CControlUI::SetPos(rc, bNeedInvalidate); m_ptLastPalletMouse.x = m_nCurH * (m_rcItem.right - m_rcItem.left) / 360 + m_rcItem.left; m_ptLastPalletMouse.y = (200 - m_nCurB) * m_nPalletHeight / 200 + m_rcItem.top; UpdatePalletData(); UpdateBarData(); } void CColorPaletteUI::DoEvent(TEventUI& event) { CControlUI::DoEvent(event); if (event.Type == UIEVENT_BUTTONDOWN) { if (event.ptMouse.x >= m_rcItem.left && event.ptMouse.y >= m_rcItem.top && event.ptMouse.x < m_rcItem.right && event.ptMouse.y < m_rcItem.top + m_nPalletHeight) { int x = (event.ptMouse.x - m_rcItem.left) * 360 / (m_rcItem.right - m_rcItem.left); int y = (event.ptMouse.y - m_rcItem.top) * 200 / m_nPalletHeight; x = min(max(x, 0), 360); y = min(max(y, 0), 200); m_ptLastPalletMouse = event.ptMouse; if (m_ptLastPalletMouse.x < m_rcItem.left) m_ptLastPalletMouse.x = m_rcItem.left; if (m_ptLastPalletMouse.x > m_rcItem.right) m_ptLastPalletMouse.x = m_rcItem.right; if (m_ptLastPalletMouse.y < m_rcItem.top) m_ptLastPalletMouse.y = m_rcItem.top; if (m_ptLastPalletMouse.y > m_rcItem.top + m_nPalletHeight) m_ptLastPalletMouse.y = m_rcItem.top + m_nPalletHeight; m_nCurH = x; m_nCurB = 200 - y; m_uButtonState |= UISTATE_PUSHED; m_bIsInPallet = true; m_bIsInBar = false; UpdateBarData(); } if (event.ptMouse.x >= m_rcItem.left && event.ptMouse.y >= m_rcItem.bottom - m_nBarHeight && event.ptMouse.x < m_rcItem.right && event.ptMouse.y < m_rcItem.bottom) { m_nCurS = (event.ptMouse.x - m_rcItem.left) * 200 / (m_rcItem.right - m_rcItem.left); m_uButtonState |= UISTATE_PUSHED; m_bIsInBar = true; m_bIsInPallet = false; UpdatePalletData(); } Invalidate(); return; } if (event.Type == UIEVENT_BUTTONUP) { DWORD color=0; if ((m_uButtonState | UISTATE_PUSHED) && (IsEnabled())) { color = GetSelectColor(); m_pManager->SendNotify(this, DUI_MSGTYPE_COLORCHANGED, color, 0); } m_uButtonState &= ~UISTATE_PUSHED; m_bIsInPallet = false; m_bIsInBar = false; Invalidate(); return; } if (event.Type == UIEVENT_MOUSEMOVE) { if (!(m_uButtonState &UISTATE_PUSHED)) { m_bIsInBar = false; m_bIsInPallet = false; } if (m_bIsInPallet == true) { POINT pt = event.ptMouse; pt.x -= m_rcItem.left; pt.y -= m_rcItem.top; if (pt.x >= 0 && pt.y >= 0 && pt.x <= m_rcItem.right && pt.y <= m_rcItem.top + m_nPalletHeight) { int x = pt.x * 360 / (m_rcItem.right - m_rcItem.left); int y = pt.y * 200 / m_nPalletHeight; x = min(max(x, 0), 360); y = min(max(y, 0), 200); m_ptLastPalletMouse = event.ptMouse; if (m_ptLastPalletMouse.x < m_rcItem.left) m_ptLastPalletMouse.x = m_rcItem.left; if (m_ptLastPalletMouse.x > m_rcItem.right) m_ptLastPalletMouse.x = m_rcItem.right; if (m_ptLastPalletMouse.y < m_rcItem.top) m_ptLastPalletMouse.y = m_rcItem.top; if (m_ptLastPalletMouse.y >= m_rcItem.top + m_nPalletHeight) m_ptLastPalletMouse.y = m_rcItem.top + m_nPalletHeight; m_nCurH = x; m_nCurB = 200 - y; UpdateBarData(); } } else if (m_bIsInBar == true) { m_nCurS = (event.ptMouse.x - m_rcItem.left) * 200 / (m_rcItem.right - m_rcItem.left); m_nCurS = min(max(m_nCurS, 0), 200); UpdatePalletData(); } Invalidate(); return; } } void CColorPaletteUI::PaintBkColor(HDC hDC) { PaintPallet(hDC); } void CColorPaletteUI::PaintPallet(HDC hDC) { int nSaveDC = ::SaveDC(hDC); ::SetStretchBltMode(hDC, HALFTONE); //拉伸模式将内存图画到控件上 StretchBlt(hDC, m_rcItem.left, m_rcItem.top, m_rcItem.right - m_rcItem.left, m_nPalletHeight, m_MemDc, 0, 1, 360, 200, SRCCOPY); StretchBlt(hDC, m_rcItem.left, m_rcItem.bottom - m_nBarHeight, m_rcItem.right - m_rcItem.left, m_nBarHeight, m_MemDc, 0, 210, 200, m_nBarHeight, SRCCOPY); RECT rcCurSorPaint = { m_ptLastPalletMouse.x - 4, m_ptLastPalletMouse.y - 4, m_ptLastPalletMouse.x + 4, m_ptLastPalletMouse.y + 4 }; CRenderEngine::DrawImageString(hDC, m_pManager, rcCurSorPaint, m_rcPaint, m_strThumbImage); rcCurSorPaint.left = m_rcItem.left + m_nCurS * (m_rcItem.right - m_rcItem.left) / 200 - 4; rcCurSorPaint.right = m_rcItem.left + m_nCurS * (m_rcItem.right - m_rcItem.left) / 200 + 4; rcCurSorPaint.top = m_rcItem.bottom - m_nBarHeight / 2 - 4; rcCurSorPaint.bottom = m_rcItem.bottom - m_nBarHeight / 2 + 4; CRenderEngine::DrawImageString(hDC, m_pManager, rcCurSorPaint, m_rcPaint, m_strThumbImage); ::RestoreDC(hDC, nSaveDC); } void CColorPaletteUI::UpdatePalletData() { int x, y; BYTE *pPiexl; DWORD dwColor; for (y = 0; y < 200; ++y) { for (x = 0; x < 360; ++x) { pPiexl = LPBYTE(m_pBits) + ((200 - y)*m_bmInfo.bmWidthBytes) + ((x*m_bmInfo.bmBitsPixel) / 8); dwColor = _HSLToRGB(x, m_nCurS, y); if(dwColor == 0xFF000000) dwColor = 0xFF000001; pPiexl[0] = GetBValue(dwColor); pPiexl[1] = GetGValue(dwColor); pPiexl[2] = GetRValue(dwColor); } } SetBitmapBits(m_hMemBitmap, m_bmInfo.bmWidthBytes * m_bmInfo.bmHeight, m_pBits); } void CColorPaletteUI::UpdateBarData() { int x, y; BYTE *pPiexl; DWORD dwColor; //这里画出Bar for (y = 0; y < m_nBarHeight; ++y) { for (x = 0; x < 200; ++x) { pPiexl = LPBYTE(m_pBits) + ((210 + y)*m_bmInfo.bmWidthBytes) + ((x*m_bmInfo.bmBitsPixel) / 8); dwColor = _HSLToRGB(m_nCurH, x, m_nCurB); if(dwColor == 0xFF000000) dwColor = 0xFF000001; pPiexl[0] = GetBValue(dwColor); pPiexl[1] = GetGValue(dwColor); pPiexl[2] = GetRValue(dwColor); } } SetBitmapBits(m_hMemBitmap, m_bmInfo.bmWidthBytes * m_bmInfo.bmHeight, m_pBits); } }
[ "982141392@qq.com" ]
982141392@qq.com
877c3c0ebdb6b1de923d509d895741330ac4fbd5
7851dc2dc8e89713dd8c5fe086c51b7e501c2e02
/room.h
771dab2ed6020d77aba0a93cb8eaa7fdae7a7b1d
[]
no_license
gumz69/Tubes_STD_2018-1301153625-1301153681-
3d8abeca6f6a48171817f887c543cdac9872de5b
9633738fd3de30d77643ab83a52bf076393eb03a
refs/heads/master
2020-03-14T02:57:14.230406
2018-04-28T13:30:31
2018-04-28T13:30:31
131,409,979
0
0
null
null
null
null
UTF-8
C++
false
false
1,028
h
#ifndef ROOM_H_INCLUDED #define ROOM_H_INCLUDED #include <iostream> #include "roomData.h" #define first(L) L.first #define next(P) P->next #define info(P) P->info using namespace std; typedef struct elmlistRoom *addressRoom; struct elmlistRoom{ Room info; addressRoom next; }; struct ListRoom{ addressRoom first; }; void createListRoom(ListRoom &L); addressRoom allocateRoom(Room x); void deallocateRoom(addressRoom &P); // define insert and delete procedure void insertFirstRoom(ListRoom &L, addressRoom P); void insertLastRoom(ListRoom &L, addressRoom P); void insertAfterRoom(ListRoom &L, addressRoom Prec, addressRoom P); void deleteFirstRoom(ListRoom &L, addressRoom &P); void deleteLastRoom(ListRoom &L, addressRoom &P); void deleteAfterRoom(ListRoom &L, addressRoom Prec, addressRoom &P); void deleteByIDRoom(ListRoom &L, addressRoom &P); // define search-by-ID function and view procedure addressRoom findElmRoom(ListRoom L, Room x); void printInfoRoom(ListRoom L); #endif // ROOM_H_INCLUDED
[ "noreply@github.com" ]
gumz69.noreply@github.com
03746829af013b7e5223fef3141fa0ebecfad833
3e38eab812ec63e072b197a4b153eb8f11b15a56
/round table/solution/stdafx.h
8e8f10739eb9df752bd744bf47dd9633ce0bddbc
[]
no_license
ultimatum424/AISD
8dd5f3ba189a3a632a1076b1e7d04fd4c9283a16
9fc66d7c9f207a667031f2110a5bdb849d26d107
refs/heads/master
2021-01-17T12:36:05.759819
2016-06-16T14:22:34
2016-06-16T14:27:01
57,798,841
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
608
h
// stdafx.h: включаемый файл для стандартных системных включаемых файлов // или включаемых файлов для конкретного проекта, которые часто используются, но // не часто изменяются // #pragma once #include "targetver.h" #include <stdio.h> #include <tchar.h> #include <vector> #include <iostream> #include <string> // TODO: Установите здесь ссылки на дополнительные заголовки, требующиеся для программы
[ "ultimatum424@yandex.ru" ]
ultimatum424@yandex.ru
88ff08cb6871fbce84ccb52b9a612d9b2e84e96e
af0ecafb5428bd556d49575da2a72f6f80d3d14b
/CodeJamCrawler/dataset/11_24437_20.cpp
3b25ccb81ebf1f4dc5fac4f8f0ced982b34e37d8
[]
no_license
gbrlas/AVSP
0a2a08be5661c1b4a2238e875b6cdc88b4ee0997
e259090bf282694676b2568023745f9ffb6d73fd
refs/heads/master
2021-06-16T22:25:41.585830
2017-06-09T06:32:01
2017-06-09T06:32:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,505
cpp
/* * BotTrust.cpp * */ #include <vector> #include <limits> #include <cstdlib> #include <cstdio> #include <iostream> using namespace std; void solve(vector<vector<int> > & v, vector<double> & rpi) { int i, j, n = v.size(); vector<int> s(n, 0); vector<double> wp(n, 0); vector<double> owp(n, 0); vector<double> oowp(n, 0); // WP for (i = 0; i < n; ++i) for (j = 0; j < n; ++j) if (v[i][j] != -1) { wp[i] += v[i][j]; s[i] += 1; } // OWP for (i = 0; i < n; ++i) for (j = 0; j < n; ++j) if (v[i][j] != -1) owp[i] += (wp[j] - v[j][i]) / (s[j] - 1); for (i = 0; i < n; ++i) { wp[i] /= s[i]; owp[i] /= s[i]; } // OOWP for (i = 0; i < n; ++i) for (j = 0; j < n; ++j) if (v[i][j] != -1) oowp[i] += owp[j]; for (i = 0; i < n; ++i) oowp[i] /= s[i]; // RPI for (i = 0; i < n; ++i) rpi[i] = 0.25 * wp[i] + 0.5 * owp[i] + 0.25 * oowp[i]; } int main(void) { string line; int i, j, k, t, n; vector<vector<int> > v; vector<double> rpi; for (i = 1, cin >> t; i <= t; ++i) { cin >> n; v.resize(n, vector<int> (n)); rpi.resize(n, 0); // Read input for (j = 0; j < n; ++j) { cin >> line; for (k = 0; k < line.size(); ++k) { if (line[k] == '.') v[j][k] = -1; else if (line[k] == '1') v[j][k] = 1; else if (line[k] == '0') v[j][k] = 0; } } solve(v, rpi); // Print the result printf("Case #%d:\n", i); for (j = 0; j < n; ++j) { printf("%.10lf\n", rpi[j]); } v.clear(); rpi.clear(); } }
[ "nikola.mrzljak@fer.hr" ]
nikola.mrzljak@fer.hr
10cb6d884cb95451415ff4400afa1b6dc0f6f15c
908b105f8ed1c55e7e55c75eaeac58e7fc012122
/画客户区中心为圆心并与边界相切/画客户区中心为圆心并与边界相切/MainFrm.cpp
e244e2e8ea89f4ed0247cfb9892e36f65c6a74e1
[]
no_license
GXNU-luofeng/MFC
26dcd4fa034e5f14d78d9cb594aa08a0ed667dec
8e0cdfe5be45717b9d8be66794419ff53fecd8eb
refs/heads/master
2021-05-16T21:13:15.628336
2020-06-12T10:56:08
2020-06-12T10:56:08
250,469,113
0
0
null
null
null
null
GB18030
C++
false
false
1,984
cpp
// MainFrm.cpp : CMainFrame 类的实现 // #include "stdafx.h" #include "画客户区中心为圆心并与边界相切.h" #include "MainFrm.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CMainFrame IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd) const int iMaxUserToolbars = 10; const UINT uiFirstUserToolBarId = AFX_IDW_CONTROLBAR_FIRST + 40; const UINT uiLastUserToolBarId = uiFirstUserToolBarId + iMaxUserToolbars - 1; BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd) ON_WM_CREATE() END_MESSAGE_MAP() static UINT indicators[] = { ID_SEPARATOR, // 状态行指示器 ID_INDICATOR_CAPS, ID_INDICATOR_NUM, ID_INDICATOR_SCRL, }; // CMainFrame 构造/析构 CMainFrame::CMainFrame() { // TODO: 在此添加成员初始化代码 } CMainFrame::~CMainFrame() { } int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CFrameWnd::OnCreate(lpCreateStruct) == -1) return -1; if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) || !m_wndToolBar.LoadToolBar(IDR_MAINFRAME)) { TRACE0("未能创建工具栏\n"); return -1; // 未能创建 } if (!m_wndStatusBar.Create(this)) { TRACE0("未能创建状态栏\n"); return -1; // 未能创建 } m_wndStatusBar.SetIndicators(indicators, sizeof(indicators)/sizeof(UINT)); // TODO: 如果不需要可停靠工具栏,则删除这三行 m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY); EnableDocking(CBRS_ALIGN_ANY); DockControlBar(&m_wndToolBar); return 0; } BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs) { if( !CFrameWnd::PreCreateWindow(cs) ) return FALSE; // TODO: 在此处通过修改 // CREATESTRUCT cs 来修改窗口类或样式 return TRUE; } // CMainFrame 诊断 #ifdef _DEBUG void CMainFrame::AssertValid() const { CFrameWnd::AssertValid(); } void CMainFrame::Dump(CDumpContext& dc) const { CFrameWnd::Dump(dc); } #endif //_DEBUG // CMainFrame 消息处理程序
[ "1441834346@qq.com" ]
1441834346@qq.com
78903ce6ff1ba2b051e5a219058d1cfcf13da001
5fb8e7b1a005f31afa59630d2f7164a6b6ccc214
/code_COMPAS/COMPAS/NSMassRadiusRelation.cpp
d69adf964457493ddbced57edfd03f6247a86db0
[]
no_license
FloorBroekgaarden/DCO-random-code
9bb709f2cb308b8dd88536e0ae20503b7e8b082b
edf81dab55568a577917901e6d489d637cc7394c
refs/heads/main
2023-05-04T16:40:40.988383
2021-05-31T14:20:43
2021-05-31T14:20:43
345,443,153
0
0
null
null
null
null
UTF-8
C++
false
false
3,151
cpp
#include "NSMassRadiusRelation.h" // implementation goes here double momentOfInertia(double mass, double radius){ /* Model independent relation between moment of inertia and mass and radius of a neutron star Equation 8 in Raithel et al 2016 https://arxiv.org/abs/1603.06594 https://tap.arizona.edu/sites/tap.arizona.edu/files/Raithel_2015_manuscript.pdf Parameters ------------ M : float Mass in solar masses R : float Radius in km Returns --------- I : float Moment of inertia in g cm^2 */ // std::cout << "Mass, radius = " << mass << " " << radius << std::endl; return 0.237 * mass * MsolTog * pow((radius * km_in_cm), 2.0) * (1.0 + (4.2 * (mass/radius)) + 90 * pow((mass/radius), 4.0)); } double interpolatedMassRadiusRelation(double mass, const double massArray[], const double radiusArray[], const int nRowsArray){ /* Interpolate neutron star radius from tabulate mass-radius relation corresponding to a given neutron star equation of state. Parameters ----------- mass : double Mass at which to calculate interpolated radius in solar masses massArray : double Array of masses in km for a given equation of state radiusArray : double Array of radii in km for a given equation of state nRowsArray : int Number of elements in massArray and radiusArray for a given equation of state Returns -------- radiusInterpolated : double Neutron star radius interpolated from tabulated equation of state in km */ // Allocate memory to the gsl objects gsl_interp *interpolation = gsl_interp_alloc (gsl_interp_linear, nRowsArray); gsl_interp_accel * accelerator = gsl_interp_accel_alloc(); // Initialise interpolation gsl_interp_init(interpolation, massArray, radiusArray, nRowsArray); // Evaluate interpolant at desired mass double interpolatedRadius = gsl_interp_eval(interpolation, massArray, radiusArray, mass, accelerator); // Free memory gsl_interp_free (interpolation); gsl_interp_accel_free (accelerator); return interpolatedRadius; } double neutronStarRadius(double mass, const programOptions &options){ /* Wrapper function to calculate neutron star radius according to selected equation of state pass program options Parameters ---------- mass : double Neutron star mass in Msol options : programOptions User specified program options Returns ------- radius : double Neutron star radius in km */ if(options.neutronStarEquationOfState == NS_EOS_SSE){ return 10.0; } else if(options.neutronStarEquationOfState == NS_EOS_ARP3){ // We don't extrapolate so masses outside table just set to extreme values if(mass < mass_radius_relation_ARP3_minimum_mass){ return mass_radius_relation_ARP3_radius[0]; } else if(mass > mass_radius_relation_ARP3_maximum_mass){ return mass_radius_relation_ARP3_radius[nrows_ARP3-1]; } else{ return interpolatedMassRadiusRelation(mass, mass_radius_relation_ARP3_mass, mass_radius_relation_ARP3_radius, nrows_ARP3); } } else{ std::cerr << "Unrecognised NS EOS -- using default NS radius" << std::endl; return 10.0; } }
[ "fsbroekgaarden@gmail.com" ]
fsbroekgaarden@gmail.com
8754411fbdd35a4f094f3cd5312ca87b91bb83ab
7ee8d64a5252b6726d0be1d0a50fff804a33f5eb
/test/platform/test_unix.cpp
1c51b2d6d839e7f20c51d0e8922ceebf67d73c38
[]
no_license
WillBrennan/disk_usage
d4ccd21cf96b4e878f1c269f9e3f8ecdf73b8d34
ebced2513d124b9c13f8c87ce8f50161456deab5
refs/heads/master
2023-07-13T19:42:53.725574
2021-08-22T21:26:06
2021-08-22T21:26:06
368,758,553
1
1
null
null
null
null
UTF-8
C++
false
false
1,143
cpp
#include <gmock/gmock.h> #include <gtest/gtest.h> #include <stdlib.h> #include "disker/platform/unix.h" TEST(UnixPlatform, constructor) { using disker::UnixPlatform; auto platform = UnixPlatform(); } TEST(UnixPlatform, platform) { using disker::UnixPlatform; const auto platform = UnixPlatform(); EXPECT_EQ(platform.platform(), "apple"); } TEST(UnixPlatform, drives) { using disker::UnixPlatform; const auto platform = UnixPlatform(); const auto drives = platform.drives(); } TEST(UnixPlatform, favourites) { using disker::UnixPlatform; const auto platform = UnixPlatform(); const auto base = std::filesystem::current_path(); const auto downloads = base / "downloads"; const auto documents = base / "documents"; const auto music = base / "music"; std::filesystem::create_directories(downloads); std::filesystem::create_directories(documents); std::filesystem::create_directories(music); setenv("HOME", base.c_str(), true); const auto paths = platform.favourites(); EXPECT_THAT(paths, testing::UnorderedElementsAre(base, downloads, documents, music)); }
[ "willbrennan0@gmail.com" ]
willbrennan0@gmail.com
1ebf663e79d9d94e94a02a9bedf8d2fc281402fc
ea741e687f1ca44eff65c29b8ea2e16fd6d9628d
/Anno 2018-2019/Lezioni/4a LSA/Codice C++/Altro/AreaQuadrato.cpp
1430c66ab0717f5f61f89f5286939424516d12e8
[]
no_license
fuserale/Baronio
cad84036e80bd9a8adff4fa4398597d74622ed89
18f41404cd836d69e7b3f1d9df3dd38bd7e6c003
refs/heads/master
2020-08-05T15:47:47.896393
2019-10-18T17:10:04
2019-10-18T17:10:04
212,599,019
0
0
null
null
null
null
UTF-8
C++
false
false
319
cpp
#include <iostream> using namespace std; int lato; void leggiLato(){ cout<<"Dammi il lato"<<endl; cin>>lato; } int calcolaArea(int lato){ int area; area = lato*lato; return area; } int main(){ int area; leggiLato(); area = calcolaArea(lato); cout<<"Area: "<<area<<endl; }
[ "alessandrofsr@gmail.com" ]
alessandrofsr@gmail.com
87ed01e2db42a7b0bf8cc10925b35f3cc896ecdb
3dae85df94e05bb1f3527bca0d7ad413352e49d0
/ml/nn/runtime/test/generated/examples/strided_slice_qaunt8_11.example.cpp
5b56c7f674495fb58f70910b4b3e6d29ec30740b
[ "Apache-2.0" ]
permissive
Wenzhao-Xiang/webml-wasm
e48f4cde4cb986eaf389edabe78aa32c2e267cb9
0019b062bce220096c248b1fced09b90129b19f9
refs/heads/master
2020-04-08T11:57:07.170110
2018-11-29T07:21:37
2018-11-29T07:21:37
159,327,152
0
0
null
null
null
null
UTF-8
C++
false
false
651
cpp
// clang-format off // Generated file (from: strided_slice_qaunt8_11.mod.py). Do not edit std::vector<MixedTypedExample> examples = { // Begin of an example { .operands = { //Input(s) { // See tools/test_generator/include/TestHarness.h:MixedTyped // int -> FLOAT32 map {}, // int -> INT32 map {}, // int -> QUANT8_ASYMM map {{0, {1, 2, 3, 4, 5, 6}}}, // int -> QUANT16_ASYMM map {} }, //Output(s) { // See tools/test_generator/include/TestHarness.h:MixedTyped // int -> FLOAT32 map {}, // int -> INT32 map {}, // int -> QUANT8_ASYMM map {{0, {1, 2, 3}}}, // int -> QUANT16_ASYMM map {} } }, }, // End of an example };
[ "wenzhao.xiang@intel.com" ]
wenzhao.xiang@intel.com
019b54d7296021d40668372c8407266a2fe3f815
afcbed73ddeedd43038ba1f473808b6d7773a7fe
/ReversePolishNotation.cpp
4e7ec37ad6acbc0a2ba106ab5b4eab30a38dab94
[]
no_license
SoumyaGarg-web/InterviewPrep
4577b8df57ee252c2cc2e313e66ba815e2afe124
c6bf6f724b04fd5aaa6c2cbba34b2467e78c3152
refs/heads/master
2020-11-29T13:00:13.610512
2020-05-29T09:43:15
2020-05-29T09:43:15
230,117,765
0
1
null
null
null
null
UTF-8
C++
false
false
855
cpp
class Solution { public: int evalRPN(vector<string>& tokens) { stack<string>s; int c,i; for(i=0;i<tokens.size();i++){ if(tokens[i]!="+" && tokens[i]!="-" && tokens[i]!="*" && tokens[i]!="/"){ s.push(tokens[i]); } else if(!s.empty()){ int b= stoi(s.top()); s.pop(); int a= stoi(s.top()); s.pop(); if(tokens[i]=="/") c = a/b; else if(tokens[i]=="+") c=a+b; else if(tokens[i]=="-") c=a-b; else if(tokens[i]=="*") c=a*b; s.push(to_string(c)); } } c = stoi(s.top()); return c; } };
[ "noreply@github.com" ]
SoumyaGarg-web.noreply@github.com
c2193ea72743f1edaa3d65d0c54061e436485fd3
8c970ada20aa9e8df83cd6b8265cfb07abaed1f0
/libstdframe_qt/source/std.useritems.cpp
ad1254e16fb1e838532504c6fdb388bb3c67f35c
[]
no_license
wilsonsouza/libstdframe_qt
b5798c101c8ee0157b64b46e038efe4d5569a04b
f5de65483cb1fd7f42d5be206429e1ab0970736b
refs/heads/master
2020-03-30T05:01:08.683911
2018-09-29T20:47:30
2018-09-29T20:47:30
150,775,157
0
0
null
null
null
null
UTF-8
C++
false
false
801
cpp
//-----------------------------------------------------------------------------------------------// // stdx.frame.x86 for Windows // Dynamic library for QTxx // Created by Wilson.Souza 2012, 2018 // // WR Devinfo // (c) 2016, 2018 //-----------------------------------------------------------------------------------------------// #include <std.defsx.hpp> //-----------------------------------------------------------------------------------------------// namespace std { useritems::useritems() :menuitems{ captions::user{}.NAME }, icons::user{} { operator+(new menuitemdata{ captions::user{}.PASSWORD, PASSWORD }). operator+(new menuitemdata{ captions::user{}.PERMISSION }). separator(). operator+(new menuitemdata{ captions::user{}.MANAGER, MANAGER }); } }
[ "wilson.wettl@gmail.com" ]
wilson.wettl@gmail.com
6b827a044b3ce32be8178e113ef2f0db755e068a
aad28fa1140e713c8591db5a383ac5f6605f743b
/59 Коробка/Коробка.cpp
c30bdf831af92cc700ebad884ea6f1bc2c20eb97
[]
no_license
DaniilMuntyan/Solutions_e-olymp
d7ad45357d4f999c853efefcd47c39bc17e33664
7a318572e13f2e6103a2ade49c8ce9c5210caad9
refs/heads/master
2021-02-28T15:22:58.506994
2020-03-07T21:42:50
2020-03-07T21:42:50
245,708,666
3
0
null
null
null
null
UTF-8
C++
false
false
215
cpp
#include <bits/stdc++.h> using namespace std; int main() { int n; double a; cin >> n; for(int i = 0; i<n;i++) { cin >> a; cout << setprecision(10) << fixed << a/6 << endl; } }
[ "daniilmuntjan@gmail.com" ]
daniilmuntjan@gmail.com
42af2f51f1fc1a5843c14e914e798f8219b6eb6d
30a6975de792d613db836346ff758a7c0797d400
/lldb/include/lldb/API/SBFrame.h
d8fb075d2350b85c6aff84012ac02b5027791c49
[ "NCSA", "LLVM-exception", "Apache-2.0" ]
permissive
WYK15/swift-Ollvm11
0a2aa1b216c8e3f38829ae16db846039e8de149e
b28dba1ebe1186790650c72d5e97d8b46f1bc6e0
refs/heads/main
2023-06-27T18:14:47.652175
2021-06-10T12:47:56
2021-06-10T12:47:56
367,350,198
6
0
null
null
null
null
UTF-8
C++
false
false
6,833
h
//===-- SBFrame.h -----------------------------------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// #ifndef LLDB_API_SBFRAME_H #define LLDB_API_SBFRAME_H #include "lldb/API/SBDefines.h" #include "lldb/API/SBValueList.h" namespace lldb { class LLDB_API SBFrame { public: SBFrame(); SBFrame(const lldb::SBFrame &rhs); const lldb::SBFrame &operator=(const lldb::SBFrame &rhs); ~SBFrame(); bool IsEqual(const lldb::SBFrame &that) const; explicit operator bool() const; bool IsValid() const; uint32_t GetFrameID() const; lldb::addr_t GetCFA() const; lldb::addr_t GetPC() const; bool SetPC(lldb::addr_t new_pc); lldb::addr_t GetSP() const; lldb::addr_t GetFP() const; lldb::SBAddress GetPCAddress() const; lldb::SBSymbolContext GetSymbolContext(uint32_t resolve_scope) const; lldb::SBModule GetModule() const; lldb::SBCompileUnit GetCompileUnit() const; lldb::SBFunction GetFunction() const; lldb::SBSymbol GetSymbol() const; /// Gets the deepest block that contains the frame PC. /// /// See also GetFrameBlock(). lldb::SBBlock GetBlock() const; /// Get the appropriate function name for this frame. Inlined functions in /// LLDB are represented by Blocks that have inlined function information, so /// just looking at the SBFunction or SBSymbol for a frame isn't enough. /// This function will return the appropriate function, symbol or inlined /// function name for the frame. /// /// This function returns: /// - the name of the inlined function (if there is one) /// - the name of the concrete function (if there is one) /// - the name of the symbol (if there is one) /// - NULL /// /// See also IsInlined(). const char *GetFunctionName(); // Get an appropriate function name for this frame that is suitable for // display to a user const char *GetDisplayFunctionName(); const char *GetFunctionName() const; // Return the frame function's language. If there isn't a function, then // guess the language type from the mangled name. lldb::LanguageType GuessLanguage() const; bool IsSwiftThunk() const; /// Return true if this frame represents an inlined function. /// /// See also GetFunctionName(). bool IsInlined(); bool IsInlined() const; bool IsArtificial(); bool IsArtificial() const; /// The version that doesn't supply a 'use_dynamic' value will use the /// target's default. lldb::SBValue EvaluateExpression(const char *expr); lldb::SBValue EvaluateExpression(const char *expr, lldb::DynamicValueType use_dynamic); lldb::SBValue EvaluateExpression(const char *expr, lldb::DynamicValueType use_dynamic, bool unwind_on_error); lldb::SBValue EvaluateExpression(const char *expr, const SBExpressionOptions &options); /// Gets the lexical block that defines the stack frame. Another way to think /// of this is it will return the block that contains all of the variables /// for a stack frame. Inlined functions are represented as SBBlock objects /// that have inlined function information: the name of the inlined function, /// where it was called from. The block that is returned will be the first /// block at or above the block for the PC (SBFrame::GetBlock()) that defines /// the scope of the frame. When a function contains no inlined functions, /// this will be the top most lexical block that defines the function. /// When a function has inlined functions and the PC is currently /// in one of those inlined functions, this method will return the inlined /// block that defines this frame. If the PC isn't currently in an inlined /// function, the lexical block that defines the function is returned. lldb::SBBlock GetFrameBlock() const; lldb::SBLineEntry GetLineEntry() const; lldb::SBThread GetThread() const; const char *Disassemble() const; void Clear(); bool operator==(const lldb::SBFrame &rhs) const; bool operator!=(const lldb::SBFrame &rhs) const; /// The version that doesn't supply a 'use_dynamic' value will use the /// target's default. lldb::SBValueList GetVariables(bool arguments, bool locals, bool statics, bool in_scope_only); lldb::SBValueList GetVariables(bool arguments, bool locals, bool statics, bool in_scope_only, lldb::DynamicValueType use_dynamic); lldb::SBValueList GetVariables(const lldb::SBVariablesOptions &options); lldb::SBValueList GetRegisters(); lldb::SBValue FindRegister(const char *name); /// The version that doesn't supply a 'use_dynamic' value will use the /// target's default. lldb::SBValue FindVariable(const char *var_name); lldb::SBValue FindVariable(const char *var_name, lldb::DynamicValueType use_dynamic); // Find a value for a variable expression path like "rect.origin.x" or // "pt_ptr->x", "*self", "*this->obj_ptr". The returned value is _not_ and // expression result and is not a constant object like // SBFrame::EvaluateExpression(...) returns, but a child object of the // variable value. lldb::SBValue GetValueForVariablePath(const char *var_expr_cstr, DynamicValueType use_dynamic); /// The version that doesn't supply a 'use_dynamic' value will use the /// target's default. lldb::SBValue GetValueForVariablePath(const char *var_path); /// Find variables, register sets, registers, or persistent variables using /// the frame as the scope. /// /// NB. This function does not look up ivars in the function object pointer. /// To do that use GetValueForVariablePath. /// /// The version that doesn't supply a 'use_dynamic' value will use the /// target's default. lldb::SBValue FindValue(const char *name, ValueType value_type); lldb::SBValue FindValue(const char *name, ValueType value_type, lldb::DynamicValueType use_dynamic); bool GetDescription(lldb::SBStream &description); SBFrame(const lldb::StackFrameSP &lldb_object_sp); protected: friend class SBBlock; friend class SBExecutionContext; friend class SBInstruction; friend class SBThread; friend class SBValue; lldb::StackFrameSP GetFrameSP() const; void SetFrameSP(const lldb::StackFrameSP &lldb_object_sp); lldb::ExecutionContextRefSP m_opaque_sp; }; } // namespace lldb #endif // LLDB_API_SBFRAME_H
[ "wangyankun@ishumei.com" ]
wangyankun@ishumei.com
45bca6b0fb7ef286a5d6b7031ef0bede7835c161
89fe54eca6ba119ce7acbcd3bbca97c42bf47cb4
/Source/TableAndChair/TableAndChairGameModeBase.cpp
ad961c9fe16ca8f178e09d266079ecb56cfaedc1
[]
no_license
sergio2692/MyTestZuru
8fa353c8c66a6b0a55d23d5c1ebda6f02aa1ed20
246990f276c2c3de5ae2842dfc77cd2968a67354
refs/heads/master
2021-10-23T16:19:42.903458
2019-03-18T21:20:57
2019-03-18T21:20:57
176,371,283
0
0
null
null
null
null
UTF-8
C++
false
false
123
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "TableAndChairGameModeBase.h"
[ "sergio.lena26@gmail.com" ]
sergio.lena26@gmail.com
048e34baef2667b9734a47d6ff30b585c5e3a055
78e0169772750737141baafcee27db03e3827c84
/Proto/Common/ServiceRegisterBean.pb.cc
ab4c39ef7a38c39e9b0bf34d70fe46f9793e07a1
[]
no_license
wujiancheng622/BaseCore
b9d5b6434ed40024fa5207c2ab61e089877bba81
9c374fb7bd23ba9d6b8c657de65e2278ca6cf1c5
refs/heads/master
2022-12-27T19:33:50.370214
2020-07-05T23:29:24
2020-07-05T23:29:24
276,653,082
1
0
null
2020-10-13T23:17:02
2020-07-02T13:26:04
C++
UTF-8
C++
false
true
190,226
cc
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: ServiceRegisterBean.proto #define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION #include "ServiceRegisterBean.pb.h" #include <algorithm> #include <google/protobuf/stubs/common.h> #include <google/protobuf/stubs/once.h> #include <google/protobuf/io/coded_stream.h> #include <google/protobuf/wire_format_lite_inl.h> #include <google/protobuf/descriptor.h> #include <google/protobuf/generated_message_reflection.h> #include <google/protobuf/reflection_ops.h> #include <google/protobuf/wire_format.h> // @@protoc_insertion_point(includes) namespace com { namespace arges { namespace file { namespace proto { namespace { const ::google::protobuf::Descriptor* RegisterModelInfo_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* RegisterModelInfo_reflection_ = NULL; const ::google::protobuf::Descriptor* ServiceInfoForRegister_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* ServiceInfoForRegister_reflection_ = NULL; const ::google::protobuf::Descriptor* ReqServiceRegister_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* ReqServiceRegister_reflection_ = NULL; const ::google::protobuf::Descriptor* RspServiceRegister_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* RspServiceRegister_reflection_ = NULL; const ::google::protobuf::Descriptor* ReqServiceLogout_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* ReqServiceLogout_reflection_ = NULL; const ::google::protobuf::Descriptor* RspServiceLogout_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* RspServiceLogout_reflection_ = NULL; const ::google::protobuf::Descriptor* ReqServiceInfoForQuery_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* ReqServiceInfoForQuery_reflection_ = NULL; const ::google::protobuf::Descriptor* RspServiceInfoForQuery_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* RspServiceInfoForQuery_reflection_ = NULL; const ::google::protobuf::Descriptor* ReqServiceModify_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* ReqServiceModify_reflection_ = NULL; const ::google::protobuf::Descriptor* ReqServiceModify_ServiceModify_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* ReqServiceModify_ServiceModify_reflection_ = NULL; const ::google::protobuf::Descriptor* ReqMysqlServiceModify_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* ReqMysqlServiceModify_reflection_ = NULL; const ::google::protobuf::Descriptor* RspMysqlServiceModify_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* RspMysqlServiceModify_reflection_ = NULL; const ::google::protobuf::EnumDescriptor* OPRATION_TYPE_OF_SERVICE_INFO_descriptor_ = NULL; } // namespace void protobuf_AssignDesc_ServiceRegisterBean_2eproto() { protobuf_AddDesc_ServiceRegisterBean_2eproto(); const ::google::protobuf::FileDescriptor* file = ::google::protobuf::DescriptorPool::generated_pool()->FindFileByName( "ServiceRegisterBean.proto"); GOOGLE_CHECK(file != NULL); RegisterModelInfo_descriptor_ = file->message_type(0); static const int RegisterModelInfo_offsets_[4] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RegisterModelInfo, ip_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RegisterModelInfo, port_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RegisterModelInfo, type_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RegisterModelInfo, name_), }; RegisterModelInfo_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( RegisterModelInfo_descriptor_, RegisterModelInfo::default_instance_, RegisterModelInfo_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RegisterModelInfo, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RegisterModelInfo, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(RegisterModelInfo)); ServiceInfoForRegister_descriptor_ = file->message_type(1); static const int ServiceInfoForRegister_offsets_[27] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, info_node_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, info_address_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, info_service_id_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, info_service_name_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, info_service_address_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, info_service_port_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, info_service_pid_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, info_service_module_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, info_mq_consumer_queue_name_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, status_node_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, status_check_id_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, status_name_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, status_status_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, status_notes_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, status_output_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, status_service_id_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, status_service_name_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, registermodel_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, id_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, outer_net_ip_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, outer_net_port_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, path_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, server_code_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, memo_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, sort_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, is_onlie_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, domain_), }; ServiceInfoForRegister_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( ServiceInfoForRegister_descriptor_, ServiceInfoForRegister::default_instance_, ServiceInfoForRegister_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ServiceInfoForRegister, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(ServiceInfoForRegister)); ReqServiceRegister_descriptor_ = file->message_type(2); static const int ReqServiceRegister_offsets_[1] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceRegister, serviceinfo_), }; ReqServiceRegister_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( ReqServiceRegister_descriptor_, ReqServiceRegister::default_instance_, ReqServiceRegister_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceRegister, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceRegister, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(ReqServiceRegister)); RspServiceRegister_descriptor_ = file->message_type(3); static const int RspServiceRegister_offsets_[4] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceRegister, result_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceRegister, describe_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceRegister, id_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceRegister, service_num_), }; RspServiceRegister_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( RspServiceRegister_descriptor_, RspServiceRegister::default_instance_, RspServiceRegister_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceRegister, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceRegister, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(RspServiceRegister)); ReqServiceLogout_descriptor_ = file->message_type(4); static const int ReqServiceLogout_offsets_[1] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceLogout, id_), }; ReqServiceLogout_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( ReqServiceLogout_descriptor_, ReqServiceLogout::default_instance_, ReqServiceLogout_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceLogout, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceLogout, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(ReqServiceLogout)); RspServiceLogout_descriptor_ = file->message_type(5); static const int RspServiceLogout_offsets_[2] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceLogout, result_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceLogout, describe_), }; RspServiceLogout_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( RspServiceLogout_descriptor_, RspServiceLogout::default_instance_, RspServiceLogout_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceLogout, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceLogout, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(RspServiceLogout)); ReqServiceInfoForQuery_descriptor_ = file->message_type(6); static const int ReqServiceInfoForQuery_offsets_[3] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceInfoForQuery, info_service_module_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceInfoForQuery, type_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceInfoForQuery, projectdomain_), }; ReqServiceInfoForQuery_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( ReqServiceInfoForQuery_descriptor_, ReqServiceInfoForQuery::default_instance_, ReqServiceInfoForQuery_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceInfoForQuery, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceInfoForQuery, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(ReqServiceInfoForQuery)); RspServiceInfoForQuery_descriptor_ = file->message_type(7); static const int RspServiceInfoForQuery_offsets_[1] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceInfoForQuery, service_info_), }; RspServiceInfoForQuery_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( RspServiceInfoForQuery_descriptor_, RspServiceInfoForQuery::default_instance_, RspServiceInfoForQuery_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceInfoForQuery, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspServiceInfoForQuery, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(RspServiceInfoForQuery)); ReqServiceModify_descriptor_ = file->message_type(8); static const int ReqServiceModify_offsets_[1] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceModify, dos_), }; ReqServiceModify_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( ReqServiceModify_descriptor_, ReqServiceModify::default_instance_, ReqServiceModify_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceModify, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceModify, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(ReqServiceModify)); ReqServiceModify_ServiceModify_descriptor_ = ReqServiceModify_descriptor_->nested_type(0); static const int ReqServiceModify_ServiceModify_offsets_[2] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceModify_ServiceModify, type_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceModify_ServiceModify, infos_), }; ReqServiceModify_ServiceModify_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( ReqServiceModify_ServiceModify_descriptor_, ReqServiceModify_ServiceModify::default_instance_, ReqServiceModify_ServiceModify_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceModify_ServiceModify, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqServiceModify_ServiceModify, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(ReqServiceModify_ServiceModify)); ReqMysqlServiceModify_descriptor_ = file->message_type(9); static const int ReqMysqlServiceModify_offsets_[2] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqMysqlServiceModify, oprtype_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqMysqlServiceModify, service_info_), }; ReqMysqlServiceModify_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( ReqMysqlServiceModify_descriptor_, ReqMysqlServiceModify::default_instance_, ReqMysqlServiceModify_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqMysqlServiceModify, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(ReqMysqlServiceModify, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(ReqMysqlServiceModify)); RspMysqlServiceModify_descriptor_ = file->message_type(10); static const int RspMysqlServiceModify_offsets_[3] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspMysqlServiceModify, result_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspMysqlServiceModify, describe_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspMysqlServiceModify, id_), }; RspMysqlServiceModify_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( RspMysqlServiceModify_descriptor_, RspMysqlServiceModify::default_instance_, RspMysqlServiceModify_offsets_, GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspMysqlServiceModify, _has_bits_[0]), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RspMysqlServiceModify, _unknown_fields_), -1, ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(RspMysqlServiceModify)); OPRATION_TYPE_OF_SERVICE_INFO_descriptor_ = file->enum_type(0); } namespace { GOOGLE_PROTOBUF_DECLARE_ONCE(protobuf_AssignDescriptors_once_); inline void protobuf_AssignDescriptorsOnce() { ::google::protobuf::GoogleOnceInit(&protobuf_AssignDescriptors_once_, &protobuf_AssignDesc_ServiceRegisterBean_2eproto); } void protobuf_RegisterTypes(const ::std::string&) { protobuf_AssignDescriptorsOnce(); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( RegisterModelInfo_descriptor_, &RegisterModelInfo::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( ServiceInfoForRegister_descriptor_, &ServiceInfoForRegister::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( ReqServiceRegister_descriptor_, &ReqServiceRegister::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( RspServiceRegister_descriptor_, &RspServiceRegister::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( ReqServiceLogout_descriptor_, &ReqServiceLogout::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( RspServiceLogout_descriptor_, &RspServiceLogout::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( ReqServiceInfoForQuery_descriptor_, &ReqServiceInfoForQuery::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( RspServiceInfoForQuery_descriptor_, &RspServiceInfoForQuery::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( ReqServiceModify_descriptor_, &ReqServiceModify::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( ReqServiceModify_ServiceModify_descriptor_, &ReqServiceModify_ServiceModify::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( ReqMysqlServiceModify_descriptor_, &ReqMysqlServiceModify::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( RspMysqlServiceModify_descriptor_, &RspMysqlServiceModify::default_instance()); } } // namespace void protobuf_ShutdownFile_ServiceRegisterBean_2eproto() { delete RegisterModelInfo::default_instance_; delete RegisterModelInfo_reflection_; delete ServiceInfoForRegister::default_instance_; delete ServiceInfoForRegister_reflection_; delete ReqServiceRegister::default_instance_; delete ReqServiceRegister_reflection_; delete RspServiceRegister::default_instance_; delete RspServiceRegister_reflection_; delete ReqServiceLogout::default_instance_; delete ReqServiceLogout_reflection_; delete RspServiceLogout::default_instance_; delete RspServiceLogout_reflection_; delete ReqServiceInfoForQuery::default_instance_; delete ReqServiceInfoForQuery_reflection_; delete RspServiceInfoForQuery::default_instance_; delete RspServiceInfoForQuery_reflection_; delete ReqServiceModify::default_instance_; delete ReqServiceModify_reflection_; delete ReqServiceModify_ServiceModify::default_instance_; delete ReqServiceModify_ServiceModify_reflection_; delete ReqMysqlServiceModify::default_instance_; delete ReqMysqlServiceModify_reflection_; delete RspMysqlServiceModify::default_instance_; delete RspMysqlServiceModify_reflection_; } void protobuf_AddDesc_ServiceRegisterBean_2eproto() { static bool already_here = false; if (already_here) return; already_here = true; GOOGLE_PROTOBUF_VERIFY_VERSION; ::google::protobuf::DescriptorPool::InternalAddGeneratedFile( "\n\031ServiceRegisterBean.proto\022\024com.arges.f" "ile.proto\"U\n\021RegisterModelInfo\022\014\n\002ip\030\001 \001" "(\t:\000\022\020\n\004port\030\002 \001(\005:\002-1\022\020\n\004type\030\003 \001(\005:\002-1" "\022\016\n\004name\030\004 \001(\t:\000\"\346\005\n\026ServiceInfoForRegis" "ter\022\023\n\tinfo_node\030\001 \001(\t:\000\022\026\n\014info_address" "\030\002 \001(\t:\000\022\031\n\017info_service_id\030\003 \001(\t:\000\022\033\n\021i" "nfo_service_name\030\004 \001(\t:\000\022\036\n\024info_service" "_address\030\005 \001(\t:\000\022\035\n\021info_service_port\030\006 " "\001(\005:\002-1\022\034\n\020info_service_pid\030\007 \001(\005:\002-1\022\037\n" "\023info_service_module\030\010 \001(\005:\002-1\022%\n\033info_m" "q_consumer_queue_name\030\t \001(\t:\000\022\025\n\013status_" "node\030\n \001(\t:\000\022\031\n\017status_check_id\030\013 \001(\t:\000\022" "\025\n\013status_name\030\014 \001(\t:\000\022\027\n\rstatus_status\030" "\r \001(\t:\000\022\026\n\014status_notes\030\016 \001(\t:\000\022\027\n\rstatu" "s_output\030\017 \001(\t:\000\022\033\n\021status_service_id\030\020 " "\001(\t:\000\022\035\n\023status_service_name\030\021 \001(\t:\000\022>\n\r" "registermodel\030\022 \003(\0132\'.com.arges.file.pro" "to.RegisterModelInfo\022\016\n\002id\030\023 \001(\003:\002-1\022\026\n\014" "outer_net_ip\030\024 \001(\t:\000\022\032\n\016outer_net_port\030\025" " \001(\005:\002-1\022\016\n\004path\030\026 \001(\t:\000\022\025\n\013server_code\030" "\027 \001(\t:\000\022\016\n\004memo\030\030 \001(\t:\000\022\020\n\004sort\030\031 \001(\003:\002-" "1\022\024\n\010is_onlie\030\032 \001(\005:\002-1\022\020\n\006domain\030\033 \001(\t:" "\000\"W\n\022ReqServiceRegister\022A\n\013serviceInfo\030\001" " \002(\0132,.com.arges.file.proto.ServiceInfoF" "orRegister\"c\n\022RspServiceRegister\022\022\n\006resu" "lt\030\001 \001(\005:\002-1\022\022\n\010describe\030\002 \001(\t:\000\022\014\n\002id\030\003" " \001(\t:\000\022\027\n\013service_num\030\004 \001(\005:\002-1\"\036\n\020ReqSe" "rviceLogout\022\n\n\002id\030\001 \003(\t\":\n\020RspServiceLog" "out\022\022\n\006result\030\001 \001(\005:\002-1\022\022\n\010describe\030\002 \001(" "\t:\000\"Z\n\026ReqServiceInfoForQuery\022\033\n\023info_se" "rvice_module\030\001 \003(\005\022\014\n\004type\030\002 \001(\005\022\025\n\rproj" "ectDomain\030\003 \001(\t\"\\\n\026RspServiceInfoForQuer" "y\022B\n\014service_info\030\001 \003(\0132,.com.arges.file" ".proto.ServiceInfoForRegister\"\265\001\n\020ReqSer" "viceModify\022A\n\003dos\030\001 \003(\01324.com.arges.file" ".proto.ReqServiceModify.ServiceModify\032^\n" "\rServiceModify\022\020\n\004type\030\001 \001(\005:\002-1\022;\n\005info" "s\030\002 \003(\0132,.com.arges.file.proto.ServiceIn" "foForRegister\"p\n\025ReqMysqlServiceModify\022\023" "\n\007oprType\030\001 \002(\005:\002-1\022B\n\014service_info\030\002 \003(" "\0132,.com.arges.file.proto.ServiceInfoForR" "egister\"K\n\025RspMysqlServiceModify\022\022\n\006resu" "lt\030\001 \001(\005:\002-1\022\022\n\010describe\030\002 \001(\t:\000\022\n\n\002id\030\003" " \003(\t*\355\001\n\035OPRATION_TYPE_OF_SERVICE_INFO\022\030" "\n\024SERVICE_INFO_GET_ALL\020\001\022\036\n\032SERVICE_INFO" "_GET_BY_MODULE\020\002\022\"\n\036SERVICE_INFO_GET_ALL" "_BY_DOMAIN\020\003\022)\n%SERVICE_INFO_GET_BY_DOMA" "IN_AND_MODULE\020\004\022\030\n\024SERVICE_DELETE_BY_ID\020" "\005\022\017\n\013SERVICE_ADD\020\006\022\030\n\024SERVICE_UPDATE_BY_" "ID\020\007", 1964); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "ServiceRegisterBean.proto", &protobuf_RegisterTypes); RegisterModelInfo::default_instance_ = new RegisterModelInfo(); ServiceInfoForRegister::default_instance_ = new ServiceInfoForRegister(); ReqServiceRegister::default_instance_ = new ReqServiceRegister(); RspServiceRegister::default_instance_ = new RspServiceRegister(); ReqServiceLogout::default_instance_ = new ReqServiceLogout(); RspServiceLogout::default_instance_ = new RspServiceLogout(); ReqServiceInfoForQuery::default_instance_ = new ReqServiceInfoForQuery(); RspServiceInfoForQuery::default_instance_ = new RspServiceInfoForQuery(); ReqServiceModify::default_instance_ = new ReqServiceModify(); ReqServiceModify_ServiceModify::default_instance_ = new ReqServiceModify_ServiceModify(); ReqMysqlServiceModify::default_instance_ = new ReqMysqlServiceModify(); RspMysqlServiceModify::default_instance_ = new RspMysqlServiceModify(); RegisterModelInfo::default_instance_->InitAsDefaultInstance(); ServiceInfoForRegister::default_instance_->InitAsDefaultInstance(); ReqServiceRegister::default_instance_->InitAsDefaultInstance(); RspServiceRegister::default_instance_->InitAsDefaultInstance(); ReqServiceLogout::default_instance_->InitAsDefaultInstance(); RspServiceLogout::default_instance_->InitAsDefaultInstance(); ReqServiceInfoForQuery::default_instance_->InitAsDefaultInstance(); RspServiceInfoForQuery::default_instance_->InitAsDefaultInstance(); ReqServiceModify::default_instance_->InitAsDefaultInstance(); ReqServiceModify_ServiceModify::default_instance_->InitAsDefaultInstance(); ReqMysqlServiceModify::default_instance_->InitAsDefaultInstance(); RspMysqlServiceModify::default_instance_->InitAsDefaultInstance(); ::google::protobuf::internal::OnShutdown(&protobuf_ShutdownFile_ServiceRegisterBean_2eproto); } // Force AddDescriptors() to be called at static initialization time. struct StaticDescriptorInitializer_ServiceRegisterBean_2eproto { StaticDescriptorInitializer_ServiceRegisterBean_2eproto() { protobuf_AddDesc_ServiceRegisterBean_2eproto(); } } static_descriptor_initializer_ServiceRegisterBean_2eproto_; const ::google::protobuf::EnumDescriptor* OPRATION_TYPE_OF_SERVICE_INFO_descriptor() { protobuf_AssignDescriptorsOnce(); return OPRATION_TYPE_OF_SERVICE_INFO_descriptor_; } bool OPRATION_TYPE_OF_SERVICE_INFO_IsValid(int value) { switch(value) { case 1: case 2: case 3: case 4: case 5: case 6: case 7: return true; default: return false; } } // =================================================================== #ifndef _MSC_VER const int RegisterModelInfo::kIpFieldNumber; const int RegisterModelInfo::kPortFieldNumber; const int RegisterModelInfo::kTypeFieldNumber; const int RegisterModelInfo::kNameFieldNumber; #endif // !_MSC_VER RegisterModelInfo::RegisterModelInfo() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.RegisterModelInfo) } void RegisterModelInfo::InitAsDefaultInstance() { } RegisterModelInfo::RegisterModelInfo(const RegisterModelInfo& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.RegisterModelInfo) } void RegisterModelInfo::SharedCtor() { ::google::protobuf::internal::GetEmptyString(); _cached_size_ = 0; ip_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); port_ = -1; type_ = -1; name_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); ::memset(_has_bits_, 0, sizeof(_has_bits_)); } RegisterModelInfo::~RegisterModelInfo() { // @@protoc_insertion_point(destructor:com.arges.file.proto.RegisterModelInfo) SharedDtor(); } void RegisterModelInfo::SharedDtor() { if (ip_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete ip_; } if (name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete name_; } if (this != default_instance_) { } } void RegisterModelInfo::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* RegisterModelInfo::descriptor() { protobuf_AssignDescriptorsOnce(); return RegisterModelInfo_descriptor_; } const RegisterModelInfo& RegisterModelInfo::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } RegisterModelInfo* RegisterModelInfo::default_instance_ = NULL; RegisterModelInfo* RegisterModelInfo::New() const { return new RegisterModelInfo; } void RegisterModelInfo::Clear() { if (_has_bits_[0 / 32] & 15) { if (has_ip()) { if (ip_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { ip_->clear(); } } port_ = -1; type_ = -1; if (has_name()) { if (name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { name_->clear(); } } } ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool RegisterModelInfo::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.RegisterModelInfo) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // optional string ip = 1 [default = ""]; case 1: { if (tag == 10) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_ip())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->ip().data(), this->ip().length(), ::google::protobuf::internal::WireFormat::PARSE, "ip"); } else { goto handle_unusual; } if (input->ExpectTag(16)) goto parse_port; break; } // optional int32 port = 2 [default = -1]; case 2: { if (tag == 16) { parse_port: DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &port_))); set_has_port(); } else { goto handle_unusual; } if (input->ExpectTag(24)) goto parse_type; break; } // optional int32 type = 3 [default = -1]; case 3: { if (tag == 24) { parse_type: DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &type_))); set_has_type(); } else { goto handle_unusual; } if (input->ExpectTag(34)) goto parse_name; break; } // optional string name = 4 [default = ""]; case 4: { if (tag == 34) { parse_name: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_name())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->name().data(), this->name().length(), ::google::protobuf::internal::WireFormat::PARSE, "name"); } else { goto handle_unusual; } if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.RegisterModelInfo) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.RegisterModelInfo) return false; #undef DO_ } void RegisterModelInfo::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.RegisterModelInfo) // optional string ip = 1 [default = ""]; if (has_ip()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->ip().data(), this->ip().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "ip"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->ip(), output); } // optional int32 port = 2 [default = -1]; if (has_port()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->port(), output); } // optional int32 type = 3 [default = -1]; if (has_type()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(3, this->type(), output); } // optional string name = 4 [default = ""]; if (has_name()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->name().data(), this->name().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 4, this->name(), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.RegisterModelInfo) } ::google::protobuf::uint8* RegisterModelInfo::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.RegisterModelInfo) // optional string ip = 1 [default = ""]; if (has_ip()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->ip().data(), this->ip().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "ip"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->ip(), target); } // optional int32 port = 2 [default = -1]; if (has_port()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->port(), target); } // optional int32 type = 3 [default = -1]; if (has_type()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(3, this->type(), target); } // optional string name = 4 [default = ""]; if (has_name()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->name().data(), this->name().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 4, this->name(), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.RegisterModelInfo) return target; } int RegisterModelInfo::ByteSize() const { int total_size = 0; if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { // optional string ip = 1 [default = ""]; if (has_ip()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->ip()); } // optional int32 port = 2 [default = -1]; if (has_port()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->port()); } // optional int32 type = 3 [default = -1]; if (has_type()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->type()); } // optional string name = 4 [default = ""]; if (has_name()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->name()); } } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void RegisterModelInfo::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const RegisterModelInfo* source = ::google::protobuf::internal::dynamic_cast_if_available<const RegisterModelInfo*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void RegisterModelInfo::MergeFrom(const RegisterModelInfo& from) { GOOGLE_CHECK_NE(&from, this); if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) { if (from.has_ip()) { set_ip(from.ip()); } if (from.has_port()) { set_port(from.port()); } if (from.has_type()) { set_type(from.type()); } if (from.has_name()) { set_name(from.name()); } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void RegisterModelInfo::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void RegisterModelInfo::CopyFrom(const RegisterModelInfo& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool RegisterModelInfo::IsInitialized() const { return true; } void RegisterModelInfo::Swap(RegisterModelInfo* other) { if (other != this) { std::swap(ip_, other->ip_); std::swap(port_, other->port_); std::swap(type_, other->type_); std::swap(name_, other->name_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata RegisterModelInfo::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = RegisterModelInfo_descriptor_; metadata.reflection = RegisterModelInfo_reflection_; return metadata; } // =================================================================== #ifndef _MSC_VER const int ServiceInfoForRegister::kInfoNodeFieldNumber; const int ServiceInfoForRegister::kInfoAddressFieldNumber; const int ServiceInfoForRegister::kInfoServiceIdFieldNumber; const int ServiceInfoForRegister::kInfoServiceNameFieldNumber; const int ServiceInfoForRegister::kInfoServiceAddressFieldNumber; const int ServiceInfoForRegister::kInfoServicePortFieldNumber; const int ServiceInfoForRegister::kInfoServicePidFieldNumber; const int ServiceInfoForRegister::kInfoServiceModuleFieldNumber; const int ServiceInfoForRegister::kInfoMqConsumerQueueNameFieldNumber; const int ServiceInfoForRegister::kStatusNodeFieldNumber; const int ServiceInfoForRegister::kStatusCheckIdFieldNumber; const int ServiceInfoForRegister::kStatusNameFieldNumber; const int ServiceInfoForRegister::kStatusStatusFieldNumber; const int ServiceInfoForRegister::kStatusNotesFieldNumber; const int ServiceInfoForRegister::kStatusOutputFieldNumber; const int ServiceInfoForRegister::kStatusServiceIdFieldNumber; const int ServiceInfoForRegister::kStatusServiceNameFieldNumber; const int ServiceInfoForRegister::kRegistermodelFieldNumber; const int ServiceInfoForRegister::kIdFieldNumber; const int ServiceInfoForRegister::kOuterNetIpFieldNumber; const int ServiceInfoForRegister::kOuterNetPortFieldNumber; const int ServiceInfoForRegister::kPathFieldNumber; const int ServiceInfoForRegister::kServerCodeFieldNumber; const int ServiceInfoForRegister::kMemoFieldNumber; const int ServiceInfoForRegister::kSortFieldNumber; const int ServiceInfoForRegister::kIsOnlieFieldNumber; const int ServiceInfoForRegister::kDomainFieldNumber; #endif // !_MSC_VER ServiceInfoForRegister::ServiceInfoForRegister() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.ServiceInfoForRegister) } void ServiceInfoForRegister::InitAsDefaultInstance() { } ServiceInfoForRegister::ServiceInfoForRegister(const ServiceInfoForRegister& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.ServiceInfoForRegister) } void ServiceInfoForRegister::SharedCtor() { ::google::protobuf::internal::GetEmptyString(); _cached_size_ = 0; info_node_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); info_address_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); info_service_id_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); info_service_name_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); info_service_address_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); info_service_port_ = -1; info_service_pid_ = -1; info_service_module_ = -1; info_mq_consumer_queue_name_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); status_node_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); status_check_id_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); status_name_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); status_status_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); status_notes_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); status_output_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); status_service_id_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); status_service_name_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); id_ = GOOGLE_LONGLONG(-1); outer_net_ip_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); outer_net_port_ = -1; path_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); server_code_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); memo_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); sort_ = GOOGLE_LONGLONG(-1); is_onlie_ = -1; domain_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); ::memset(_has_bits_, 0, sizeof(_has_bits_)); } ServiceInfoForRegister::~ServiceInfoForRegister() { // @@protoc_insertion_point(destructor:com.arges.file.proto.ServiceInfoForRegister) SharedDtor(); } void ServiceInfoForRegister::SharedDtor() { if (info_node_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete info_node_; } if (info_address_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete info_address_; } if (info_service_id_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete info_service_id_; } if (info_service_name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete info_service_name_; } if (info_service_address_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete info_service_address_; } if (info_mq_consumer_queue_name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete info_mq_consumer_queue_name_; } if (status_node_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete status_node_; } if (status_check_id_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete status_check_id_; } if (status_name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete status_name_; } if (status_status_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete status_status_; } if (status_notes_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete status_notes_; } if (status_output_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete status_output_; } if (status_service_id_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete status_service_id_; } if (status_service_name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete status_service_name_; } if (outer_net_ip_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete outer_net_ip_; } if (path_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete path_; } if (server_code_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete server_code_; } if (memo_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete memo_; } if (domain_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete domain_; } if (this != default_instance_) { } } void ServiceInfoForRegister::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* ServiceInfoForRegister::descriptor() { protobuf_AssignDescriptorsOnce(); return ServiceInfoForRegister_descriptor_; } const ServiceInfoForRegister& ServiceInfoForRegister::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } ServiceInfoForRegister* ServiceInfoForRegister::default_instance_ = NULL; ServiceInfoForRegister* ServiceInfoForRegister::New() const { return new ServiceInfoForRegister; } void ServiceInfoForRegister::Clear() { if (_has_bits_[0 / 32] & 255) { if (has_info_node()) { if (info_node_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { info_node_->clear(); } } if (has_info_address()) { if (info_address_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { info_address_->clear(); } } if (has_info_service_id()) { if (info_service_id_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { info_service_id_->clear(); } } if (has_info_service_name()) { if (info_service_name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { info_service_name_->clear(); } } if (has_info_service_address()) { if (info_service_address_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { info_service_address_->clear(); } } info_service_port_ = -1; info_service_pid_ = -1; info_service_module_ = -1; } if (_has_bits_[8 / 32] & 65280) { if (has_info_mq_consumer_queue_name()) { if (info_mq_consumer_queue_name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { info_mq_consumer_queue_name_->clear(); } } if (has_status_node()) { if (status_node_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { status_node_->clear(); } } if (has_status_check_id()) { if (status_check_id_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { status_check_id_->clear(); } } if (has_status_name()) { if (status_name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { status_name_->clear(); } } if (has_status_status()) { if (status_status_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { status_status_->clear(); } } if (has_status_notes()) { if (status_notes_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { status_notes_->clear(); } } if (has_status_output()) { if (status_output_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { status_output_->clear(); } } if (has_status_service_id()) { if (status_service_id_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { status_service_id_->clear(); } } } if (_has_bits_[16 / 32] & 16580608) { if (has_status_service_name()) { if (status_service_name_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { status_service_name_->clear(); } } id_ = GOOGLE_LONGLONG(-1); if (has_outer_net_ip()) { if (outer_net_ip_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { outer_net_ip_->clear(); } } outer_net_port_ = -1; if (has_path()) { if (path_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { path_->clear(); } } if (has_server_code()) { if (server_code_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { server_code_->clear(); } } if (has_memo()) { if (memo_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { memo_->clear(); } } } if (_has_bits_[24 / 32] & 117440512) { sort_ = GOOGLE_LONGLONG(-1); is_onlie_ = -1; if (has_domain()) { if (domain_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { domain_->clear(); } } } registermodel_.Clear(); ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool ServiceInfoForRegister::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.ServiceInfoForRegister) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(16383); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // optional string info_node = 1 [default = ""]; case 1: { if (tag == 10) { DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_info_node())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_node().data(), this->info_node().length(), ::google::protobuf::internal::WireFormat::PARSE, "info_node"); } else { goto handle_unusual; } if (input->ExpectTag(18)) goto parse_info_address; break; } // optional string info_address = 2 [default = ""]; case 2: { if (tag == 18) { parse_info_address: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_info_address())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_address().data(), this->info_address().length(), ::google::protobuf::internal::WireFormat::PARSE, "info_address"); } else { goto handle_unusual; } if (input->ExpectTag(26)) goto parse_info_service_id; break; } // optional string info_service_id = 3 [default = ""]; case 3: { if (tag == 26) { parse_info_service_id: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_info_service_id())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_service_id().data(), this->info_service_id().length(), ::google::protobuf::internal::WireFormat::PARSE, "info_service_id"); } else { goto handle_unusual; } if (input->ExpectTag(34)) goto parse_info_service_name; break; } // optional string info_service_name = 4 [default = ""]; case 4: { if (tag == 34) { parse_info_service_name: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_info_service_name())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_service_name().data(), this->info_service_name().length(), ::google::protobuf::internal::WireFormat::PARSE, "info_service_name"); } else { goto handle_unusual; } if (input->ExpectTag(42)) goto parse_info_service_address; break; } // optional string info_service_address = 5 [default = ""]; case 5: { if (tag == 42) { parse_info_service_address: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_info_service_address())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_service_address().data(), this->info_service_address().length(), ::google::protobuf::internal::WireFormat::PARSE, "info_service_address"); } else { goto handle_unusual; } if (input->ExpectTag(48)) goto parse_info_service_port; break; } // optional int32 info_service_port = 6 [default = -1]; case 6: { if (tag == 48) { parse_info_service_port: DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &info_service_port_))); set_has_info_service_port(); } else { goto handle_unusual; } if (input->ExpectTag(56)) goto parse_info_service_pid; break; } // optional int32 info_service_pid = 7 [default = -1]; case 7: { if (tag == 56) { parse_info_service_pid: DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &info_service_pid_))); set_has_info_service_pid(); } else { goto handle_unusual; } if (input->ExpectTag(64)) goto parse_info_service_module; break; } // optional int32 info_service_module = 8 [default = -1]; case 8: { if (tag == 64) { parse_info_service_module: DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &info_service_module_))); set_has_info_service_module(); } else { goto handle_unusual; } if (input->ExpectTag(74)) goto parse_info_mq_consumer_queue_name; break; } // optional string info_mq_consumer_queue_name = 9 [default = ""]; case 9: { if (tag == 74) { parse_info_mq_consumer_queue_name: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_info_mq_consumer_queue_name())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_mq_consumer_queue_name().data(), this->info_mq_consumer_queue_name().length(), ::google::protobuf::internal::WireFormat::PARSE, "info_mq_consumer_queue_name"); } else { goto handle_unusual; } if (input->ExpectTag(82)) goto parse_status_node; break; } // optional string status_node = 10 [default = ""]; case 10: { if (tag == 82) { parse_status_node: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_status_node())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_node().data(), this->status_node().length(), ::google::protobuf::internal::WireFormat::PARSE, "status_node"); } else { goto handle_unusual; } if (input->ExpectTag(90)) goto parse_status_check_id; break; } // optional string status_check_id = 11 [default = ""]; case 11: { if (tag == 90) { parse_status_check_id: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_status_check_id())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_check_id().data(), this->status_check_id().length(), ::google::protobuf::internal::WireFormat::PARSE, "status_check_id"); } else { goto handle_unusual; } if (input->ExpectTag(98)) goto parse_status_name; break; } // optional string status_name = 12 [default = ""]; case 12: { if (tag == 98) { parse_status_name: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_status_name())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_name().data(), this->status_name().length(), ::google::protobuf::internal::WireFormat::PARSE, "status_name"); } else { goto handle_unusual; } if (input->ExpectTag(106)) goto parse_status_status; break; } // optional string status_status = 13 [default = ""]; case 13: { if (tag == 106) { parse_status_status: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_status_status())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_status().data(), this->status_status().length(), ::google::protobuf::internal::WireFormat::PARSE, "status_status"); } else { goto handle_unusual; } if (input->ExpectTag(114)) goto parse_status_notes; break; } // optional string status_notes = 14 [default = ""]; case 14: { if (tag == 114) { parse_status_notes: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_status_notes())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_notes().data(), this->status_notes().length(), ::google::protobuf::internal::WireFormat::PARSE, "status_notes"); } else { goto handle_unusual; } if (input->ExpectTag(122)) goto parse_status_output; break; } // optional string status_output = 15 [default = ""]; case 15: { if (tag == 122) { parse_status_output: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_status_output())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_output().data(), this->status_output().length(), ::google::protobuf::internal::WireFormat::PARSE, "status_output"); } else { goto handle_unusual; } if (input->ExpectTag(130)) goto parse_status_service_id; break; } // optional string status_service_id = 16 [default = ""]; case 16: { if (tag == 130) { parse_status_service_id: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_status_service_id())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_service_id().data(), this->status_service_id().length(), ::google::protobuf::internal::WireFormat::PARSE, "status_service_id"); } else { goto handle_unusual; } if (input->ExpectTag(138)) goto parse_status_service_name; break; } // optional string status_service_name = 17 [default = ""]; case 17: { if (tag == 138) { parse_status_service_name: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_status_service_name())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_service_name().data(), this->status_service_name().length(), ::google::protobuf::internal::WireFormat::PARSE, "status_service_name"); } else { goto handle_unusual; } if (input->ExpectTag(146)) goto parse_registermodel; break; } // repeated .com.arges.file.proto.RegisterModelInfo registermodel = 18; case 18: { if (tag == 146) { parse_registermodel: DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( input, add_registermodel())); } else { goto handle_unusual; } if (input->ExpectTag(146)) goto parse_registermodel; if (input->ExpectTag(152)) goto parse_id; break; } // optional int64 id = 19 [default = -1]; case 19: { if (tag == 152) { parse_id: DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>( input, &id_))); set_has_id(); } else { goto handle_unusual; } if (input->ExpectTag(162)) goto parse_outer_net_ip; break; } // optional string outer_net_ip = 20 [default = ""]; case 20: { if (tag == 162) { parse_outer_net_ip: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_outer_net_ip())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->outer_net_ip().data(), this->outer_net_ip().length(), ::google::protobuf::internal::WireFormat::PARSE, "outer_net_ip"); } else { goto handle_unusual; } if (input->ExpectTag(168)) goto parse_outer_net_port; break; } // optional int32 outer_net_port = 21 [default = -1]; case 21: { if (tag == 168) { parse_outer_net_port: DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &outer_net_port_))); set_has_outer_net_port(); } else { goto handle_unusual; } if (input->ExpectTag(178)) goto parse_path; break; } // optional string path = 22 [default = ""]; case 22: { if (tag == 178) { parse_path: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_path())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->path().data(), this->path().length(), ::google::protobuf::internal::WireFormat::PARSE, "path"); } else { goto handle_unusual; } if (input->ExpectTag(186)) goto parse_server_code; break; } // optional string server_code = 23 [default = ""]; case 23: { if (tag == 186) { parse_server_code: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_server_code())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->server_code().data(), this->server_code().length(), ::google::protobuf::internal::WireFormat::PARSE, "server_code"); } else { goto handle_unusual; } if (input->ExpectTag(194)) goto parse_memo; break; } // optional string memo = 24 [default = ""]; case 24: { if (tag == 194) { parse_memo: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_memo())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->memo().data(), this->memo().length(), ::google::protobuf::internal::WireFormat::PARSE, "memo"); } else { goto handle_unusual; } if (input->ExpectTag(200)) goto parse_sort; break; } // optional int64 sort = 25 [default = -1]; case 25: { if (tag == 200) { parse_sort: DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>( input, &sort_))); set_has_sort(); } else { goto handle_unusual; } if (input->ExpectTag(208)) goto parse_is_onlie; break; } // optional int32 is_onlie = 26 [default = -1]; case 26: { if (tag == 208) { parse_is_onlie: DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &is_onlie_))); set_has_is_onlie(); } else { goto handle_unusual; } if (input->ExpectTag(218)) goto parse_domain; break; } // optional string domain = 27 [default = ""]; case 27: { if (tag == 218) { parse_domain: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_domain())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->domain().data(), this->domain().length(), ::google::protobuf::internal::WireFormat::PARSE, "domain"); } else { goto handle_unusual; } if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.ServiceInfoForRegister) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.ServiceInfoForRegister) return false; #undef DO_ } void ServiceInfoForRegister::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.ServiceInfoForRegister) // optional string info_node = 1 [default = ""]; if (has_info_node()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_node().data(), this->info_node().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_node"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 1, this->info_node(), output); } // optional string info_address = 2 [default = ""]; if (has_info_address()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_address().data(), this->info_address().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_address"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 2, this->info_address(), output); } // optional string info_service_id = 3 [default = ""]; if (has_info_service_id()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_service_id().data(), this->info_service_id().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_service_id"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 3, this->info_service_id(), output); } // optional string info_service_name = 4 [default = ""]; if (has_info_service_name()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_service_name().data(), this->info_service_name().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_service_name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 4, this->info_service_name(), output); } // optional string info_service_address = 5 [default = ""]; if (has_info_service_address()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_service_address().data(), this->info_service_address().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_service_address"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 5, this->info_service_address(), output); } // optional int32 info_service_port = 6 [default = -1]; if (has_info_service_port()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(6, this->info_service_port(), output); } // optional int32 info_service_pid = 7 [default = -1]; if (has_info_service_pid()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(7, this->info_service_pid(), output); } // optional int32 info_service_module = 8 [default = -1]; if (has_info_service_module()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(8, this->info_service_module(), output); } // optional string info_mq_consumer_queue_name = 9 [default = ""]; if (has_info_mq_consumer_queue_name()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_mq_consumer_queue_name().data(), this->info_mq_consumer_queue_name().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_mq_consumer_queue_name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 9, this->info_mq_consumer_queue_name(), output); } // optional string status_node = 10 [default = ""]; if (has_status_node()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_node().data(), this->status_node().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_node"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 10, this->status_node(), output); } // optional string status_check_id = 11 [default = ""]; if (has_status_check_id()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_check_id().data(), this->status_check_id().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_check_id"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 11, this->status_check_id(), output); } // optional string status_name = 12 [default = ""]; if (has_status_name()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_name().data(), this->status_name().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 12, this->status_name(), output); } // optional string status_status = 13 [default = ""]; if (has_status_status()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_status().data(), this->status_status().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_status"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 13, this->status_status(), output); } // optional string status_notes = 14 [default = ""]; if (has_status_notes()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_notes().data(), this->status_notes().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_notes"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 14, this->status_notes(), output); } // optional string status_output = 15 [default = ""]; if (has_status_output()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_output().data(), this->status_output().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_output"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 15, this->status_output(), output); } // optional string status_service_id = 16 [default = ""]; if (has_status_service_id()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_service_id().data(), this->status_service_id().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_service_id"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 16, this->status_service_id(), output); } // optional string status_service_name = 17 [default = ""]; if (has_status_service_name()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_service_name().data(), this->status_service_name().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_service_name"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 17, this->status_service_name(), output); } // repeated .com.arges.file.proto.RegisterModelInfo registermodel = 18; for (int i = 0; i < this->registermodel_size(); i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 18, this->registermodel(i), output); } // optional int64 id = 19 [default = -1]; if (has_id()) { ::google::protobuf::internal::WireFormatLite::WriteInt64(19, this->id(), output); } // optional string outer_net_ip = 20 [default = ""]; if (has_outer_net_ip()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->outer_net_ip().data(), this->outer_net_ip().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "outer_net_ip"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 20, this->outer_net_ip(), output); } // optional int32 outer_net_port = 21 [default = -1]; if (has_outer_net_port()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(21, this->outer_net_port(), output); } // optional string path = 22 [default = ""]; if (has_path()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->path().data(), this->path().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "path"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 22, this->path(), output); } // optional string server_code = 23 [default = ""]; if (has_server_code()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->server_code().data(), this->server_code().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "server_code"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 23, this->server_code(), output); } // optional string memo = 24 [default = ""]; if (has_memo()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->memo().data(), this->memo().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "memo"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 24, this->memo(), output); } // optional int64 sort = 25 [default = -1]; if (has_sort()) { ::google::protobuf::internal::WireFormatLite::WriteInt64(25, this->sort(), output); } // optional int32 is_onlie = 26 [default = -1]; if (has_is_onlie()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(26, this->is_onlie(), output); } // optional string domain = 27 [default = ""]; if (has_domain()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->domain().data(), this->domain().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "domain"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 27, this->domain(), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.ServiceInfoForRegister) } ::google::protobuf::uint8* ServiceInfoForRegister::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.ServiceInfoForRegister) // optional string info_node = 1 [default = ""]; if (has_info_node()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_node().data(), this->info_node().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_node"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 1, this->info_node(), target); } // optional string info_address = 2 [default = ""]; if (has_info_address()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_address().data(), this->info_address().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_address"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 2, this->info_address(), target); } // optional string info_service_id = 3 [default = ""]; if (has_info_service_id()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_service_id().data(), this->info_service_id().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_service_id"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 3, this->info_service_id(), target); } // optional string info_service_name = 4 [default = ""]; if (has_info_service_name()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_service_name().data(), this->info_service_name().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_service_name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 4, this->info_service_name(), target); } // optional string info_service_address = 5 [default = ""]; if (has_info_service_address()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_service_address().data(), this->info_service_address().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_service_address"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 5, this->info_service_address(), target); } // optional int32 info_service_port = 6 [default = -1]; if (has_info_service_port()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(6, this->info_service_port(), target); } // optional int32 info_service_pid = 7 [default = -1]; if (has_info_service_pid()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(7, this->info_service_pid(), target); } // optional int32 info_service_module = 8 [default = -1]; if (has_info_service_module()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(8, this->info_service_module(), target); } // optional string info_mq_consumer_queue_name = 9 [default = ""]; if (has_info_mq_consumer_queue_name()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->info_mq_consumer_queue_name().data(), this->info_mq_consumer_queue_name().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "info_mq_consumer_queue_name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 9, this->info_mq_consumer_queue_name(), target); } // optional string status_node = 10 [default = ""]; if (has_status_node()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_node().data(), this->status_node().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_node"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 10, this->status_node(), target); } // optional string status_check_id = 11 [default = ""]; if (has_status_check_id()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_check_id().data(), this->status_check_id().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_check_id"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 11, this->status_check_id(), target); } // optional string status_name = 12 [default = ""]; if (has_status_name()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_name().data(), this->status_name().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 12, this->status_name(), target); } // optional string status_status = 13 [default = ""]; if (has_status_status()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_status().data(), this->status_status().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_status"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 13, this->status_status(), target); } // optional string status_notes = 14 [default = ""]; if (has_status_notes()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_notes().data(), this->status_notes().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_notes"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 14, this->status_notes(), target); } // optional string status_output = 15 [default = ""]; if (has_status_output()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_output().data(), this->status_output().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_output"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 15, this->status_output(), target); } // optional string status_service_id = 16 [default = ""]; if (has_status_service_id()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_service_id().data(), this->status_service_id().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_service_id"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 16, this->status_service_id(), target); } // optional string status_service_name = 17 [default = ""]; if (has_status_service_name()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->status_service_name().data(), this->status_service_name().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "status_service_name"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 17, this->status_service_name(), target); } // repeated .com.arges.file.proto.RegisterModelInfo registermodel = 18; for (int i = 0; i < this->registermodel_size(); i++) { target = ::google::protobuf::internal::WireFormatLite:: WriteMessageNoVirtualToArray( 18, this->registermodel(i), target); } // optional int64 id = 19 [default = -1]; if (has_id()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(19, this->id(), target); } // optional string outer_net_ip = 20 [default = ""]; if (has_outer_net_ip()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->outer_net_ip().data(), this->outer_net_ip().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "outer_net_ip"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 20, this->outer_net_ip(), target); } // optional int32 outer_net_port = 21 [default = -1]; if (has_outer_net_port()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(21, this->outer_net_port(), target); } // optional string path = 22 [default = ""]; if (has_path()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->path().data(), this->path().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "path"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 22, this->path(), target); } // optional string server_code = 23 [default = ""]; if (has_server_code()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->server_code().data(), this->server_code().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "server_code"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 23, this->server_code(), target); } // optional string memo = 24 [default = ""]; if (has_memo()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->memo().data(), this->memo().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "memo"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 24, this->memo(), target); } // optional int64 sort = 25 [default = -1]; if (has_sort()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(25, this->sort(), target); } // optional int32 is_onlie = 26 [default = -1]; if (has_is_onlie()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(26, this->is_onlie(), target); } // optional string domain = 27 [default = ""]; if (has_domain()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->domain().data(), this->domain().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "domain"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 27, this->domain(), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.ServiceInfoForRegister) return target; } int ServiceInfoForRegister::ByteSize() const { int total_size = 0; if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { // optional string info_node = 1 [default = ""]; if (has_info_node()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->info_node()); } // optional string info_address = 2 [default = ""]; if (has_info_address()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->info_address()); } // optional string info_service_id = 3 [default = ""]; if (has_info_service_id()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->info_service_id()); } // optional string info_service_name = 4 [default = ""]; if (has_info_service_name()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->info_service_name()); } // optional string info_service_address = 5 [default = ""]; if (has_info_service_address()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->info_service_address()); } // optional int32 info_service_port = 6 [default = -1]; if (has_info_service_port()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->info_service_port()); } // optional int32 info_service_pid = 7 [default = -1]; if (has_info_service_pid()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->info_service_pid()); } // optional int32 info_service_module = 8 [default = -1]; if (has_info_service_module()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->info_service_module()); } } if (_has_bits_[8 / 32] & (0xffu << (8 % 32))) { // optional string info_mq_consumer_queue_name = 9 [default = ""]; if (has_info_mq_consumer_queue_name()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->info_mq_consumer_queue_name()); } // optional string status_node = 10 [default = ""]; if (has_status_node()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->status_node()); } // optional string status_check_id = 11 [default = ""]; if (has_status_check_id()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->status_check_id()); } // optional string status_name = 12 [default = ""]; if (has_status_name()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->status_name()); } // optional string status_status = 13 [default = ""]; if (has_status_status()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->status_status()); } // optional string status_notes = 14 [default = ""]; if (has_status_notes()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->status_notes()); } // optional string status_output = 15 [default = ""]; if (has_status_output()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->status_output()); } // optional string status_service_id = 16 [default = ""]; if (has_status_service_id()) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::StringSize( this->status_service_id()); } } if (_has_bits_[16 / 32] & (0xffu << (16 % 32))) { // optional string status_service_name = 17 [default = ""]; if (has_status_service_name()) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::StringSize( this->status_service_name()); } // optional int64 id = 19 [default = -1]; if (has_id()) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::Int64Size( this->id()); } // optional string outer_net_ip = 20 [default = ""]; if (has_outer_net_ip()) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::StringSize( this->outer_net_ip()); } // optional int32 outer_net_port = 21 [default = -1]; if (has_outer_net_port()) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->outer_net_port()); } // optional string path = 22 [default = ""]; if (has_path()) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::StringSize( this->path()); } // optional string server_code = 23 [default = ""]; if (has_server_code()) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::StringSize( this->server_code()); } // optional string memo = 24 [default = ""]; if (has_memo()) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::StringSize( this->memo()); } } if (_has_bits_[24 / 32] & (0xffu << (24 % 32))) { // optional int64 sort = 25 [default = -1]; if (has_sort()) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::Int64Size( this->sort()); } // optional int32 is_onlie = 26 [default = -1]; if (has_is_onlie()) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->is_onlie()); } // optional string domain = 27 [default = ""]; if (has_domain()) { total_size += 2 + ::google::protobuf::internal::WireFormatLite::StringSize( this->domain()); } } // repeated .com.arges.file.proto.RegisterModelInfo registermodel = 18; total_size += 2 * this->registermodel_size(); for (int i = 0; i < this->registermodel_size(); i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( this->registermodel(i)); } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void ServiceInfoForRegister::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const ServiceInfoForRegister* source = ::google::protobuf::internal::dynamic_cast_if_available<const ServiceInfoForRegister*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void ServiceInfoForRegister::MergeFrom(const ServiceInfoForRegister& from) { GOOGLE_CHECK_NE(&from, this); registermodel_.MergeFrom(from.registermodel_); if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) { if (from.has_info_node()) { set_info_node(from.info_node()); } if (from.has_info_address()) { set_info_address(from.info_address()); } if (from.has_info_service_id()) { set_info_service_id(from.info_service_id()); } if (from.has_info_service_name()) { set_info_service_name(from.info_service_name()); } if (from.has_info_service_address()) { set_info_service_address(from.info_service_address()); } if (from.has_info_service_port()) { set_info_service_port(from.info_service_port()); } if (from.has_info_service_pid()) { set_info_service_pid(from.info_service_pid()); } if (from.has_info_service_module()) { set_info_service_module(from.info_service_module()); } } if (from._has_bits_[8 / 32] & (0xffu << (8 % 32))) { if (from.has_info_mq_consumer_queue_name()) { set_info_mq_consumer_queue_name(from.info_mq_consumer_queue_name()); } if (from.has_status_node()) { set_status_node(from.status_node()); } if (from.has_status_check_id()) { set_status_check_id(from.status_check_id()); } if (from.has_status_name()) { set_status_name(from.status_name()); } if (from.has_status_status()) { set_status_status(from.status_status()); } if (from.has_status_notes()) { set_status_notes(from.status_notes()); } if (from.has_status_output()) { set_status_output(from.status_output()); } if (from.has_status_service_id()) { set_status_service_id(from.status_service_id()); } } if (from._has_bits_[16 / 32] & (0xffu << (16 % 32))) { if (from.has_status_service_name()) { set_status_service_name(from.status_service_name()); } if (from.has_id()) { set_id(from.id()); } if (from.has_outer_net_ip()) { set_outer_net_ip(from.outer_net_ip()); } if (from.has_outer_net_port()) { set_outer_net_port(from.outer_net_port()); } if (from.has_path()) { set_path(from.path()); } if (from.has_server_code()) { set_server_code(from.server_code()); } if (from.has_memo()) { set_memo(from.memo()); } } if (from._has_bits_[24 / 32] & (0xffu << (24 % 32))) { if (from.has_sort()) { set_sort(from.sort()); } if (from.has_is_onlie()) { set_is_onlie(from.is_onlie()); } if (from.has_domain()) { set_domain(from.domain()); } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void ServiceInfoForRegister::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void ServiceInfoForRegister::CopyFrom(const ServiceInfoForRegister& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool ServiceInfoForRegister::IsInitialized() const { return true; } void ServiceInfoForRegister::Swap(ServiceInfoForRegister* other) { if (other != this) { std::swap(info_node_, other->info_node_); std::swap(info_address_, other->info_address_); std::swap(info_service_id_, other->info_service_id_); std::swap(info_service_name_, other->info_service_name_); std::swap(info_service_address_, other->info_service_address_); std::swap(info_service_port_, other->info_service_port_); std::swap(info_service_pid_, other->info_service_pid_); std::swap(info_service_module_, other->info_service_module_); std::swap(info_mq_consumer_queue_name_, other->info_mq_consumer_queue_name_); std::swap(status_node_, other->status_node_); std::swap(status_check_id_, other->status_check_id_); std::swap(status_name_, other->status_name_); std::swap(status_status_, other->status_status_); std::swap(status_notes_, other->status_notes_); std::swap(status_output_, other->status_output_); std::swap(status_service_id_, other->status_service_id_); std::swap(status_service_name_, other->status_service_name_); registermodel_.Swap(&other->registermodel_); std::swap(id_, other->id_); std::swap(outer_net_ip_, other->outer_net_ip_); std::swap(outer_net_port_, other->outer_net_port_); std::swap(path_, other->path_); std::swap(server_code_, other->server_code_); std::swap(memo_, other->memo_); std::swap(sort_, other->sort_); std::swap(is_onlie_, other->is_onlie_); std::swap(domain_, other->domain_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata ServiceInfoForRegister::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = ServiceInfoForRegister_descriptor_; metadata.reflection = ServiceInfoForRegister_reflection_; return metadata; } // =================================================================== #ifndef _MSC_VER const int ReqServiceRegister::kServiceInfoFieldNumber; #endif // !_MSC_VER ReqServiceRegister::ReqServiceRegister() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.ReqServiceRegister) } void ReqServiceRegister::InitAsDefaultInstance() { serviceinfo_ = const_cast< ::com::arges::file::proto::ServiceInfoForRegister*>(&::com::arges::file::proto::ServiceInfoForRegister::default_instance()); } ReqServiceRegister::ReqServiceRegister(const ReqServiceRegister& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.ReqServiceRegister) } void ReqServiceRegister::SharedCtor() { _cached_size_ = 0; serviceinfo_ = NULL; ::memset(_has_bits_, 0, sizeof(_has_bits_)); } ReqServiceRegister::~ReqServiceRegister() { // @@protoc_insertion_point(destructor:com.arges.file.proto.ReqServiceRegister) SharedDtor(); } void ReqServiceRegister::SharedDtor() { if (this != default_instance_) { delete serviceinfo_; } } void ReqServiceRegister::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* ReqServiceRegister::descriptor() { protobuf_AssignDescriptorsOnce(); return ReqServiceRegister_descriptor_; } const ReqServiceRegister& ReqServiceRegister::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } ReqServiceRegister* ReqServiceRegister::default_instance_ = NULL; ReqServiceRegister* ReqServiceRegister::New() const { return new ReqServiceRegister; } void ReqServiceRegister::Clear() { if (has_serviceinfo()) { if (serviceinfo_ != NULL) serviceinfo_->::com::arges::file::proto::ServiceInfoForRegister::Clear(); } ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool ReqServiceRegister::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.ReqServiceRegister) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // required .com.arges.file.proto.ServiceInfoForRegister serviceInfo = 1; case 1: { if (tag == 10) { DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( input, mutable_serviceinfo())); } else { goto handle_unusual; } if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.ReqServiceRegister) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.ReqServiceRegister) return false; #undef DO_ } void ReqServiceRegister::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.ReqServiceRegister) // required .com.arges.file.proto.ServiceInfoForRegister serviceInfo = 1; if (has_serviceinfo()) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, this->serviceinfo(), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.ReqServiceRegister) } ::google::protobuf::uint8* ReqServiceRegister::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.ReqServiceRegister) // required .com.arges.file.proto.ServiceInfoForRegister serviceInfo = 1; if (has_serviceinfo()) { target = ::google::protobuf::internal::WireFormatLite:: WriteMessageNoVirtualToArray( 1, this->serviceinfo(), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.ReqServiceRegister) return target; } int ReqServiceRegister::ByteSize() const { int total_size = 0; if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { // required .com.arges.file.proto.ServiceInfoForRegister serviceInfo = 1; if (has_serviceinfo()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( this->serviceinfo()); } } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void ReqServiceRegister::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const ReqServiceRegister* source = ::google::protobuf::internal::dynamic_cast_if_available<const ReqServiceRegister*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void ReqServiceRegister::MergeFrom(const ReqServiceRegister& from) { GOOGLE_CHECK_NE(&from, this); if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) { if (from.has_serviceinfo()) { mutable_serviceinfo()->::com::arges::file::proto::ServiceInfoForRegister::MergeFrom(from.serviceinfo()); } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void ReqServiceRegister::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void ReqServiceRegister::CopyFrom(const ReqServiceRegister& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool ReqServiceRegister::IsInitialized() const { if ((_has_bits_[0] & 0x00000001) != 0x00000001) return false; return true; } void ReqServiceRegister::Swap(ReqServiceRegister* other) { if (other != this) { std::swap(serviceinfo_, other->serviceinfo_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata ReqServiceRegister::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = ReqServiceRegister_descriptor_; metadata.reflection = ReqServiceRegister_reflection_; return metadata; } // =================================================================== #ifndef _MSC_VER const int RspServiceRegister::kResultFieldNumber; const int RspServiceRegister::kDescribeFieldNumber; const int RspServiceRegister::kIdFieldNumber; const int RspServiceRegister::kServiceNumFieldNumber; #endif // !_MSC_VER RspServiceRegister::RspServiceRegister() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.RspServiceRegister) } void RspServiceRegister::InitAsDefaultInstance() { } RspServiceRegister::RspServiceRegister(const RspServiceRegister& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.RspServiceRegister) } void RspServiceRegister::SharedCtor() { ::google::protobuf::internal::GetEmptyString(); _cached_size_ = 0; result_ = -1; describe_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); id_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); service_num_ = -1; ::memset(_has_bits_, 0, sizeof(_has_bits_)); } RspServiceRegister::~RspServiceRegister() { // @@protoc_insertion_point(destructor:com.arges.file.proto.RspServiceRegister) SharedDtor(); } void RspServiceRegister::SharedDtor() { if (describe_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete describe_; } if (id_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete id_; } if (this != default_instance_) { } } void RspServiceRegister::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* RspServiceRegister::descriptor() { protobuf_AssignDescriptorsOnce(); return RspServiceRegister_descriptor_; } const RspServiceRegister& RspServiceRegister::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } RspServiceRegister* RspServiceRegister::default_instance_ = NULL; RspServiceRegister* RspServiceRegister::New() const { return new RspServiceRegister; } void RspServiceRegister::Clear() { if (_has_bits_[0 / 32] & 15) { result_ = -1; if (has_describe()) { if (describe_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { describe_->clear(); } } if (has_id()) { if (id_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { id_->clear(); } } service_num_ = -1; } ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool RspServiceRegister::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.RspServiceRegister) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // optional int32 result = 1 [default = -1]; case 1: { if (tag == 8) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &result_))); set_has_result(); } else { goto handle_unusual; } if (input->ExpectTag(18)) goto parse_describe; break; } // optional string describe = 2 [default = ""]; case 2: { if (tag == 18) { parse_describe: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_describe())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->describe().data(), this->describe().length(), ::google::protobuf::internal::WireFormat::PARSE, "describe"); } else { goto handle_unusual; } if (input->ExpectTag(26)) goto parse_id; break; } // optional string id = 3 [default = ""]; case 3: { if (tag == 26) { parse_id: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_id())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->id().data(), this->id().length(), ::google::protobuf::internal::WireFormat::PARSE, "id"); } else { goto handle_unusual; } if (input->ExpectTag(32)) goto parse_service_num; break; } // optional int32 service_num = 4 [default = -1]; case 4: { if (tag == 32) { parse_service_num: DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &service_num_))); set_has_service_num(); } else { goto handle_unusual; } if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.RspServiceRegister) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.RspServiceRegister) return false; #undef DO_ } void RspServiceRegister::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.RspServiceRegister) // optional int32 result = 1 [default = -1]; if (has_result()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->result(), output); } // optional string describe = 2 [default = ""]; if (has_describe()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->describe().data(), this->describe().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "describe"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 2, this->describe(), output); } // optional string id = 3 [default = ""]; if (has_id()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->id().data(), this->id().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "id"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 3, this->id(), output); } // optional int32 service_num = 4 [default = -1]; if (has_service_num()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(4, this->service_num(), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.RspServiceRegister) } ::google::protobuf::uint8* RspServiceRegister::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.RspServiceRegister) // optional int32 result = 1 [default = -1]; if (has_result()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->result(), target); } // optional string describe = 2 [default = ""]; if (has_describe()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->describe().data(), this->describe().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "describe"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 2, this->describe(), target); } // optional string id = 3 [default = ""]; if (has_id()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->id().data(), this->id().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "id"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 3, this->id(), target); } // optional int32 service_num = 4 [default = -1]; if (has_service_num()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(4, this->service_num(), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.RspServiceRegister) return target; } int RspServiceRegister::ByteSize() const { int total_size = 0; if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { // optional int32 result = 1 [default = -1]; if (has_result()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->result()); } // optional string describe = 2 [default = ""]; if (has_describe()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->describe()); } // optional string id = 3 [default = ""]; if (has_id()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->id()); } // optional int32 service_num = 4 [default = -1]; if (has_service_num()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->service_num()); } } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void RspServiceRegister::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const RspServiceRegister* source = ::google::protobuf::internal::dynamic_cast_if_available<const RspServiceRegister*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void RspServiceRegister::MergeFrom(const RspServiceRegister& from) { GOOGLE_CHECK_NE(&from, this); if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) { if (from.has_result()) { set_result(from.result()); } if (from.has_describe()) { set_describe(from.describe()); } if (from.has_id()) { set_id(from.id()); } if (from.has_service_num()) { set_service_num(from.service_num()); } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void RspServiceRegister::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void RspServiceRegister::CopyFrom(const RspServiceRegister& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool RspServiceRegister::IsInitialized() const { return true; } void RspServiceRegister::Swap(RspServiceRegister* other) { if (other != this) { std::swap(result_, other->result_); std::swap(describe_, other->describe_); std::swap(id_, other->id_); std::swap(service_num_, other->service_num_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata RspServiceRegister::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = RspServiceRegister_descriptor_; metadata.reflection = RspServiceRegister_reflection_; return metadata; } // =================================================================== #ifndef _MSC_VER const int ReqServiceLogout::kIdFieldNumber; #endif // !_MSC_VER ReqServiceLogout::ReqServiceLogout() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.ReqServiceLogout) } void ReqServiceLogout::InitAsDefaultInstance() { } ReqServiceLogout::ReqServiceLogout(const ReqServiceLogout& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.ReqServiceLogout) } void ReqServiceLogout::SharedCtor() { ::google::protobuf::internal::GetEmptyString(); _cached_size_ = 0; ::memset(_has_bits_, 0, sizeof(_has_bits_)); } ReqServiceLogout::~ReqServiceLogout() { // @@protoc_insertion_point(destructor:com.arges.file.proto.ReqServiceLogout) SharedDtor(); } void ReqServiceLogout::SharedDtor() { if (this != default_instance_) { } } void ReqServiceLogout::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* ReqServiceLogout::descriptor() { protobuf_AssignDescriptorsOnce(); return ReqServiceLogout_descriptor_; } const ReqServiceLogout& ReqServiceLogout::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } ReqServiceLogout* ReqServiceLogout::default_instance_ = NULL; ReqServiceLogout* ReqServiceLogout::New() const { return new ReqServiceLogout; } void ReqServiceLogout::Clear() { id_.Clear(); ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool ReqServiceLogout::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.ReqServiceLogout) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // repeated string id = 1; case 1: { if (tag == 10) { parse_id: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->add_id())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->id(this->id_size() - 1).data(), this->id(this->id_size() - 1).length(), ::google::protobuf::internal::WireFormat::PARSE, "id"); } else { goto handle_unusual; } if (input->ExpectTag(10)) goto parse_id; if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.ReqServiceLogout) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.ReqServiceLogout) return false; #undef DO_ } void ReqServiceLogout::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.ReqServiceLogout) // repeated string id = 1; for (int i = 0; i < this->id_size(); i++) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->id(i).data(), this->id(i).length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "id"); ::google::protobuf::internal::WireFormatLite::WriteString( 1, this->id(i), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.ReqServiceLogout) } ::google::protobuf::uint8* ReqServiceLogout::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.ReqServiceLogout) // repeated string id = 1; for (int i = 0; i < this->id_size(); i++) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->id(i).data(), this->id(i).length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "id"); target = ::google::protobuf::internal::WireFormatLite:: WriteStringToArray(1, this->id(i), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.ReqServiceLogout) return target; } int ReqServiceLogout::ByteSize() const { int total_size = 0; // repeated string id = 1; total_size += 1 * this->id_size(); for (int i = 0; i < this->id_size(); i++) { total_size += ::google::protobuf::internal::WireFormatLite::StringSize( this->id(i)); } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void ReqServiceLogout::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const ReqServiceLogout* source = ::google::protobuf::internal::dynamic_cast_if_available<const ReqServiceLogout*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void ReqServiceLogout::MergeFrom(const ReqServiceLogout& from) { GOOGLE_CHECK_NE(&from, this); id_.MergeFrom(from.id_); mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void ReqServiceLogout::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void ReqServiceLogout::CopyFrom(const ReqServiceLogout& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool ReqServiceLogout::IsInitialized() const { return true; } void ReqServiceLogout::Swap(ReqServiceLogout* other) { if (other != this) { id_.Swap(&other->id_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata ReqServiceLogout::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = ReqServiceLogout_descriptor_; metadata.reflection = ReqServiceLogout_reflection_; return metadata; } // =================================================================== #ifndef _MSC_VER const int RspServiceLogout::kResultFieldNumber; const int RspServiceLogout::kDescribeFieldNumber; #endif // !_MSC_VER RspServiceLogout::RspServiceLogout() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.RspServiceLogout) } void RspServiceLogout::InitAsDefaultInstance() { } RspServiceLogout::RspServiceLogout(const RspServiceLogout& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.RspServiceLogout) } void RspServiceLogout::SharedCtor() { ::google::protobuf::internal::GetEmptyString(); _cached_size_ = 0; result_ = -1; describe_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); ::memset(_has_bits_, 0, sizeof(_has_bits_)); } RspServiceLogout::~RspServiceLogout() { // @@protoc_insertion_point(destructor:com.arges.file.proto.RspServiceLogout) SharedDtor(); } void RspServiceLogout::SharedDtor() { if (describe_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete describe_; } if (this != default_instance_) { } } void RspServiceLogout::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* RspServiceLogout::descriptor() { protobuf_AssignDescriptorsOnce(); return RspServiceLogout_descriptor_; } const RspServiceLogout& RspServiceLogout::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } RspServiceLogout* RspServiceLogout::default_instance_ = NULL; RspServiceLogout* RspServiceLogout::New() const { return new RspServiceLogout; } void RspServiceLogout::Clear() { if (_has_bits_[0 / 32] & 3) { result_ = -1; if (has_describe()) { if (describe_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { describe_->clear(); } } } ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool RspServiceLogout::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.RspServiceLogout) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // optional int32 result = 1 [default = -1]; case 1: { if (tag == 8) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &result_))); set_has_result(); } else { goto handle_unusual; } if (input->ExpectTag(18)) goto parse_describe; break; } // optional string describe = 2 [default = ""]; case 2: { if (tag == 18) { parse_describe: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_describe())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->describe().data(), this->describe().length(), ::google::protobuf::internal::WireFormat::PARSE, "describe"); } else { goto handle_unusual; } if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.RspServiceLogout) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.RspServiceLogout) return false; #undef DO_ } void RspServiceLogout::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.RspServiceLogout) // optional int32 result = 1 [default = -1]; if (has_result()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->result(), output); } // optional string describe = 2 [default = ""]; if (has_describe()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->describe().data(), this->describe().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "describe"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 2, this->describe(), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.RspServiceLogout) } ::google::protobuf::uint8* RspServiceLogout::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.RspServiceLogout) // optional int32 result = 1 [default = -1]; if (has_result()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->result(), target); } // optional string describe = 2 [default = ""]; if (has_describe()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->describe().data(), this->describe().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "describe"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 2, this->describe(), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.RspServiceLogout) return target; } int RspServiceLogout::ByteSize() const { int total_size = 0; if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { // optional int32 result = 1 [default = -1]; if (has_result()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->result()); } // optional string describe = 2 [default = ""]; if (has_describe()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->describe()); } } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void RspServiceLogout::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const RspServiceLogout* source = ::google::protobuf::internal::dynamic_cast_if_available<const RspServiceLogout*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void RspServiceLogout::MergeFrom(const RspServiceLogout& from) { GOOGLE_CHECK_NE(&from, this); if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) { if (from.has_result()) { set_result(from.result()); } if (from.has_describe()) { set_describe(from.describe()); } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void RspServiceLogout::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void RspServiceLogout::CopyFrom(const RspServiceLogout& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool RspServiceLogout::IsInitialized() const { return true; } void RspServiceLogout::Swap(RspServiceLogout* other) { if (other != this) { std::swap(result_, other->result_); std::swap(describe_, other->describe_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata RspServiceLogout::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = RspServiceLogout_descriptor_; metadata.reflection = RspServiceLogout_reflection_; return metadata; } // =================================================================== #ifndef _MSC_VER const int ReqServiceInfoForQuery::kInfoServiceModuleFieldNumber; const int ReqServiceInfoForQuery::kTypeFieldNumber; const int ReqServiceInfoForQuery::kProjectDomainFieldNumber; #endif // !_MSC_VER ReqServiceInfoForQuery::ReqServiceInfoForQuery() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.ReqServiceInfoForQuery) } void ReqServiceInfoForQuery::InitAsDefaultInstance() { } ReqServiceInfoForQuery::ReqServiceInfoForQuery(const ReqServiceInfoForQuery& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.ReqServiceInfoForQuery) } void ReqServiceInfoForQuery::SharedCtor() { ::google::protobuf::internal::GetEmptyString(); _cached_size_ = 0; type_ = 0; projectdomain_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); ::memset(_has_bits_, 0, sizeof(_has_bits_)); } ReqServiceInfoForQuery::~ReqServiceInfoForQuery() { // @@protoc_insertion_point(destructor:com.arges.file.proto.ReqServiceInfoForQuery) SharedDtor(); } void ReqServiceInfoForQuery::SharedDtor() { if (projectdomain_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete projectdomain_; } if (this != default_instance_) { } } void ReqServiceInfoForQuery::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* ReqServiceInfoForQuery::descriptor() { protobuf_AssignDescriptorsOnce(); return ReqServiceInfoForQuery_descriptor_; } const ReqServiceInfoForQuery& ReqServiceInfoForQuery::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } ReqServiceInfoForQuery* ReqServiceInfoForQuery::default_instance_ = NULL; ReqServiceInfoForQuery* ReqServiceInfoForQuery::New() const { return new ReqServiceInfoForQuery; } void ReqServiceInfoForQuery::Clear() { if (_has_bits_[0 / 32] & 6) { type_ = 0; if (has_projectdomain()) { if (projectdomain_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { projectdomain_->clear(); } } } info_service_module_.Clear(); ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool ReqServiceInfoForQuery::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.ReqServiceInfoForQuery) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // repeated int32 info_service_module = 1; case 1: { if (tag == 8) { parse_info_service_module: DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( 1, 8, input, this->mutable_info_service_module()))); } else if (tag == 10) { DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitiveNoInline< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, this->mutable_info_service_module()))); } else { goto handle_unusual; } if (input->ExpectTag(8)) goto parse_info_service_module; if (input->ExpectTag(16)) goto parse_type; break; } // optional int32 type = 2; case 2: { if (tag == 16) { parse_type: DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &type_))); set_has_type(); } else { goto handle_unusual; } if (input->ExpectTag(26)) goto parse_projectDomain; break; } // optional string projectDomain = 3; case 3: { if (tag == 26) { parse_projectDomain: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_projectdomain())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->projectdomain().data(), this->projectdomain().length(), ::google::protobuf::internal::WireFormat::PARSE, "projectdomain"); } else { goto handle_unusual; } if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.ReqServiceInfoForQuery) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.ReqServiceInfoForQuery) return false; #undef DO_ } void ReqServiceInfoForQuery::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.ReqServiceInfoForQuery) // repeated int32 info_service_module = 1; for (int i = 0; i < this->info_service_module_size(); i++) { ::google::protobuf::internal::WireFormatLite::WriteInt32( 1, this->info_service_module(i), output); } // optional int32 type = 2; if (has_type()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->type(), output); } // optional string projectDomain = 3; if (has_projectdomain()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->projectdomain().data(), this->projectdomain().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "projectdomain"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 3, this->projectdomain(), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.ReqServiceInfoForQuery) } ::google::protobuf::uint8* ReqServiceInfoForQuery::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.ReqServiceInfoForQuery) // repeated int32 info_service_module = 1; for (int i = 0; i < this->info_service_module_size(); i++) { target = ::google::protobuf::internal::WireFormatLite:: WriteInt32ToArray(1, this->info_service_module(i), target); } // optional int32 type = 2; if (has_type()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->type(), target); } // optional string projectDomain = 3; if (has_projectdomain()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->projectdomain().data(), this->projectdomain().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "projectdomain"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 3, this->projectdomain(), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.ReqServiceInfoForQuery) return target; } int ReqServiceInfoForQuery::ByteSize() const { int total_size = 0; if (_has_bits_[1 / 32] & (0xffu << (1 % 32))) { // optional int32 type = 2; if (has_type()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->type()); } // optional string projectDomain = 3; if (has_projectdomain()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->projectdomain()); } } // repeated int32 info_service_module = 1; { int data_size = 0; for (int i = 0; i < this->info_service_module_size(); i++) { data_size += ::google::protobuf::internal::WireFormatLite:: Int32Size(this->info_service_module(i)); } total_size += 1 * this->info_service_module_size() + data_size; } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void ReqServiceInfoForQuery::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const ReqServiceInfoForQuery* source = ::google::protobuf::internal::dynamic_cast_if_available<const ReqServiceInfoForQuery*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void ReqServiceInfoForQuery::MergeFrom(const ReqServiceInfoForQuery& from) { GOOGLE_CHECK_NE(&from, this); info_service_module_.MergeFrom(from.info_service_module_); if (from._has_bits_[1 / 32] & (0xffu << (1 % 32))) { if (from.has_type()) { set_type(from.type()); } if (from.has_projectdomain()) { set_projectdomain(from.projectdomain()); } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void ReqServiceInfoForQuery::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void ReqServiceInfoForQuery::CopyFrom(const ReqServiceInfoForQuery& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool ReqServiceInfoForQuery::IsInitialized() const { return true; } void ReqServiceInfoForQuery::Swap(ReqServiceInfoForQuery* other) { if (other != this) { info_service_module_.Swap(&other->info_service_module_); std::swap(type_, other->type_); std::swap(projectdomain_, other->projectdomain_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata ReqServiceInfoForQuery::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = ReqServiceInfoForQuery_descriptor_; metadata.reflection = ReqServiceInfoForQuery_reflection_; return metadata; } // =================================================================== #ifndef _MSC_VER const int RspServiceInfoForQuery::kServiceInfoFieldNumber; #endif // !_MSC_VER RspServiceInfoForQuery::RspServiceInfoForQuery() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.RspServiceInfoForQuery) } void RspServiceInfoForQuery::InitAsDefaultInstance() { } RspServiceInfoForQuery::RspServiceInfoForQuery(const RspServiceInfoForQuery& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.RspServiceInfoForQuery) } void RspServiceInfoForQuery::SharedCtor() { _cached_size_ = 0; ::memset(_has_bits_, 0, sizeof(_has_bits_)); } RspServiceInfoForQuery::~RspServiceInfoForQuery() { // @@protoc_insertion_point(destructor:com.arges.file.proto.RspServiceInfoForQuery) SharedDtor(); } void RspServiceInfoForQuery::SharedDtor() { if (this != default_instance_) { } } void RspServiceInfoForQuery::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* RspServiceInfoForQuery::descriptor() { protobuf_AssignDescriptorsOnce(); return RspServiceInfoForQuery_descriptor_; } const RspServiceInfoForQuery& RspServiceInfoForQuery::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } RspServiceInfoForQuery* RspServiceInfoForQuery::default_instance_ = NULL; RspServiceInfoForQuery* RspServiceInfoForQuery::New() const { return new RspServiceInfoForQuery; } void RspServiceInfoForQuery::Clear() { service_info_.Clear(); ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool RspServiceInfoForQuery::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.RspServiceInfoForQuery) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // repeated .com.arges.file.proto.ServiceInfoForRegister service_info = 1; case 1: { if (tag == 10) { parse_service_info: DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( input, add_service_info())); } else { goto handle_unusual; } if (input->ExpectTag(10)) goto parse_service_info; if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.RspServiceInfoForQuery) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.RspServiceInfoForQuery) return false; #undef DO_ } void RspServiceInfoForQuery::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.RspServiceInfoForQuery) // repeated .com.arges.file.proto.ServiceInfoForRegister service_info = 1; for (int i = 0; i < this->service_info_size(); i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, this->service_info(i), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.RspServiceInfoForQuery) } ::google::protobuf::uint8* RspServiceInfoForQuery::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.RspServiceInfoForQuery) // repeated .com.arges.file.proto.ServiceInfoForRegister service_info = 1; for (int i = 0; i < this->service_info_size(); i++) { target = ::google::protobuf::internal::WireFormatLite:: WriteMessageNoVirtualToArray( 1, this->service_info(i), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.RspServiceInfoForQuery) return target; } int RspServiceInfoForQuery::ByteSize() const { int total_size = 0; // repeated .com.arges.file.proto.ServiceInfoForRegister service_info = 1; total_size += 1 * this->service_info_size(); for (int i = 0; i < this->service_info_size(); i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( this->service_info(i)); } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void RspServiceInfoForQuery::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const RspServiceInfoForQuery* source = ::google::protobuf::internal::dynamic_cast_if_available<const RspServiceInfoForQuery*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void RspServiceInfoForQuery::MergeFrom(const RspServiceInfoForQuery& from) { GOOGLE_CHECK_NE(&from, this); service_info_.MergeFrom(from.service_info_); mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void RspServiceInfoForQuery::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void RspServiceInfoForQuery::CopyFrom(const RspServiceInfoForQuery& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool RspServiceInfoForQuery::IsInitialized() const { return true; } void RspServiceInfoForQuery::Swap(RspServiceInfoForQuery* other) { if (other != this) { service_info_.Swap(&other->service_info_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata RspServiceInfoForQuery::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = RspServiceInfoForQuery_descriptor_; metadata.reflection = RspServiceInfoForQuery_reflection_; return metadata; } // =================================================================== #ifndef _MSC_VER const int ReqServiceModify_ServiceModify::kTypeFieldNumber; const int ReqServiceModify_ServiceModify::kInfosFieldNumber; #endif // !_MSC_VER ReqServiceModify_ServiceModify::ReqServiceModify_ServiceModify() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.ReqServiceModify.ServiceModify) } void ReqServiceModify_ServiceModify::InitAsDefaultInstance() { } ReqServiceModify_ServiceModify::ReqServiceModify_ServiceModify(const ReqServiceModify_ServiceModify& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.ReqServiceModify.ServiceModify) } void ReqServiceModify_ServiceModify::SharedCtor() { _cached_size_ = 0; type_ = -1; ::memset(_has_bits_, 0, sizeof(_has_bits_)); } ReqServiceModify_ServiceModify::~ReqServiceModify_ServiceModify() { // @@protoc_insertion_point(destructor:com.arges.file.proto.ReqServiceModify.ServiceModify) SharedDtor(); } void ReqServiceModify_ServiceModify::SharedDtor() { if (this != default_instance_) { } } void ReqServiceModify_ServiceModify::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* ReqServiceModify_ServiceModify::descriptor() { protobuf_AssignDescriptorsOnce(); return ReqServiceModify_ServiceModify_descriptor_; } const ReqServiceModify_ServiceModify& ReqServiceModify_ServiceModify::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } ReqServiceModify_ServiceModify* ReqServiceModify_ServiceModify::default_instance_ = NULL; ReqServiceModify_ServiceModify* ReqServiceModify_ServiceModify::New() const { return new ReqServiceModify_ServiceModify; } void ReqServiceModify_ServiceModify::Clear() { type_ = -1; infos_.Clear(); ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool ReqServiceModify_ServiceModify::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.ReqServiceModify.ServiceModify) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // optional int32 type = 1 [default = -1]; case 1: { if (tag == 8) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &type_))); set_has_type(); } else { goto handle_unusual; } if (input->ExpectTag(18)) goto parse_infos; break; } // repeated .com.arges.file.proto.ServiceInfoForRegister infos = 2; case 2: { if (tag == 18) { parse_infos: DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( input, add_infos())); } else { goto handle_unusual; } if (input->ExpectTag(18)) goto parse_infos; if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.ReqServiceModify.ServiceModify) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.ReqServiceModify.ServiceModify) return false; #undef DO_ } void ReqServiceModify_ServiceModify::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.ReqServiceModify.ServiceModify) // optional int32 type = 1 [default = -1]; if (has_type()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->type(), output); } // repeated .com.arges.file.proto.ServiceInfoForRegister infos = 2; for (int i = 0; i < this->infos_size(); i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, this->infos(i), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.ReqServiceModify.ServiceModify) } ::google::protobuf::uint8* ReqServiceModify_ServiceModify::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.ReqServiceModify.ServiceModify) // optional int32 type = 1 [default = -1]; if (has_type()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->type(), target); } // repeated .com.arges.file.proto.ServiceInfoForRegister infos = 2; for (int i = 0; i < this->infos_size(); i++) { target = ::google::protobuf::internal::WireFormatLite:: WriteMessageNoVirtualToArray( 2, this->infos(i), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.ReqServiceModify.ServiceModify) return target; } int ReqServiceModify_ServiceModify::ByteSize() const { int total_size = 0; if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { // optional int32 type = 1 [default = -1]; if (has_type()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->type()); } } // repeated .com.arges.file.proto.ServiceInfoForRegister infos = 2; total_size += 1 * this->infos_size(); for (int i = 0; i < this->infos_size(); i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( this->infos(i)); } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void ReqServiceModify_ServiceModify::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const ReqServiceModify_ServiceModify* source = ::google::protobuf::internal::dynamic_cast_if_available<const ReqServiceModify_ServiceModify*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void ReqServiceModify_ServiceModify::MergeFrom(const ReqServiceModify_ServiceModify& from) { GOOGLE_CHECK_NE(&from, this); infos_.MergeFrom(from.infos_); if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) { if (from.has_type()) { set_type(from.type()); } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void ReqServiceModify_ServiceModify::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void ReqServiceModify_ServiceModify::CopyFrom(const ReqServiceModify_ServiceModify& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool ReqServiceModify_ServiceModify::IsInitialized() const { return true; } void ReqServiceModify_ServiceModify::Swap(ReqServiceModify_ServiceModify* other) { if (other != this) { std::swap(type_, other->type_); infos_.Swap(&other->infos_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata ReqServiceModify_ServiceModify::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = ReqServiceModify_ServiceModify_descriptor_; metadata.reflection = ReqServiceModify_ServiceModify_reflection_; return metadata; } // ------------------------------------------------------------------- #ifndef _MSC_VER const int ReqServiceModify::kDosFieldNumber; #endif // !_MSC_VER ReqServiceModify::ReqServiceModify() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.ReqServiceModify) } void ReqServiceModify::InitAsDefaultInstance() { } ReqServiceModify::ReqServiceModify(const ReqServiceModify& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.ReqServiceModify) } void ReqServiceModify::SharedCtor() { _cached_size_ = 0; ::memset(_has_bits_, 0, sizeof(_has_bits_)); } ReqServiceModify::~ReqServiceModify() { // @@protoc_insertion_point(destructor:com.arges.file.proto.ReqServiceModify) SharedDtor(); } void ReqServiceModify::SharedDtor() { if (this != default_instance_) { } } void ReqServiceModify::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* ReqServiceModify::descriptor() { protobuf_AssignDescriptorsOnce(); return ReqServiceModify_descriptor_; } const ReqServiceModify& ReqServiceModify::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } ReqServiceModify* ReqServiceModify::default_instance_ = NULL; ReqServiceModify* ReqServiceModify::New() const { return new ReqServiceModify; } void ReqServiceModify::Clear() { dos_.Clear(); ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool ReqServiceModify::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.ReqServiceModify) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // repeated .com.arges.file.proto.ReqServiceModify.ServiceModify dos = 1; case 1: { if (tag == 10) { parse_dos: DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( input, add_dos())); } else { goto handle_unusual; } if (input->ExpectTag(10)) goto parse_dos; if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.ReqServiceModify) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.ReqServiceModify) return false; #undef DO_ } void ReqServiceModify::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.ReqServiceModify) // repeated .com.arges.file.proto.ReqServiceModify.ServiceModify dos = 1; for (int i = 0; i < this->dos_size(); i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 1, this->dos(i), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.ReqServiceModify) } ::google::protobuf::uint8* ReqServiceModify::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.ReqServiceModify) // repeated .com.arges.file.proto.ReqServiceModify.ServiceModify dos = 1; for (int i = 0; i < this->dos_size(); i++) { target = ::google::protobuf::internal::WireFormatLite:: WriteMessageNoVirtualToArray( 1, this->dos(i), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.ReqServiceModify) return target; } int ReqServiceModify::ByteSize() const { int total_size = 0; // repeated .com.arges.file.proto.ReqServiceModify.ServiceModify dos = 1; total_size += 1 * this->dos_size(); for (int i = 0; i < this->dos_size(); i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( this->dos(i)); } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void ReqServiceModify::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const ReqServiceModify* source = ::google::protobuf::internal::dynamic_cast_if_available<const ReqServiceModify*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void ReqServiceModify::MergeFrom(const ReqServiceModify& from) { GOOGLE_CHECK_NE(&from, this); dos_.MergeFrom(from.dos_); mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void ReqServiceModify::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void ReqServiceModify::CopyFrom(const ReqServiceModify& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool ReqServiceModify::IsInitialized() const { return true; } void ReqServiceModify::Swap(ReqServiceModify* other) { if (other != this) { dos_.Swap(&other->dos_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata ReqServiceModify::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = ReqServiceModify_descriptor_; metadata.reflection = ReqServiceModify_reflection_; return metadata; } // =================================================================== #ifndef _MSC_VER const int ReqMysqlServiceModify::kOprTypeFieldNumber; const int ReqMysqlServiceModify::kServiceInfoFieldNumber; #endif // !_MSC_VER ReqMysqlServiceModify::ReqMysqlServiceModify() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.ReqMysqlServiceModify) } void ReqMysqlServiceModify::InitAsDefaultInstance() { } ReqMysqlServiceModify::ReqMysqlServiceModify(const ReqMysqlServiceModify& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.ReqMysqlServiceModify) } void ReqMysqlServiceModify::SharedCtor() { _cached_size_ = 0; oprtype_ = -1; ::memset(_has_bits_, 0, sizeof(_has_bits_)); } ReqMysqlServiceModify::~ReqMysqlServiceModify() { // @@protoc_insertion_point(destructor:com.arges.file.proto.ReqMysqlServiceModify) SharedDtor(); } void ReqMysqlServiceModify::SharedDtor() { if (this != default_instance_) { } } void ReqMysqlServiceModify::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* ReqMysqlServiceModify::descriptor() { protobuf_AssignDescriptorsOnce(); return ReqMysqlServiceModify_descriptor_; } const ReqMysqlServiceModify& ReqMysqlServiceModify::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } ReqMysqlServiceModify* ReqMysqlServiceModify::default_instance_ = NULL; ReqMysqlServiceModify* ReqMysqlServiceModify::New() const { return new ReqMysqlServiceModify; } void ReqMysqlServiceModify::Clear() { oprtype_ = -1; service_info_.Clear(); ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool ReqMysqlServiceModify::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.ReqMysqlServiceModify) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // required int32 oprType = 1 [default = -1]; case 1: { if (tag == 8) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &oprtype_))); set_has_oprtype(); } else { goto handle_unusual; } if (input->ExpectTag(18)) goto parse_service_info; break; } // repeated .com.arges.file.proto.ServiceInfoForRegister service_info = 2; case 2: { if (tag == 18) { parse_service_info: DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual( input, add_service_info())); } else { goto handle_unusual; } if (input->ExpectTag(18)) goto parse_service_info; if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.ReqMysqlServiceModify) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.ReqMysqlServiceModify) return false; #undef DO_ } void ReqMysqlServiceModify::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.ReqMysqlServiceModify) // required int32 oprType = 1 [default = -1]; if (has_oprtype()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->oprtype(), output); } // repeated .com.arges.file.proto.ServiceInfoForRegister service_info = 2; for (int i = 0; i < this->service_info_size(); i++) { ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray( 2, this->service_info(i), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.ReqMysqlServiceModify) } ::google::protobuf::uint8* ReqMysqlServiceModify::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.ReqMysqlServiceModify) // required int32 oprType = 1 [default = -1]; if (has_oprtype()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->oprtype(), target); } // repeated .com.arges.file.proto.ServiceInfoForRegister service_info = 2; for (int i = 0; i < this->service_info_size(); i++) { target = ::google::protobuf::internal::WireFormatLite:: WriteMessageNoVirtualToArray( 2, this->service_info(i), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.ReqMysqlServiceModify) return target; } int ReqMysqlServiceModify::ByteSize() const { int total_size = 0; if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { // required int32 oprType = 1 [default = -1]; if (has_oprtype()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->oprtype()); } } // repeated .com.arges.file.proto.ServiceInfoForRegister service_info = 2; total_size += 1 * this->service_info_size(); for (int i = 0; i < this->service_info_size(); i++) { total_size += ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual( this->service_info(i)); } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void ReqMysqlServiceModify::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const ReqMysqlServiceModify* source = ::google::protobuf::internal::dynamic_cast_if_available<const ReqMysqlServiceModify*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void ReqMysqlServiceModify::MergeFrom(const ReqMysqlServiceModify& from) { GOOGLE_CHECK_NE(&from, this); service_info_.MergeFrom(from.service_info_); if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) { if (from.has_oprtype()) { set_oprtype(from.oprtype()); } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void ReqMysqlServiceModify::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void ReqMysqlServiceModify::CopyFrom(const ReqMysqlServiceModify& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool ReqMysqlServiceModify::IsInitialized() const { if ((_has_bits_[0] & 0x00000001) != 0x00000001) return false; return true; } void ReqMysqlServiceModify::Swap(ReqMysqlServiceModify* other) { if (other != this) { std::swap(oprtype_, other->oprtype_); service_info_.Swap(&other->service_info_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata ReqMysqlServiceModify::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = ReqMysqlServiceModify_descriptor_; metadata.reflection = ReqMysqlServiceModify_reflection_; return metadata; } // =================================================================== #ifndef _MSC_VER const int RspMysqlServiceModify::kResultFieldNumber; const int RspMysqlServiceModify::kDescribeFieldNumber; const int RspMysqlServiceModify::kIdFieldNumber; #endif // !_MSC_VER RspMysqlServiceModify::RspMysqlServiceModify() : ::google::protobuf::Message() { SharedCtor(); // @@protoc_insertion_point(constructor:com.arges.file.proto.RspMysqlServiceModify) } void RspMysqlServiceModify::InitAsDefaultInstance() { } RspMysqlServiceModify::RspMysqlServiceModify(const RspMysqlServiceModify& from) : ::google::protobuf::Message() { SharedCtor(); MergeFrom(from); // @@protoc_insertion_point(copy_constructor:com.arges.file.proto.RspMysqlServiceModify) } void RspMysqlServiceModify::SharedCtor() { ::google::protobuf::internal::GetEmptyString(); _cached_size_ = 0; result_ = -1; describe_ = const_cast< ::std::string*>(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); ::memset(_has_bits_, 0, sizeof(_has_bits_)); } RspMysqlServiceModify::~RspMysqlServiceModify() { // @@protoc_insertion_point(destructor:com.arges.file.proto.RspMysqlServiceModify) SharedDtor(); } void RspMysqlServiceModify::SharedDtor() { if (describe_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { delete describe_; } if (this != default_instance_) { } } void RspMysqlServiceModify::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* RspMysqlServiceModify::descriptor() { protobuf_AssignDescriptorsOnce(); return RspMysqlServiceModify_descriptor_; } const RspMysqlServiceModify& RspMysqlServiceModify::default_instance() { if (default_instance_ == NULL) protobuf_AddDesc_ServiceRegisterBean_2eproto(); return *default_instance_; } RspMysqlServiceModify* RspMysqlServiceModify::default_instance_ = NULL; RspMysqlServiceModify* RspMysqlServiceModify::New() const { return new RspMysqlServiceModify; } void RspMysqlServiceModify::Clear() { if (_has_bits_[0 / 32] & 3) { result_ = -1; if (has_describe()) { if (describe_ != &::google::protobuf::internal::GetEmptyStringAlreadyInited()) { describe_->clear(); } } } id_.Clear(); ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); } bool RspMysqlServiceModify::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:com.arges.file.proto.RspMysqlServiceModify) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // optional int32 result = 1 [default = -1]; case 1: { if (tag == 8) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>( input, &result_))); set_has_result(); } else { goto handle_unusual; } if (input->ExpectTag(18)) goto parse_describe; break; } // optional string describe = 2 [default = ""]; case 2: { if (tag == 18) { parse_describe: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->mutable_describe())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->describe().data(), this->describe().length(), ::google::protobuf::internal::WireFormat::PARSE, "describe"); } else { goto handle_unusual; } if (input->ExpectTag(26)) goto parse_id; break; } // repeated string id = 3; case 3: { if (tag == 26) { parse_id: DO_(::google::protobuf::internal::WireFormatLite::ReadString( input, this->add_id())); ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->id(this->id_size() - 1).data(), this->id(this->id_size() - 1).length(), ::google::protobuf::internal::WireFormat::PARSE, "id"); } else { goto handle_unusual; } if (input->ExpectTag(26)) goto parse_id; if (input->ExpectAtEnd()) goto success; break; } default: { handle_unusual: if (tag == 0 || ::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:com.arges.file.proto.RspMysqlServiceModify) return true; failure: // @@protoc_insertion_point(parse_failure:com.arges.file.proto.RspMysqlServiceModify) return false; #undef DO_ } void RspMysqlServiceModify::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:com.arges.file.proto.RspMysqlServiceModify) // optional int32 result = 1 [default = -1]; if (has_result()) { ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->result(), output); } // optional string describe = 2 [default = ""]; if (has_describe()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->describe().data(), this->describe().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "describe"); ::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased( 2, this->describe(), output); } // repeated string id = 3; for (int i = 0; i < this->id_size(); i++) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->id(i).data(), this->id(i).length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "id"); ::google::protobuf::internal::WireFormatLite::WriteString( 3, this->id(i), output); } if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); } // @@protoc_insertion_point(serialize_end:com.arges.file.proto.RspMysqlServiceModify) } ::google::protobuf::uint8* RspMysqlServiceModify::SerializeWithCachedSizesToArray( ::google::protobuf::uint8* target) const { // @@protoc_insertion_point(serialize_to_array_start:com.arges.file.proto.RspMysqlServiceModify) // optional int32 result = 1 [default = -1]; if (has_result()) { target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->result(), target); } // optional string describe = 2 [default = ""]; if (has_describe()) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->describe().data(), this->describe().length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "describe"); target = ::google::protobuf::internal::WireFormatLite::WriteStringToArray( 2, this->describe(), target); } // repeated string id = 3; for (int i = 0; i < this->id_size(); i++) { ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( this->id(i).data(), this->id(i).length(), ::google::protobuf::internal::WireFormat::SERIALIZE, "id"); target = ::google::protobuf::internal::WireFormatLite:: WriteStringToArray(3, this->id(i), target); } if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); } // @@protoc_insertion_point(serialize_to_array_end:com.arges.file.proto.RspMysqlServiceModify) return target; } int RspMysqlServiceModify::ByteSize() const { int total_size = 0; if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { // optional int32 result = 1 [default = -1]; if (has_result()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int32Size( this->result()); } // optional string describe = 2 [default = ""]; if (has_describe()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( this->describe()); } } // repeated string id = 3; total_size += 1 * this->id_size(); for (int i = 0; i < this->id_size(); i++) { total_size += ::google::protobuf::internal::WireFormatLite::StringSize( this->id(i)); } if (!unknown_fields().empty()) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( unknown_fields()); } GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = total_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void RspMysqlServiceModify::MergeFrom(const ::google::protobuf::Message& from) { GOOGLE_CHECK_NE(&from, this); const RspMysqlServiceModify* source = ::google::protobuf::internal::dynamic_cast_if_available<const RspMysqlServiceModify*>( &from); if (source == NULL) { ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { MergeFrom(*source); } } void RspMysqlServiceModify::MergeFrom(const RspMysqlServiceModify& from) { GOOGLE_CHECK_NE(&from, this); id_.MergeFrom(from.id_); if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) { if (from.has_result()) { set_result(from.result()); } if (from.has_describe()) { set_describe(from.describe()); } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } void RspMysqlServiceModify::CopyFrom(const ::google::protobuf::Message& from) { if (&from == this) return; Clear(); MergeFrom(from); } void RspMysqlServiceModify::CopyFrom(const RspMysqlServiceModify& from) { if (&from == this) return; Clear(); MergeFrom(from); } bool RspMysqlServiceModify::IsInitialized() const { return true; } void RspMysqlServiceModify::Swap(RspMysqlServiceModify* other) { if (other != this) { std::swap(result_, other->result_); std::swap(describe_, other->describe_); id_.Swap(&other->id_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); } } ::google::protobuf::Metadata RspMysqlServiceModify::GetMetadata() const { protobuf_AssignDescriptorsOnce(); ::google::protobuf::Metadata metadata; metadata.descriptor = RspMysqlServiceModify_descriptor_; metadata.reflection = RspMysqlServiceModify_reflection_; return metadata; } // @@protoc_insertion_point(namespace_scope) } // namespace proto } // namespace file } // namespace arges } // namespace com // @@protoc_insertion_point(global_scope)
[ "13003633971@163.com" ]
13003633971@163.com
7e5071c1a249572d0b314445bf38658af3b99495
dd80a584130ef1a0333429ba76c1cee0eb40df73
/frameworks/native/libs/binder/IAppOpsCallback.cpp
e0aad2308d36a7f551f077689da48907d24ba968
[ "MIT", "LicenseRef-scancode-unicode", "Apache-2.0" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
C++
false
false
2,153
cpp
/* * Copyright (C) 2013 The Android Open Source Project * * 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. */ #define LOG_TAG "AppOpsCallback" #include <binder/IAppOpsCallback.h> #include <utils/Debug.h> #include <utils/Log.h> #include <binder/Parcel.h> #include <utils/String8.h> #include <private/binder/Static.h> namespace android { // ---------------------------------------------------------------------- class BpAppOpsCallback : public BpInterface<IAppOpsCallback> { public: BpAppOpsCallback(const sp<IBinder>& impl) : BpInterface<IAppOpsCallback>(impl) { } virtual void opChanged(int32_t op, const String16& packageName) { Parcel data, reply; data.writeInterfaceToken(IAppOpsCallback::getInterfaceDescriptor()); data.writeInt32(op); data.writeString16(packageName); remote()->transact(OP_CHANGED_TRANSACTION, data, &reply); } }; IMPLEMENT_META_INTERFACE(AppOpsCallback, "com.android.internal.app.IAppOpsCallback"); // ---------------------------------------------------------------------- status_t BnAppOpsCallback::onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) { switch(code) { case OP_CHANGED_TRANSACTION: { CHECK_INTERFACE(IAppOpsCallback, data, reply); int32_t op = data.readInt32(); String16 packageName = data.readString16(); opChanged(op, packageName); reply->writeNoException(); return NO_ERROR; } break; default: return BBinder::onTransact(code, data, reply, flags); } } }; // namespace android
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
fafeb6ea7780dbcc534d3487eaab8eadaff8ef1a
ea1a5b0acc253d5771a84ba83593354053c755e7
/21.6-16.1/21.6-16.1/test.cpp
e84c5a95ced334dfb526d512f02b7ebd147a4940
[]
no_license
CKlittleluck/C
cb1cd88382c61e75e1ab23a5ee359193da1ded3e
48dbea13e9a54c1c30d4afff1424334c13e5ce2a
refs/heads/master
2021-11-18T07:22:35.720498
2021-08-31T14:05:48
2021-08-31T14:05:48
250,755,504
0
0
null
null
null
null
UTF-8
C++
false
false
302
cpp
#include <iostream> using namespace std; #define ADD(x,y) ((x) + (y)) #define CMP(x,y) ((x) > (y)) int main() { double a, b, c; while (cin >> a >> b >> c) { if (CMP(ADD(a, b), c) && CMP(ADD(a, c), b) && CMP(ADD(b, c), a)) cout << "Yes" << endl; else cout << "No" << endl; } return 0; }
[ "1130018485@qq.com" ]
1130018485@qq.com
9a2b275ee0b18ef87cfe880e07c036855f0ea758
b9c67e44cdb974ce151eb3005498fc32844123d9
/workspace_cpp/BooleanGraph/src/recipes/recipes_loader.hpp
76a7916892314a33daa9192dc79954ffea5985c9
[]
no_license
labrax/codigosic_santanche
c14c70506af1439c7de9697290ac376351da380b
eef0c55222d9798d6ed399878892048163499947
refs/heads/master
2020-12-24T05:11:14.656300
2016-06-28T16:43:11
2016-06-28T16:43:11
41,826,150
0
0
null
null
null
null
UTF-8
C++
false
false
681
hpp
/* * RecipesLoader.h * * Created on: Sep 14, 2015 * Author: vroth */ #ifndef SRC_RECIPESLOADER_HPP_ #define SRC_RECIPESLOADER_HPP_ #include <map> #include <string> #include <vector> #include "recipe.hpp" class RecipesLoader { private: unsigned int names_counter; unsigned int recipes_counter; FILE * fp; std::map<std::string, unsigned int> map_names; std::vector<Recipe *> recipes; unsigned int getIngredientId(std::string name); public: RecipesLoader(); virtual ~RecipesLoader(); void readFile(); void computeLine(char * pais, char * line); void printIngredientNamesId(); std::vector<Recipe *> getRecipes(); }; #endif /* SRC_RECIPESLOADER_HPP_ */
[ "labrax@gmail.com" ]
labrax@gmail.com
c3a4ad518fb291dd12b3ad5bbc963b33dca0f653
cc39291a754570e5f09d7659746397465c617189
/LordOfTank/Public/Weapon/ArmorPiercingProjectile.h
b7c4c39f2e585569c89378b4dafaac05e5099f83
[]
no_license
xmfkdlrjs4/LordOfTank
269bf7311ebf050a75fa6a73d140ff6ae3608956
cb7f4065aac2d95d27b4fec579828dc5ebfd4bf4
refs/heads/master
2020-05-24T09:00:54.736378
2017-03-27T18:32:50
2017-03-27T18:32:50
84,841,960
0
0
null
null
null
null
UTF-8
C++
false
false
546
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "Weapon/Projectile.h" #include "ArmorPiercingProjectile.generated.h" /** * */ UCLASS() class LORDOFTANK_API AArmorPiercingProjectile : public AProjectile { GENERATED_BODY() public: AArmorPiercingProjectile(); /** called when projectile hits something */ UFUNCTION() virtual void OnHit(UPrimitiveComponent* HitComp, AActor* OtherActor, UPrimitiveComponent* OtherComp, FVector NormalImpulse, const FHitResult& Hit) override; };
[ "modori439@gmail.com" ]
modori439@gmail.com
119f388009f7418228d425467a060eace1b00f7f
e680718836cc68a9845ede290e033d2099629c9f
/xwzgServerSource/AccountServer/T_Index.h
3d7d35ad78d5d617d0567a1dee523be35fb65f00
[]
no_license
liu-jack/sxkmgf
77ebe2de8113b8bb7d63b87d71d721df0af86da8
5aa37b3efe49c3573a9169bcf0888f6ba8517254
refs/heads/master
2020-06-28T21:41:05.823423
2018-09-28T17:30:26
2018-09-28T17:30:26
null
0
0
null
null
null
null
GB18030
C++
false
false
2,223
h
// 索引类,用于建立数据表之间的快速查询。加入的KEY不能重复 // 仙剑修,2001.12.18 ////////////////////////////////////////////////////////////////////// #ifndef INDEX_H #define INDEX_H #include "Define.h" //#include "basefunc.h" #pragma warning(disable:4786) #include <map> using namespace std; /////////////////////////////////////////////////////////////////////// //#define MORECHECK //??? 加强检测, 但降低效率。重复添加会出错 /////////////////////////////////////////////////////////////////////// //#define LogSave printf #define INDEX_PARA class K, class D, D ERR #define INDEX_PARA2 K, D, ERR template < INDEX_PARA > class CIndex { public: CIndex() {} virtual ~CIndex() { if(m_map.size()) LogSave("WARNING: CIndex destruction in not empty[%d].", m_map.size()); } public: bool Add(K key, D data); bool Del(K key); bool IsIn(K key); D operator[](K key); void ClearAll() { m_map.clear(); } typedef map<K, D> MAPINDEX; typedef typename MAPINDEX::iterator iterator; K Key(iterator iter) { return iter->first; } D Data(iterator iter) { return iter->second; } iterator Begin() { return m_map.begin(); } iterator End() { return m_map.end(); } DWORD Size() { return m_map.size();} protected: MAPINDEX m_map; }; template < INDEX_PARA > bool CIndex<INDEX_PARA2>::Add(K key, D data) { #ifdef MORECHECK if(m_map.find(key) ==m_map.end()) #endif { m_map[key] = data; return true; } LogSave("ERROR: CIndex::Add() attempt add again. refused."); return false; } template < INDEX_PARA > bool CIndex<INDEX_PARA2>::Del(K key) { #ifdef MORECHECK if(m_map.find(key) !=m_map.end()) #endif { m_map.erase(key); return true; } LogSave("ERROR: CIndex::Del() attempt del again. refused."); return false; } template < INDEX_PARA > bool CIndex<INDEX_PARA2>::IsIn(K key) { if(m_map.find(key) !=m_map.end()) { return true; } return false; } template < INDEX_PARA > D CIndex<INDEX_PARA2>::operator[](K key) { MAPINDEX::iterator iter; if((iter=m_map.find(key)) !=m_map.end()) { return iter->second; } //? 因为有时会用不存在的ID为参数 LogSave("ERROR: CIndex operator[]() not found key."); return ERR; } #endif // INDEX_H
[ "43676169+pablones@users.noreply.github.com" ]
43676169+pablones@users.noreply.github.com
23bc1d621b772ae0b3f2e393e9fe0ec00390cbfb
0d1e16d41663efca9191b51576bf09d64e805623
/Преподователь № 1/ДЗ№11/12 work.cpp
ce4385b586fff887e7f411071b4a9d029c91f9e2
[]
no_license
lukianchykov/Flash_C
ddd4ce697952d45d09b1f36dfda9e2ffcc55d758
9d6e120155ebe9b674a087687bf99f2d5d9c070e
refs/heads/master
2021-07-13T17:22:22.216004
2017-09-18T17:31:05
2017-09-18T17:31:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
311
cpp
#include <iostream> using namespace std; void main() { int value; cout << "Enter number\n"; cin >> value; int lastDigit = 10; while (value != 0) { if (value % 10 > lastDigit) { cout << "Does not match"; break; } lastDigit = value % 10; value /= 10; } if (value == 0) cout << "Match"; }
[ "lukigor61@gmail.com" ]
lukigor61@gmail.com
37427622ee3968f981d2b13560e914f1eef51ec5
8af50772544313eca16d5f91dac5189e46fd0bb0
/Tests/CDC_MySQL_TestsSuite.h
7bb9e55a8ad6728b380edace3faa1fb8e32e91ca
[]
no_license
jjzhang166/CDC_MySQL
463fc12a6ae7c3190bc2d846cbb8779cf997d545
cd5b2147483ac1f71007ebbb85cabcdec548d5a3
refs/heads/master
2021-06-25T05:40:03.836099
2017-02-26T09:41:53
2017-02-26T09:41:53
103,227,273
0
0
null
null
null
null
UTF-8
C++
false
false
213
h
#ifndef CppDBTestsSuite_INCLUDED #define CppDBTestsSuite_INCLUDED #include "CppUnit/TestSuite.h" class CDC_MySQL_TestsSuite { public: static CppUnit::Test* suite(); }; #endif // CppDBTestsSuite_INCLUDED
[ "degui liu" ]
degui liu
41cf2f8fb0cec1a3cda0b0236a4d098edddf5e7c
31a5da841f221e14709b191aa50f36f9fed5b0c6
/Game/Game.h
ca7401ea5ae6e079dd393f50decdb8a35946ee58
[ "MIT" ]
permissive
BrunoFCM/ProjetoAeda
7a50c477a983cac8d57a1bd2e7ec1d080a166e01
224f08e379c3bc4e7c57826a95d26370731304d7
refs/heads/master
2021-10-10T12:20:36.906520
2019-01-10T16:53:23
2019-01-10T16:53:23
155,564,773
0
0
MIT
2019-01-09T00:03:18
2018-10-31T13:46:40
C++
UTF-8
C++
false
false
13,790
h
#ifndef SRC_GAME_H_ #define SRC_GAME_H_ #include <iostream> #include <string> #include <vector> #include <fstream> #include <unordered_set> #include "../Date/Date.h" #include "../Interval/Interval.h" #include "../PlaySession/PlaySession.h" using namespace std; class Date; class Interval; class PlaySession; /** * @brief Struct auxiliar para a tabela de hash */ struct UserHash { int operator() (const string &em) const //temporary hash function { int hash = 0; for(auto c : em) { hash += 37*c; } return hash; } bool operator() (const string &em1, const string &em2) const { return em1 == em2; } }; typedef unordered_set<string, UserHash, UserHash> HashTabUser; /** * Classe base Game */ class Game { protected: unsigned int id; //identificador unico string title; //nome double price; //preco de aquisicao double base_price; //preco de aquisicao base Date release; //data de lancamento Interval age_range; //intervalo de idades vector<string> platform; //plataformas disponiveis vector<string> genre; //genero string developer; //empresa que o desenvolveu vector<double> price_history; //historial de precos de aquisicao unsigned int player_base; //numero de jogadores /******** ********/ /******** PARTE 2 ********/ /******** ********/ HashTabUser sleepingUsers; //tabela de hash de utilizadores adormecidos public: /** * @brief Construtor da classe Game * @param title Nome do jogo * @param price Preco de aquisicao do jogo * @param release Data de lancamento do jogo * @param age_range Faixa etaria a que se tem de pertencer para se poder jogar * @param platforms Vetor de plataformas para as quais o jogo se encontra disponivel * @param genres Vetor de generos dos jogos * @param developer Empresa responsavel pela criacao do jogo */ Game(const string &title,const double &price,const Date &release,const Interval &age_range,const vector<string> &platforms,const vector<string> &genres,const string &developer); /** * @brief Destrutor da classe Game */ virtual ~Game(){} /** * @brief Membro-funcao que retorna o identificador unico de um jogo * @return Retorna o identificador unico de um jogo */ unsigned int getId() const; /** * @brief Membro-funcao que retorna o titulo de um jogo * @return Retorna o titulo de um jogo */ string getTitle() const; /** * @brief Membro-funcao que retorna o preco de aquisicao de um jogo * @return Retorna o preco de aquisicao de um jogo */ double getPrice() const; /** * @brief Membro-funcao que retorna o preco de aquisicao base de um jogo * @return Retorna o preco de aquisicao base de um jogo */ double getBasePrice() const; /** * @brief Membro-funcao que retorna a data de lancamento de um jogo * @return Retorna a data de lancamento de um jogo */ Date getRelease() const; /** * @brief Membro-funcao que retorna a faixa etaria a que se tem de pertencer para se poder jogar * @return Retorna um intervalo de idades */ Interval getAge() const; /** * @brief Membro-funcao que retorna um vetor de plataformas para as quais o jogo se encontra disponivel * @return Retorna um vetor de plataformas */ vector<string> getPlatforms() const; /** * @brief Membro-funcao que retorna um vetor de strings correspondentes aos generos dos jogos * @return Retorna um vetor de strings correspondentes aos generos dos jogos */ vector<string> getGenre() const; /** * @brief Membro-funcao que retorna uma string correspondente ao nome da empresa que desenvolveu o jogo * @return Retorna o nome da empresa */ string getDeveloper() const; /** * @brief Membro-funcao que retorna o historial de precos de aquisicao do jogo * @return Retorna o historial de precos de aquisicao do jogo */ vector<double> getPriceHist() const; /** * @brief Membro-funcao que retorna um vetor de strings correspondentes à base de jogadores do jogo * @return Retorna o valor de player_base, correspondente ao numero de jogadores */ unsigned int getPlayerBase() const; /** * @brief Devolve um vetor com todos os updates feitos ao jogo * @return Retorna um vetor vazio */ virtual vector<Date> getUpdates() const; /** * @brief Overload do operador == para jogos * @param game Jogo com qual e comparado * @return Retorna true se o id dos dois jogos for igual e false caso contrario */ bool operator==(Game &game); /** * @brief Altera o preco atual do jogo * @param newPrice Novo preco do jogo */ void changePrice(const double &newPrice); /** * @brief Define um desconto para um jogo * @param percentage Desconto a definir */ void discountPrice(const unsigned int &percentage); /** * @brief Altera o preço base do jogo * @param newPrice Novo preco base do jogo */ void changeBasePrice(const double &newPrice); /** * @brief Altera o preco para o preco base */ void revertToPrice(); /** * @brief Adiciona um utilizador a base de jogadores de jogo */ void addUser(); /** * @brief Membro puramente virtual que permite obter informacao sobre um determinado jogo. Encontra-se implementado nas classes derivadas Home e Online */ virtual void printInfoGame() const = 0; /** * @brief Membro puramente virtual que permite obter informacao relativamente ao jogo ser Home ou Online */ virtual bool isHomeTitle() const = 0; /** * @brief Membro virtual utilizavel apenas pela classe derivada Home */ virtual void addUpdate(Date date); /** * @brief Membro puramente virtual utilizavel apenas pela classe derivada Online (e respetivas derivadas), devolvendo um vetor vazio para outras classes */ virtual vector<PlaySession*> getPlayHistory() const; /** * @brief Acrescenta uma PlaySession ao vetor de sessoes ao jogo online (nas outras classes, a funcao retorna sem executar nada) * @param sess Pointer para a PlaySession a adicionar */ virtual void addSession(PlaySession *sess); /** * @brief Funcao virtual que passa para uma ostream a informacao de um jogo * @param info Ostream para onde e passada a informacao de um jogo */ virtual void giveInfoGame(ostream &info) const; /******** ********/ /******** PARTE 2 ********/ /******** ********/ /** * @brief Funcao que adiciona um jogador adormecido a hash * @param em String do email do utilizador */ void addSleepingUser(string em); /** * @brief Funcao que remove um jogador adormecido da hash * @param em String do email do utilizador */ void removeSleepingUser(string em); /** * @brief Apaga a hash table de jogadores adormecidos */ void deleteSleepingUsers(); /** * @brief Função que imprime os utilizadores adormecidos no ecra */ void printSleepingUsers(); /** * @brief Funcao que passa para uma ostream os utilizadores adormecidos * @param info Ofstream para onde sao passados os utilizadores adormecidos */ void giveInfoSleepingUsers(ostream &info); }; /** * Classe Online derivada da classe Game */ class Online : public Game { private: int play_time; //tempo jogado vector<PlaySession*> play_history; //historial para cada jogo online que inclui: quando foi jogado, por quanto tempo e em que plataforma public: /** * @brief Construtor da classe Online * @param title Nome do jogo * @param price Preco de aquisicao do jogo * @param release Data de lancamento do jogo * @param age_range Faixa etaria a que se tem de pertencer para se poder jogar * @param platforms Vetor de plataformas para as quais o jogo se encontra disponivel * @param genres Vetor de generos dos jogos * @param developer Empresa responsavel pela criacao do jogo */ Online(const string &title, const double &price, const Date &release, const Interval &age_range, const vector<string> &platforms, const vector<string> &genres, const string &developer); /** * @brief Destrutor da classe Online */ virtual ~Online() {}; /** * @brief Devolve o tempo total jogado */ int getPlayTime() const; /** * @brief Devolve o valor 0 */ virtual double getPrice() const; /** * @brief Permite aceder ao conjunto de sessoes efetuadas no jogo * @return Vetor apontador para o conjunto de objetos de classe PlaySession */ vector<PlaySession*> getPlayHistory() const; /** * @brief Acrescenta uma PlaySession ao vetor de sessoes ao jogo online (nas outras classes, a funcao retorna sem executar nada) * @param sess Pointer para a PlaySession a adicionar */ void addSession(PlaySession *sess); /** * @brief Funcao que permite obter informacao relativamente ao jogo ser Home ou Online * @return True se o jogo for Home */ bool isHomeTitle() const; /** * @brief Funcao virtual que passa para uma ofstream a informacao de um jogo online * @param info Ostream para onde e passada a informacao de um jogo online */ virtual void giveInfoGame(ofstream &info) const{}; }; /** * Classe FixedSubsc derivada da classe Online */ class FixedSubsc : public Online { private: double fixed_price; //preco fixo public: /** * @brief Construtor da classe FixedSubsc * @param title Nome do jogo * @param price Preco de aquisicao do jogo * @param release Data de lancamento do jogo * @param age_range Faixa etaria a que se tem de pertencer para se poder jogar * @param platforms Vetor de plataformas para as quais o jogo se encontra disponivel * @param genres Vetor de generos dos jogos * @param developer Empresa responsavel pela criacao do jogo * @param fixed_price Preco de subscricao fixa */ FixedSubsc(const string &title, const double &price, const Date &release, const Interval &age_range, const vector<string> &platforms, const vector<string> &genres, const string &developer, const double &fixed_price); /** * @brief Devolve o preco da subscricao fixa * @return Preco da subscricao fixe */ double getPrice() const; /** * @brief Imprime informacao relativamente ao jogo */ void printInfoGame() const; /** * @brief Funcao virtual que passa para uma fstream a informacao de um jogo online de subscricao fixa * @param info Ofstream para onde e passada a informacao de um jogo online de subscricao fixa */ void giveInfoGame(ofstream &info) const; }; /** * Classe VariableSubsc derivada da classe Online */ class VariableSubsc : public Online { private: double price_hour; //preco variavel: custo do jogo por hora public: /** * @brief Construtor da classe VariableSubsc * @param title Nome do jogo * @param price Preco de aquisicao do jogo * @param release Data de lancamento do jogo * @param age_range Faixa etaria a que se tem de pertencer para se poder jogar * @param platforms Vetor de plataformas para as quais o jogo se encontra disponivel * @param genres Vetor de generos dos jogos * @param developer Empresa responsavel pela criacao do jogo * @param price_hour Preco pago por cada hora jogada */ VariableSubsc(const string &title, const double &price, const Date &release, const Interval &age_range, const vector<string> &platforms, const vector<string> &genres, const string &developer, const double &price_hour); /** * @brief Devolve o preco pago atual, dependente do preco por hora e pelo tempo jogado * @return Preco pago atual */ double getPriceHour() const; /** * @brief Imprime informacao relativamente ao jogo */ void printInfoGame() const ; /** * @brief Funcao virtual que passa para uma fstream a informacao de um jogo online de subscricao variavel * @param info Ofstream para onde e passada a informacao de um jogo online de subscricao variavel */ void giveInfoGame(ofstream &info) const; }; /** * Classe Home derivada da classe Game */ class Home : public Game { private: vector<Date> updates; //data das atualizacoes em que o utilizador fez download do respetivo titulo (1 euro cada) public: /** * @brief Construtor da classe Home * @param title Nome do jogo * @param price Preco de aquisicao do jogo * @param release Data de lancamento do jogo * @param age_range Faixa etaria a que se tem de pertencer para se poder jogar * @param platforms Vetor de plataformas para as quais o jogo se encontra disponivel * @param genres Vetor de generos dos jogos * @param developer Empresa responsavel pela criacao do jogo */ Home(const string &title, const double &price, const Date &release, const Interval &age_range, const vector<string> &platforms, const vector<string> &genres, const string &developer); /** * @brief Devolve um vetor com todos os updates feitos ao jogo * @return Vetor de datas de update */ vector<Date> getUpdates() const; /** * @brief Acrescenta um update ao vetor de update * @param date Data do update a acrescentar */ void addUpdate(Date date); /** * @brief Imprime informacao relativamente ao jogo */ void printInfoGame() const; /** * @brief Funcao que permite obter informacao relativamente ao jogo ser Home ou Online * @return True se o jogo for Home */ bool isHomeTitle() const; /** * @brief Funcao virtual que passa para uma fstream a informacao de um jogo home * @param info Ofstream para onde e passada a informacao de um jogo home */ void giveInfoGame(ofstream &info) const; }; #endif /* SRC_GAME_H_ */
[ "noreply@github.com" ]
BrunoFCM.noreply@github.com
cbeab70edc7740e29810a2b4e0b0bc7bd007d619
33223560c920a053146540ea0c4d35056fe4d966
/Subject.h
e1d0076f70693c0083bca001501c2a5e3343d68a
[]
no_license
pzins/Sudoku
22cc0db79dddfdd97d2d0b6cfe8dc760113baea0
527157479cc69fa4e27cba8c4fd770ab7a699465
refs/heads/master
2021-05-30T13:18:41.144508
2016-02-15T15:21:45
2016-02-15T15:21:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
207
h
#include <vector> class Observer; class Subject { private: std::vector<Observer*> observers; public: void notify(); void addObserver(Observer& _obs); bool removeObserver(Observer& _obs); };
[ "zins.pierre@gmail.com" ]
zins.pierre@gmail.com
356bd479c7af2997a228497bfedfb78ec1f76a11
c31ad9981bb2760c6f389e9a6cf8a6893e9423e8
/inexlib/ourex/HEPVis/include/HEPVis/nodekits/SoIdealTrackKit.h
79fbabdb6d103c95bc66bdd74f9553259aa637f0
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
gbarrand/osc_vis_for_LHCb
0582d7ed6734d9716619eb0fccc69904381529d8
2ba864c4475f988192c9799f5be85f1abf88c364
refs/heads/master
2021-10-25T21:32:51.600843
2021-10-17T07:45:20
2021-10-17T07:45:20
140,073,663
0
2
null
2021-10-17T07:45:20
2018-07-07T10:11:36
C++
UTF-8
C++
false
false
5,020
h
#ifndef INCLUDE_SoIdealTrackKit #define INCLUDE_SoIdealTrackKit #include <HEPVis/ParticleChar.h> //adding fields to Kit #ifdef WIN32 #include <SoWinEnterScope.h> #endif #include <Inventor/SbLinear.h> #include <Inventor/nodekits/SoBaseKit.h> #include <Inventor/nodes/SoSubNode.h> #include <Inventor/fields/SoSFVec3f.h> #include <Inventor/fields/SoSFFloat.h> #include <Inventor/fields/SoSFString.h> //basic kit #include <Inventor/nodekits/SoShapeKit.h> #include <Inventor/sensors/SoSensor.h> #include <Inventor/sensors/SoNodeSensor.h> #include <Inventor/sensors/SoFieldSensor.h> // SoIdealTrackKit.h file... #ifdef WIN32 #include <SoWinLeaveScope.h> #endif /*! \class SoIdealTrackKit SoIdealTrackKit.h HEPVis/nodekits/SoIdealTrackKit.h * \brief Represents an ideal track (i.e., a perfect helix) as a NURB * * \author G. Alverson * * SoIdealTrackKit is a dynamic kit in that it checks against a global time to * determine how it represents a track. As the time changes, the track grows to * match. * * Times are measured in 0.01 nanosecond ticks, magnetic fields in Tesla, and distances in meters. */ class SoIdealTrackKit : public SoShapeKit { SO_KIT_HEADER(SoIdealTrackKit); SO_KIT_CATALOG_ENTRY_HEADER(debugPoints); public: //! default constructor SoIdealTrackKit(); SoSFFloat Phi; SoSFFloat Radius; //! Radius/tan(theta), theta being the dip angle SoSFFloat Zeta; SoSFVec3f Vertex; //! time at beginning of visible track SoSFFloat T0; //! timespan of visible track SoSFFloat DeltaT; //! time at beginning of track (not necessarily visible) SoSFFloat T_0; //! time at end of track (not necessarily visible) SoSFFloat T_1; SoSFString ParticleType; //! for those w/o access to this kit, invoking this method will provide a basic representation SoSFNode alternateRep; void updateTrack(); //! sets the magnetic field (Tesla) static void set_bfield(float bf); //! max r from origin (in m): a limit is required to keep the tracks from heading to infinity static void set_rExtent(float rExtent); //! max abs(z) from origin (in m) static void set_zExtent(float zExtent); /*! initialize the track using one of the initTrack methods * \arg \c vx vertex location in the x dimension \arg \c vy vertex location in the y dimension \arg \c vz vertex location in the z dimension \arg \c px momentum (at the vertex) in the x direction \arg \c py momentum (at the vertex) in the y direction \arg \c pz momentum (at the vertex) in the z direction \arg \c t0 time of the creation of the vertex \arg \c p_code the type of particle */ void initTrack(double *vx, double *vy, double *vz, double *px, double *py, double *pz, float *t0, ParticleChar *p_code){ initTrack(*vx, *vy, *vz, *px, *py, *pz, *t0, p_code);} void initTrack(double vx, double vy, double vz, double px, double py, double pz, float t0, ParticleChar *p_code) ; void initTrack(double vx, double vy, double vz, double px, double py, double pz, float t0, int p_id) { initTrack(vx, vy, vz, px, py, pz, t0, ParticleChar::getByGeantID(p_id));}; void print_me() const; virtual void generateAlternateRep(SoAction*); virtual void clearAlternateRep(); SoINTERNAL public: #if defined(WIN32) && defined(BUILDING_DLL) // When building the node as a DLL under Win32 we must explicitly // declare this entry point as visible outside the DLL. The macro // BUILDING_DLL is defined in the node's source file. _declspec(dllexport) #endif //! This method must be invoke to initialize the class. static void initClass(); protected: ParticleChar *particleChar; float t_0; //volatile copy of T_0 float t_1; //volatile copy of T_1 float ptot; //total momentum float pt; //transverse momentum float charge; ~SoIdealTrackKit(); SoFieldSensor *fieldSensorT0; SoFieldSensor *fieldSensorDeltaT; virtual SbBool setUpConnections(SbBool onOff, SbBool doItAlways = FALSE); static void fieldsChangedCB(void *data, SoSensor *sens ); void init_endpts(); float time_to_angle(float time); float z_to_time(float z); float time_to_z(float time); float angle_to_time(float angle); SbVec2f time_to_xy(float angle); static const double TWOPI; static const int NORDER; static const double SPEEDOLIGHT; static double rmax; //max radius in central tracker static double zmax; //max z extent static double bfield; //constant bfield }; #ifdef WIN32 #include <SoWinEnterScope.h> #endif #endif
[ "guy.barrand@gmail.com" ]
guy.barrand@gmail.com
f1d1ecca421cad40839f7acd6539262e371830b4
55a4fa8f0fe859d9683b5dd826a9b8378a6503df
/c++/string2.cpp
22def7b7309dbc8385d0da0121569a844c928726
[]
no_license
rongc5/test
399536df25d3d3e71cac8552e573f6e2447de631
acb4f9254ecf647b8f36743899ae38a901b01aa6
refs/heads/master
2023-06-26T05:38:37.147507
2023-06-15T03:33:08
2023-06-15T03:33:08
33,905,442
2
1
null
null
null
null
UTF-8
C++
false
false
625
cpp
#include <iostream> #include <string> #include <sstream> #include "stdio.h" #include "stdlib.h" #include <pthread.h> #include <string.h> using namespace std; class A { public: operator std::string () const { stringstream stream; stream << "hello\n"; //cout << stream.str(); return stream.str(); } }; int main(int argc, char *argv[]) { A a; //cout << str.c_str(); //a.string(); //cout << a; string str; sprintf((char *)str.c_str(), "%s %s", "hello world", "123456"); printf("%s\n", str.c_str()); return 0; }
[ "zhangming025251@gmail.com" ]
zhangming025251@gmail.com
37b75e8f5d4681a35f0d2be28b7c50e0e4a0d0f9
cf6c0b34d0fe2dd2d7ffad64d5ced1bd647b0a4c
/src/fpga_driver.cpp
1f6fbbcd31e0f5e65d113b6a754a51a4d926f79d
[]
no_license
OlegShishlyannikov/Commutator
a80e4a118493b1ea0a7ac7d3f8de435ce9dc7be2
9056577e308f6c96c7e0f62900bf3a4c02269a52
refs/heads/master
2020-04-11T16:05:47.958843
2019-09-25T01:57:27
2019-09-25T01:57:27
161,912,644
0
0
null
null
null
null
UTF-8
C++
false
false
1,485
cpp
#include "fpga_driver.hpp" fpga_driver::fpga_driver() { fpga_driver::fpga_reset(); fpga_driver::fpga_chip_deselect(); } void fpga_driver::fpga_start() { GPIO_SetBits(FPGA_GPIO_PORT, FPGA_GPIO_START_PIN); } void fpga_driver::fpga_stop() { GPIO_ResetBits(FPGA_GPIO_PORT, FPGA_GPIO_START_PIN); } void fpga_driver::fpga_reset() { GPIO_SetBits(FPGA_GPIO_PORT, FPGA_GPIO_RST_PIN); fpga_driver::fpga_tick(); GPIO_ResetBits(FPGA_GPIO_PORT, FPGA_GPIO_RST_PIN); } void fpga_driver::fpga_tick() { GPIO_SetBits(FPGA_GPIO_PORT, FPGA_GPIO_SCK_PIN); GPIO_ResetBits(FPGA_GPIO_PORT, FPGA_GPIO_SCK_PIN); } void fpga_driver::fpga_send_low() { GPIO_ResetBits(FPGA_GPIO_PORT, FPGA_GPIO_MOSI_PIN); fpga_driver::fpga_tick(); GPIO_ResetBits(FPGA_GPIO_PORT, FPGA_GPIO_MOSI_PIN); } void fpga_driver::fpga_send_high() { GPIO_SetBits(FPGA_GPIO_PORT, FPGA_GPIO_MOSI_PIN); fpga_driver::fpga_tick(); GPIO_ResetBits(FPGA_GPIO_PORT, FPGA_GPIO_MOSI_PIN); } void fpga_driver::fpga_send_stream(std::bitset<RELAYS_COUNT> &fpga_stream) { for (unsigned int i = 0; i < RELAYS_COUNT; i++) { fpga_driver::fpga_chip_select(); (fpga_stream[i]) ? fpga_driver::fpga_send_high() : fpga_driver::fpga_send_low(); fpga_driver::fpga_chip_deselect(); } } void fpga_driver::fpga_chip_select() { GPIO_ResetBits(FPGA_GPIO_PORT, FPGA_GPIO_NSS_PIN); } void fpga_driver::fpga_chip_deselect() { GPIO_SetBits(FPGA_GPIO_PORT, FPGA_GPIO_NSS_PIN); } fpga_driver::~fpga_driver() { asm("nop"); }
[ "oleg.shishlyannikov.1992@gmail.com" ]
oleg.shishlyannikov.1992@gmail.com
7dd80350e3adcb19ee3dda320f78930fa674901e
08a2e70f85afd89ce06764f95785a3a3b812370e
/chrome/credential_provider/test/gcp_fakes.h
566b58b48b2c3f69140a07ffef21fe739e605288
[ "BSD-3-Clause" ]
permissive
RobertPieta/chromium
014cf3ffb3436793b2e0817874eda946779d7e2d
eda06a0b859a08d15a1ab6a6850e42e667530f0b
refs/heads/master
2023-01-13T10:57:12.853154
2019-02-16T14:07:55
2019-02-16T14:07:55
171,064,555
0
0
NOASSERTION
2019-02-16T23:55:22
2019-02-16T23:55:22
null
UTF-8
C++
false
false
7,109
h
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_CREDENTIAL_PROVIDER_TEST_GCP_FAKES_H_ #define CHROME_CREDENTIAL_PROVIDER_TEST_GCP_FAKES_H_ #include <map> #include <memory> #include <string> #include <vector> #include "base/strings/string16.h" #include "base/win/scoped_handle.h" #include "chrome/credential_provider/gaiacp/os_process_manager.h" #include "chrome/credential_provider/gaiacp/os_user_manager.h" #include "chrome/credential_provider/gaiacp/scoped_lsa_policy.h" #include "chrome/credential_provider/gaiacp/scoped_user_profile.h" #include "chrome/credential_provider/gaiacp/win_http_url_fetcher.h" namespace credential_provider { /////////////////////////////////////////////////////////////////////////////// class FakeOSProcessManager : public OSProcessManager { public: FakeOSProcessManager(); ~FakeOSProcessManager() override; // OSProcessManager HRESULT GetTokenLogonSID(const base::win::ScopedHandle& token, PSID* sid) override; HRESULT SetupPermissionsForLogonSid(PSID sid) override; HRESULT CreateProcessWithToken( const base::win::ScopedHandle& logon_token, const base::CommandLine& command_line, _STARTUPINFOW* startupinfo, base::win::ScopedProcessInformation* procinfo) override; private: OSProcessManager* original_manager_; DWORD next_rid_ = 0; }; /////////////////////////////////////////////////////////////////////////////// class FakeOSUserManager : public OSUserManager { public: FakeOSUserManager(); ~FakeOSUserManager() override; // OSUserManager HRESULT GenerateRandomPassword(wchar_t* password, int length) override; HRESULT AddUser(const wchar_t* username, const wchar_t* password, const wchar_t* fullname, const wchar_t* comment, bool add_to_users_group, BSTR* sid, DWORD* error) override; HRESULT ChangeUserPassword(const wchar_t* username, const wchar_t* password, const wchar_t* old_password) override; HRESULT IsWindowsPasswordValid(const wchar_t* username, const wchar_t* password) override; HRESULT CreateLogonToken(const wchar_t* username, const wchar_t* password, bool interactive, base::win::ScopedHandle* token) override; HRESULT GetUserSID(const wchar_t* username, PSID* sid) override; HRESULT FindUserBySID(const wchar_t* sid, wchar_t* username, DWORD length) override; HRESULT RemoveUser(const wchar_t* username, const wchar_t* password) override; struct UserInfo { UserInfo(const wchar_t* password, const wchar_t* fullname, const wchar_t* comment, const wchar_t* sid); UserInfo(); UserInfo(const UserInfo& other); ~UserInfo(); bool operator==(const UserInfo& other) const; base::string16 password; base::string16 fullname; base::string16 comment; base::string16 sid; }; const UserInfo GetUserInfo(const wchar_t* username); // Creates a new unique sid. Free returned sid with FreeSid(). HRESULT CreateNewSID(PSID* sid); // Creates a fake user with the given |username|, |password|, |fullname|, // |comment|. If |gaia_id| is non-empty, also associates the user with // the given gaia id. If |email| is non-empty, sets the email to use for // reauth to be this one. // |sid| is allocated and filled with the SID of the new user. HRESULT CreateTestOSUser(const base::string16& username, const base::string16& password, const base::string16& fullname, const base::string16& comment, const base::string16& gaia_id, const base::string16& email, BSTR* sid); size_t GetUserCount() const { return username_to_info_.size(); } private: OSUserManager* original_manager_; DWORD next_rid_ = 0; std::map<base::string16, UserInfo> username_to_info_; }; /////////////////////////////////////////////////////////////////////////////// class FakeScopedLsaPolicyFactory { public: FakeScopedLsaPolicyFactory(); virtual ~FakeScopedLsaPolicyFactory(); ScopedLsaPolicy::CreatorCallback GetCreatorCallback(); // PrivateDataMap is a string-to-string key/value store that maps private // names to their corresponding data strings. The term "private" here is // used to reflect the name of the underlying OS calls. This data is meant // to be shared by all ScopedLsaPolicy instances created by this factory. using PrivateDataMap = std::map<base::string16, base::string16>; PrivateDataMap& private_data() { return private_data_; } private: std::unique_ptr<ScopedLsaPolicy> Create(ACCESS_MASK mask); ScopedLsaPolicy::CreatorCallback original_creator_; PrivateDataMap private_data_; }; class FakeScopedLsaPolicy : public ScopedLsaPolicy { public: ~FakeScopedLsaPolicy() override; // ScopedLsaPolicy HRESULT StorePrivateData(const wchar_t* key, const wchar_t* value) override; HRESULT RemovePrivateData(const wchar_t* key) override; HRESULT RetrievePrivateData(const wchar_t* key, wchar_t* value, size_t length) override; HRESULT AddAccountRights(PSID sid, const wchar_t* right) override; HRESULT RemoveAccount(PSID sid) override; private: friend class FakeScopedLsaPolicyFactory; explicit FakeScopedLsaPolicy(FakeScopedLsaPolicyFactory* factory); FakeScopedLsaPolicyFactory::PrivateDataMap& private_data() { return factory_->private_data(); } FakeScopedLsaPolicyFactory* factory_; }; /////////////////////////////////////////////////////////////////////////////// // A scoped FakeScopedUserProfile factory. Installs itself when constructed // and removes itself when deleted. class FakeScopedUserProfileFactory { public: FakeScopedUserProfileFactory(); virtual ~FakeScopedUserProfileFactory(); private: std::unique_ptr<ScopedUserProfile> Create(const base::string16& sid, const base::string16& username, const base::string16& password); ScopedUserProfile::CreatorCallback original_creator_; }; class FakeScopedUserProfile : public ScopedUserProfile { public: HRESULT SaveAccountInfo(const base::DictionaryValue& properties) override; private: friend class FakeScopedUserProfileFactory; FakeScopedUserProfile(const base::string16& sid, const base::string16& username, const base::string16& password); ~FakeScopedUserProfile() override; bool is_valid_ = false; }; } // namespace credential_provider #endif // CHROME_CREDENTIAL_PROVIDER_TEST_GCP_FAKES_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
97b68663e169efec9510e183d1849342f4b53767
1085da57df5ed54a09263e5d91daa35813752800
/include/VariadicKalmanFilter/VariadicKalmanFilter.hpp
435b2626a00cad48a36cfc4eab1f97b60f5aa27d
[]
no_license
Areklis909/RemoveTheSpike
0f8f7d7831455be31aab674a1319675e28599153
370e9c9aea117342d6094e02c8442cc4635241e0
refs/heads/master
2022-10-19T17:42:54.982619
2020-06-12T20:47:03
2020-06-12T20:47:03
229,638,789
0
0
null
null
null
null
UTF-8
C++
false
false
1,445
hpp
#ifndef VARIADIC_KALMAN_HPP #define VARIADIC_KALMAN_HPP #include <memory> #include <armadillo> #include <algorithm> #include <iostream> #include <cmath> #include <AlarmDescriptor/AlarmDescriptor.hpp> namespace NsVariadicKalmanFilter { class VariadicKalmanFilter { struct VarKalStatus { double ro; double error; VarKalStatus(double roTemp, double errorTemp) : ro(roTemp), error(errorTemp) {}; }; const int r; const int maxLengthOfDamagedBlock; const int qMax; const int mi; std::shared_ptr<double[]> frames; arma::vec wspAutoregresji; arma::vec xApriori; arma::vec xAposteriori; arma::mat PqApriori; arma::mat PqAposteriori; arma::vec hq; arma::mat var; VariadicKalmanFilter::VarKalStatus updateStateAndCovarianceMatrices(const int t, const int i, const int q, const int currentIndex); arma::vec createTheta(const int q); void initMatrices(const int t); void aposterioriUpdateDamaged(); void aposterioriUpdateNotDamaged(const VariadicKalmanFilter::VarKalStatus & status, const int q, const int currentIndex); void interpolate(const AlarmDescriptor & alarm); void pasteTheResult(const AlarmDescriptor & alarm); int getAlarmLength(const int t); public: VariadicKalmanFilter(const int r, const int maxLengthOfAlarm, const arma::vec & wsp, const int miTmp, std::shared_ptr<double[]> frms, const double & noiseVarianceBeforeAlarm); ~VariadicKalmanFilter(void); int fixDamagedSamples(const int t); }; } #endif
[ "areklis909@gmail.com" ]
areklis909@gmail.com
e52c4c8a6ee028f77527c78f4bcd8190fc209cc6
378fbed40c21d831ac932b7f66720b793d0e206b
/src/service/servicecontrol.cpp
e4cdc63f360cd2e23544e112dcac8c5411ac8d49
[ "BSD-3-Clause" ]
permissive
danielhou0/QtService
fb45ba871fd1591fe03ed0f602f5c711f8a77f34
bd481274ffe2ea3920d3532a4ac0fd5103ddc254
refs/heads/master
2020-04-21T23:03:24.475389
2019-02-03T11:25:45
2019-02-03T11:25:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,458
cpp
#include "servicecontrol.h" #include "servicecontrol_p.h" #include "logging_p.h" #include "service_p.h" using namespace QtService; QStringList ServiceControl::listBackends() { return ServicePrivate::listBackends(); } QString ServiceControl::likelyBackend() { #if defined(Q_OS_ANDROID) auto backend = QStringLiteral("android"); #elif defined(Q_OS_LINUX) auto backend = QStringLiteral("systemd"); #elif defined(Q_OS_MACOS) auto backend = QStringLiteral("launchd"); #elif defined(Q_OS_WIN32) auto backend = QStringLiteral("windows"); #else QString backend; #endif if(ServicePrivate::listBackends().contains(backend)) return backend; else return QStringLiteral("standard"); } ServiceControl *ServiceControl::create(const QString &backend, QString serviceId, QObject *parent) { auto control = ServicePrivate::createControl(backend, std::move(serviceId), parent); // set the correct default value if(control) control->d->blocking = control->supportFlags().testFlag(SupportsBlocking); return control; } ServiceControl *ServiceControl::createFromName(const QString &backend, const QString &serviceName, QObject *parent) { return createFromName(backend, serviceName, QCoreApplication::organizationDomain(), parent); } ServiceControl *ServiceControl::createFromName(const QString &backend, const QString &serviceName, const QString &domain, QObject *parent) { //MAJOR change plugin interface to have 2 seperate methods. for now, string detection is used... return create(backend, QStringLiteral("<<%1*%2>>").arg(serviceName, domain), parent); } ServiceControl::ServiceControl(QString &&serviceId, QObject *parent) : QObject{parent}, d{new ServiceControlPrivate{std::move(serviceId)}} {} ServiceControl::~ServiceControl() = default; QString ServiceControl::serviceId() const { return d->serviceId; } bool ServiceControl::isBlocking() const { return d->blocking; } QString ServiceControl::error() const { return d->error; } QVariant ServiceControl::callGenericCommand(const QByteArray &kind, const QVariantList &args) { Q_UNUSED(args) setError(tr("Operation custom command for kind %1 is not implemented for backend %2") .arg(QString::fromUtf8(kind), backend())); return {}; } ServiceControl::ServiceStatus ServiceControl::status() const { setError(tr("Reading the service status is not implemented for backend %1") .arg(backend())); return ServiceStatusUnknown; } bool ServiceControl::isAutostartEnabled() const { setError(tr("Reading the autostart state is not implemented for backend %1") .arg(backend())); return false; } QDir ServiceControl::runtimeDir() const { return ServicePrivate::runtimeDir(serviceName()); } bool ServiceControl::start() { setError(tr("Operation start is not implemented for backend %1") .arg(backend())); return false; } bool ServiceControl::stop() { setError(tr("Operation stop is not implemented for backend %1") .arg(backend())); return false; } bool ServiceControl::pause() { setError(tr("Operation pause is not implemented for backend %1") .arg(backend())); return false; } bool ServiceControl::resume() { setError(tr("Operation resume is not implemented for backend %1") .arg(backend())); return false; } bool ServiceControl::reload() { setError(tr("Operation reload is not implemented for backend %1") .arg(backend())); return false; } bool ServiceControl::enableAutostart() { setError(tr("Operation enable autostart is not implemented for backend %1") .arg(backend())); return false; } bool ServiceControl::disableAutostart() { setError(tr("Operation disable autostart is not implemented for backend %1") .arg(backend())); return false; } void ServiceControl::setBlocking(bool blocking) { if (d->blocking == blocking) return; if(blocking && !supportFlags().testFlag(SupportsBlocking)) return; if(!blocking && !supportFlags().testFlag(SupportsNonBlocking)) return; d->blocking = blocking; emit blockingChanged(d->blocking, {}); } void ServiceControl::clearError() { setError(QString{}); } QString ServiceControl::serviceName() const { return serviceId(); } void ServiceControl::setError(QString error) const { if (d->error == error) return; d->error = std::move(error); emit const_cast<ServiceControl*>(this)->errorChanged(d->error, {}); } // ------------- Private Implementation ------------- ServiceControlPrivate::ServiceControlPrivate(QString &&serviceId) : serviceId{std::move(serviceId)} {}
[ "Skycoder42@users.noreply.github.com" ]
Skycoder42@users.noreply.github.com
8de42b28c1b71984eb78f6165c7e9b99c877de99
ca387b33b22149d2c69186b01bc299fb2617c495
/spec/ffi/clang/fixtures/completion.cxx
db0951ff660549e6442963ea9b66fc03645f0428
[ "MIT" ]
permissive
ioquatix/ffi-clang
f6b19599e5e1ef083a0dd0c573e1a503d5fdf014
66066865d76126337b971a9a1196851bbb35ac57
refs/heads/main
2023-06-22T05:42:00.262125
2023-05-05T22:09:37
2023-05-05T22:09:37
10,642,976
35
20
MIT
2023-06-10T14:20:54
2013-06-12T13:06:10
Ruby
UTF-8
C++
false
false
84
cxx
#include <vector> std::vector<int> v1; std::vector<> v2; int main(void) { v1. }
[ "sabottenda@gmail.com" ]
sabottenda@gmail.com
3bca73d556d39e06460afc2d90447d5f6d99966e
282e81714be6e702cd9696357b3a163bce1f19b8
/2018/day25.cpp
eaac87f21d447bbcfd8718ab38727a235f71625c
[ "Unlicense" ]
permissive
antfarmar/aoc
5bf6c844853359d16d1fa5941b9aa085d0f2ddc6
94b20acb28ce28cd0633c33e3bb8b615828a0dcd
refs/heads/master
2021-11-20T13:43:52.056982
2021-09-27T13:53:52
2021-09-27T13:53:52
163,704,749
1
0
null
null
null
null
UTF-8
C++
false
false
2,597
cpp
// Advent of Code 2018 // Day 25: Four-Dimensional Adventure // https://adventofcode.com/2018/day/25 #include <chrono> #include <functional> #include <iostream> #include <iterator> #include <valarray> #include <vector> // a 4D point in spacetime struct Point { // int x, y, z, t; std::valarray<int> co; }; // parse the points via an istream std::istream& operator>>(std::istream& is, Point& p) { char comma; // is >> p.x >> comma >> p.y >> comma >> p.z >> comma >> p.t; // p.co.resize(4); // x,y,z,t // is >> p.co[0] >> comma >> p.co[1] >> comma >> p.co[2] >> comma >> // p.co[3]; int x, y, z, t; is >> x >> comma >> y >> comma >> z >> comma >> t; p.co = {x, y, z, t}; return is; } // manhattan distance b/w two 4D points int mhdist(const Point& p, const Point& q) { // return abs(p.x - q.x) + abs(p.y - q.y) + abs(p.z - q.z) + abs(p.t - q.t); return (abs(p.co - q.co)).sum(); } // dfs on graph of adjacency lists of points within distance 3 of each other void solve() { const std::vector<Point> points{std::istream_iterator<Point>{std::cin}, {}}; const int pointCount = points.size(); std::vector<std::vector<int>> within3(pointCount); std::vector<bool> visited(pointCount); // for each point pair, build an adjacency list of points within dist 3 for (int p = 0; p < pointCount; ++p) for (int q = p + 1; q < pointCount; ++q) if (mhdist(points[p], points[q]) <= 3) within3[p].push_back(q), within3[q].push_back(p); // recursive lambda: depth-first search to mark nodes as seen const std::function<void(int)> visit_dfs = [&](const int node) { visited[node] = true; for (const int edge : within3[node]) if (not visited[edge]) visit_dfs(edge); }; // count constellations of points and mark them as counted int constellations = 0; for (int point = 0; point < pointCount; ++point) if (not visited[point]) ++constellations, visit_dfs(point); // Part 1 // How many constellations are formed by the fixed points in spacetime? // Your puzzle answer was 324 std::cout << "Part 1: " << constellations << std::endl; } // time the solver int main() { std::ios_base::sync_with_stdio(0); std::cin.tie(0); auto start_time = std::chrono::steady_clock::now(); solve(); auto end_time = std::chrono::steady_clock::now(); auto ms = std::chrono::duration<double, std::milli>(end_time - start_time); std::clog << "[Runtime: " << ms.count() << "ms]" << std::endl; }
[ "markfarrugiamail@gmail.com" ]
markfarrugiamail@gmail.com
85a2c930f6006e983366b9125d5b82816a57997f
41d6b7e3b34b10cc02adb30c6dcf6078c82326a3
/src/plugins/azoth/accountslistwidget.h
8d1e6cb24413c411242b4cd456e8976f8b4c6101
[ "BSL-1.0" ]
permissive
ForNeVeR/leechcraft
1c84da3690303e539e70c1323e39d9f24268cb0b
384d041d23b1cdb7cc3c758612ac8d68d3d3d88c
refs/heads/master
2020-04-04T19:08:48.065750
2016-11-27T02:08:30
2016-11-27T02:08:30
2,294,915
1
0
null
null
null
null
UTF-8
C++
false
false
2,682
h
/********************************************************************** * LeechCraft - modular cross-platform feature rich internet client. * Copyright (C) 2006-2014 Georg Rudoy * * Boost Software License - Version 1.0 - August 17th, 2003 * * Permission is hereby granted, free of charge, to any person or organization * obtaining a copy of the software and accompanying documentation covered by * this license (the "Software") to use, reproduce, display, distribute, * execute, and transmit the Software, and to prepare derivative works of the * Software, and to permit third-parties to whom the Software is furnished to * do so, all subject to the following: * * The copyright notices in the Software and this entire statement, including * the above license grant, this restriction and the following disclaimer, * must be included in all copies of the Software, in whole or in part, and * all derivative works of the Software, unless such copies or derivative * works are solely in the form of machine-executable object code generated by * a source language processor. * * 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT * SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE * FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. **********************************************************************/ #pragma once #include <QWidget> #include <QHash> #include "ui_accountslistwidget.h" class QStandardItemModel; class QStandardItem; namespace LeechCraft { namespace Azoth { class IAccount; class AccountsListWidget : public QWidget { Q_OBJECT Ui::AccountsListWidget Ui_; QStandardItemModel * const AccModel_; QHash<IAccount*, QStandardItem*> Account2Item_; public: enum Role { AccObj = Qt::UserRole + 1, ChatStyleManager, MUCStyleManager }; enum Column { ShowInRoster, Name, ChatStyle, ChatVariant, MUCStyle, MUCVariant }; AccountsListWidget (QWidget* = 0); private slots: void addAccount (IAccount*); void on_Add__released (); void on_Modify__released (); void on_PGP__released (); void on_Delete__released (); void on_ResetStyles__released (); void handleAccountSelected (const QModelIndex&); void handleItemChanged (QStandardItem*); void handleAccountRemoved (IAccount*); signals: void accountVisibilityChanged (IAccount*); }; } }
[ "0xd34df00d@gmail.com" ]
0xd34df00d@gmail.com
468977eecaa88adf6710898669e11a773e8dc902
964afbb8a6a28fdab787efa27ed634d8bf95b3ca
/statusCheck/src/downcheck/downcheck.cpp
b1486cbecf638bbec32326bb5f5e1587bca62925
[]
no_license
small-cat/myCode_repository
e0e68d37816a2090ba7d4732107ca96f92d903ed
7b481cdfe69ef157194f69e4d337086159930240
refs/heads/master
2021-05-16T05:35:31.121663
2021-05-12T02:06:32
2021-05-12T02:06:32
42,913,745
1
1
null
2020-12-13T06:02:29
2015-09-22T05:40:02
C++
UTF-8
C++
false
false
17,332
cpp
/************************************************** > File name: downcheck.cpp > Author: wzhenyu > mail: > Create Time: 2016-04-01 15:20 ****************************************************/ #include "downcheck/downcheck.h" typedef enum {VGG=0, VI=3, VID=4, VMMS=7, VIMM=8}ServType; static const char* INCOME_OR_DIAL[4] = { "主叫", "被叫", "呼转", "unknown" }; /* // 用于 redis 查询语句的生成 const char* columns[] = { "phoneNumber", "osStsDtl", "validDate", "expireDate" }; */ /*********************************************************** * 函数名: CDownCheck::CDownCheck() * 函数功能: 不带参数的构造函数,初始化成员变量 * 参数说明: * 返回值说明: * 涉及到的表: * 作者: wzhenyu * 时间: 2016-04-01 15:28 ***********************************************************/ CDownCheck::CDownCheck() { m_nTotalRecordNum = 0; m_nTotalExceptionRecordNum = 0; m_pRedisManager = new CRedisManager(); if (!m_pRedisManager->ConnectRedis()) { /* Redis 连接失败 */ delete m_pRedisManager; exit(EXIT_FAILURE); } m_nRedisResultIndex = -1; m_nCallType = 3; /* 对应数组 INCOME_OR_DIAL 中的 Unknow 的下标 */ redisResult = NULL; } /*********************************************************** * 函数名: CDownCheck::~CDownCheck() * 函数功能: 析构函数 * 参数说明: * 返回值说明: * 涉及到的表: * 作者: wzhenyu * 时间: 2016-04-01 15:28 ***********************************************************/ CDownCheck::~CDownCheck() { m_nTotalRecordNum = 0; m_nTotalExceptionRecordNum = 0; m_nRedisResultIndex = 0; if (NULL != m_pRedisManager) { delete m_pRedisManager; m_pRedisManager = NULL; } if (NULL != redisResult) { free (redisResult); redisResult = NULL; } } /*********************************************************** * 函数名: void AddRedisResult(char* phone, redisReply* reply) * 函数功能: 将查询出的redis 结果集放到 redisResult数组中,然后与话单进行比较 * 参数说明: redis 结果集, 结构如下 * int type * int integer * int len -- str的长度 * char* str -- 当结果集只有一个结果时,保存在str 中 * int elements -- 结果集不止一个元素时,str为NULL,elements为结果的个数 * redisReply* element -- 多个元素的数组 * 返回值说明: * 涉及到的表: * 作者: wzhenyu * 时间: 2016-04-02 12:51 * TODO: 参数 phone 是可以不需要的,应该在 common/forString.h 中添加一个借口 * getStrFromString,此处省略,因为懒 ***********************************************************/ void CDownCheck::AddRedisResult(char* phone, redisReply* reply) { /* reply->type 是 REDIS_REPLY_ARRAY,因为是从 set 中查找, * 但是结果可能为空 */ unsigned int i = 0; if ( reply->type == REDIS_REPLY_NIL || reply->type == REDIS_REPLY_ERROR || ((reply->type == REDIS_REPLY_ARRAY) && (NULL == reply->str) && (reply->elements == 0))) { /* 说明redis查询的结果为空 */ return; } else { m_nRedisResultIndex++; if (m_nRedisResultIndex > 0) { /* 说明里面有数据 此处应该是单停状态的数据 */ m_nRedisResultIndex--; /* 因为 m_nRedisResultIndex 自增了两次 */ /* realloc 调用的注意事项,因为 m_nRedisResultIndex 自增两次, * 导致在后续释放时,出现段错误 */ Data * new_ptr = (Data*)realloc (redisResult, sizeof (Data) * (m_nRedisResultIndex + reply->elements)); ERRPRINT (NULL == new_ptr, exit (EXIT_FAILURE), 0, "downcheck#CDownCheck#AddRedisResult#realloc failed, line %d", __LINE__); redisResult = new_ptr; new_ptr = NULL; } else if (m_nRedisResultIndex == 0) { /* 说明之前没有数据 */ redisResult = (Data*)malloc (sizeof (Data) * (reply->elements)); ERRPRINT (NULL == redisResult, exit (EXIT_FAILURE), 0, "downcheck#CDownCheck#AddRedisResult#malloc failed, line %d", __LINE__); } for (i=0; i<reply->elements; i++) { redisResult[m_nRedisResultIndex].validDate = getIntFromString (reply->element[i]->str, "VALID"); redisResult[m_nRedisResultIndex].expireDate = getIntFromString (reply->element[i]->str, "EXPIRE"); redisResult[m_nRedisResultIndex].osStsDtl = getIntFromString (reply->element[i]->str, "STS"); strcpy(redisResult[m_nRedisResultIndex].phoneNum, phone); m_nRedisResultIndex++; } } } /*********************************************************** * 函数名: bool CDownCheck::QueryRedisByRecord(NodeRecord* record) * 函数功能: 通过话单记录的手机号码,在redis 中搜索号码相关的单双停状态数据, 结果保存在 _DATA_ 结构体数组 * redisResult[2] 中 * 参数说明: 在公共链表空间中获取的话单节点 * 返回值说明: 查找成功返回true,失败返回false * 涉及到的表: * 作者: wzhenyu * 时间: 2016-04-01 15:28 ***********************************************************/ bool CDownCheck::QueryRedisByRecord(NodeRecord* record) { char statement[128]; /* redis 查询语句 */ char phoneNumber[16] = {0}; memset(statement, 0, sizeof(statement)); m_pRedisManager->SelectDb (0); //用户信息存放在 0 号 数据库 if (NULL == record) { DUMPSYSLOG(ERROR, "downcheck", "CDownCheck", "QueryRedisByRecord", "record is null, line %d", __LINE__); ERRPRINT(1, return false, 0, "downcheck#CDownCheck#QueryRedisRecord# record is null, line %d", __LINE__); } int callType = GetServiceCallType(record); if (-1 == callType) { return false; } else { m_nCallType = callType; /* 彩信是依赖GPRS的,不论是单停还是双停,都不能接收和发送彩信,所以将彩信与GPRS同样处理 * 都作为主叫处理, 但是原有的主被叫仍记录,仅仅是当做主叫处理 */ int idx = GetIndex(record->fileName, recordCallType); /* 呼转作为主叫处理 */ if (VID == idx && callType == REDIRECT_CALL) { callType = DIAL_CALL; } /* 如果是 VI 或者 VGG 业务,获取的不是号码,是 IMSI号,需要先将 根据IMSI号 找到号码 * 如果没有找到号码,说明该话单对应的号码没有单双停记录,话单是正常话单 */ if (idx==VGG || idx==VI) { if (!m_pRedisManager->Get (record->phoneNum)) return false; redisReply* m_pReply = m_pRedisManager->GetRedisResult(); if ( m_pReply->type == REDIS_REPLY_NIL || m_pReply->type == REDIS_REPLY_ERROR || ((NULL == m_pReply->str) && (m_pReply->elements == 0))) { /* 说明redis查询的结果为空 */ return true; } else { if (m_pReply->type == REDIS_REPLY_STRING) { strncpy(phoneNumber, m_pReply->str, sizeof (phoneNumber) - 1); phoneNumber[sizeof (phoneNumber) - 1] = '\0'; } } m_pReply = NULL; } else /* 不是 VI 或者 VGG业务 */ { strncpy(phoneNumber, record->phoneNum, sizeof (phoneNumber) - 1); phoneNumber[sizeof (phoneNumber) - 1] = '\0'; } /* 被叫,以 号码+单停状态为 KEY 在 redis 中查询*/ /* 2-单停 4-双停 */ /* redis 中保存4个数据, phoneNum, osStsDtl, validDate, expireDate */ char setname[32] = {0}; if (callType == INCOME_CALL) { /* 从 set 中查询时间, smembers 17052482342:4 */ sprintf (setname, "%s:%d", phoneNumber, DOUBLE_STOP); if (!m_pRedisManager->Smembers (setname)) { /* 说明 redis 中不存在记录,话单是正常的 */ return true; } /* TODO */ /* 将查询出的数据添加到 _DATA_ 结构体的 redisResult 数组中 */ AddRedisResult(phoneNumber, m_pRedisManager->GetRedisResult()); } else /* 主叫(呼转作为主叫处理),分别以号码+单停 和 号码+双停 作为 KEY 查询 */ { /* 单停 */ memset (setname, 0, sizeof (setname)); sprintf (setname, "%s:%d", phoneNumber, SINGLE_STOP); m_pRedisManager->Smembers (setname); AddRedisResult(phoneNumber, m_pRedisManager->GetRedisResult()); /* 双停 */ memset (setname, 0, sizeof (setname)); sprintf (setname, "%s:%d", phoneNumber, DOUBLE_STOP); m_pRedisManager->Smembers (setname); AddRedisResult(phoneNumber, m_pRedisManager->GetRedisResult()); } } return true; } /*********************************************************** * 函数名: int CDownCheck::GetIndex(char* filename, char* arr[]) * 函数功能: 根据文件名前缀,判断话单文件的业务类型,在 recordCallType数组中 * 的下标索引 * 参数说明: * filename: 话单文件名 * arr[]: 字符串数组 * 返回值说明: 返回filename 前缀在字符串数组中的索引, -1 表示不存在 * 涉及到的表: * 作者: wzhenyu * 时间: 2016-04-01 19:55 ***********************************************************/ int CDownCheck::GetIndex(char* filename, const char* arr[]) { /* 话单文件名=前缀 + 时间, 时间都是2016,即第一个数字是2 */ char pre[32] = {0}; strncpy(pre, filename, strlen(filename)); pre[strlen(filename)] = '\0'; char* tmp = strchr(pre, '2'); *tmp = '\0'; int i = 0; while (recordCallType[i] != NULL) { if (strcmp(pre, recordCallType[i]) == 0) return i; i++; } return -1; } /*********************************************************** * 函数名: int CDownCheck::GetServiceCallType(NodeRecord* record) * 函数功能: 根据业务类型和cdrType判断话单记录的主被叫类型 * 参数说明: 话单节点 * 返回值说明: 返回话单主被叫类型,DIAL_CALL主叫,INCOME_CALL被叫, REDIRECT_CALL呼转,-1 表示失败 * 涉及到的表: * 作者: wzhenyu * 时间: 2016-04-01 19:26 ***********************************************************/ int CDownCheck::GetServiceCallType(NodeRecord* record) { int index = GetIndex(record->fileName, recordCallType); int callType = -1; if (-1 == index) { DUMPSYSLOG(ERROR, "downcheck", "CDownCheck", "GetServiceCallType", "can not recognize %s", record->fileName); ERRPRINT(1, return -1, 0, "downcheck#CDownCheck#GetServiceCallType# can not recognize %s, line %d", record->fileName, __LINE__); } /* 在 recordCallType 数组中,可以根据下标分类,0,1,2 为GPRS,3,4 为GSM, 5,6 为短信, 7,8 为彩信 */ int type[4] = {-1, DIAL_CALL, INCOME_CALL, REDIRECT_CALL}; switch (index) { /* GPRS都作为主叫 */ case 0: case 1: case 2: callType = DIAL_CALL; break; /* GSM 01主叫, 02被叫,03呼转 */ case 3: case 4: if ((record->cdrType < 4) && (type[record->cdrType] != -1)) { callType = type[record->cdrType]; } else { goto ERR; } break; /*国内SMS: 00主叫,01被叫; 国际短信: 21主叫, 28被叫*/ case 5: if (record->cdrType == 0) { callType = DIAL_CALL; } else if (record->cdrType == 1) { callType = INCOME_CALL; } else { goto ERR; } break; case 6: if (record->cdrType == 21) { callType = DIAL_CALL; } else if (record->cdrType == 28) { callType = INCOME_CALL; } else { goto ERR; } break; /* 国内/国际彩信, 00主叫, 03被叫 */ case 7: case 8: if (record->cdrType == 0) { callType = DIAL_CALL; } else if (record->cdrType == 3) { callType = INCOME_CALL; } else { goto ERR; } break; default: callType = -1; break; } DUMPSYSLOG(DEBUG, "downcheck", "CDownCheck", "GetServiceCallType", "filename is [%s], Service is [%s], " "cdrType is [%d], callType:[%s]", record->fileName, recordCallType[index], record->cdrType, INCOME_OR_DIAL[callType%10]); return callType; ERR: DUMPSYSLOG(ERROR, "downcheck", "CDownCheck", "GetServiceCallType", "can not found service call type, Service is [%s], cdrType is [%d], callType:[%s]", recordCallType[index], record->cdrType, INCOME_OR_DIAL[callType % 10]); ERRPRINT(1, return callType, 0, "downcheck#CDownCheck#GetServiceCalType#" "can not found service call type, Service is [%s], cdrType is [%d], callType[%s]", recordCallType[index], record->cdrType, INCOME_OR_DIAL[callType % 10]); } /*********************************************************** * 函数名: bool CDownCheck::RecordDownCheck(NodeRecord* record) * 函数功能: 判断话单是否是异常话单,如果是,需要将异常话单输出 * 参数说明: * 返回值说明: * 涉及到的表: * 作者: wzhenyu * 时间: 2016-04-02 13:21 ***********************************************************/ bool CDownCheck::RecordDownCheck(QueueData* qData) { if (NULL == qData) return false; NodeRecord* record = qData->record; bool bflag = false; int callType = m_nCallType; int idx = -1; if (record->cdrType == -1) // 表示当前节点是话单文件的最后一个节点的标识, 现在不需要这种节点,先过滤,后续解码不在产生这种节点 { memset(redisResult, 0, sizeof(Data)*m_nRedisResultIndex); m_nRedisResultIndex = -1; return false; } QueryRedisByRecord(record); if (-1 == m_nRedisResultIndex) /* 表示redis中没有对应号码的记录,话单是正常话单 */ { // m_nTotalRecordNum += 1; #ifdef DEBUG_TEST printf("record is normal: filename:[%s]\t phoneNum:[%s]\t filenum:[%d]\t cdrType:[%d]]\t callType:[%s]\n", record->fileName, record->phoneNum, record->fileNum, record->cdrType, INCOME_OR_DIAL[m_nCallType % 10]); #endif bflag = false; } else { int i = 0; for(; i<m_nRedisResultIndex; i++) { if (((int)record->startTime >= redisResult[i].validDate) && ((int)record->startTime < redisResult[i].expireDate)) { /* 只有当是异常话单时,才输出true, 将记录加入到输出队列中,否则输出FALSE,并将话单阶段释放 */ DUMPSYSLOG(TRACE, "DownCheck", "CDownCheck", "RecordDownCheck", "record is unormal, filename:%s, phoneNum:%s, fileNum:%d, callType:%s, startTime:%ld, validDate:%ld, expireDate:%ld", record->fileName, record->phoneNum, record->fileNum, INCOME_OR_DIAL[m_nCallType % 10], record->startTime, redisResult[i].validDate, redisResult[i].expireDate); g_pOutputManager->AddData(qData, redisResult[i]); bflag = true; /* TODO(wuzy): 当数据同时命中单双停时,会在output中连续插入两个节点, * 但是当其中一个释放时,另一个就变成了野指针 */ break; } } /* 释放 */ memset(redisResult, 0, sizeof(Data)*m_nRedisResultIndex); free (redisResult); redisResult = NULL; m_nRedisResultIndex = -1; } if (!bflag) { /* 话单正常 */ DUMPSYSLOG(TRACE, "DownCheck", "CDownCheck", "RecordDownCheck", "record is normal, filename:%s, phoneNum:%s, fileNum:%d, callType:%s, startTime:%ld", record->fileName, record->phoneNum, record->fileNum, INCOME_OR_DIAL[m_nCallType % 10], record->startTime); /* * 语音话单(不分主被叫), 主叫短信, 主叫彩信, 流量话单统计活跃用户数 */ idx = GetIndex (record->fileName, recordCallType); if (idx==VID) { callType = DIAL_CALL; } if (callType == DIAL_CALL) { UpdateCount (record); } } return bflag; } /*********************************************************** * 函数名: bool UpdateCount (NodeRecord* record) * 函数功能: 更新计数器 * 参数说明: * 返回值说明: * 涉及到的表: * 作者: wzhenyu * 时间: 2017-02-10 15:18 ***********************************************************/ bool CDownCheck::UpdateCount (NodeRecord* record) { if (record == NULL) { return false; } char* phone_num = NULL; int service_idx = -1; /* 获取业务类型 */ char key[64] = {0}; service_idx = GetIndex (record->fileName, recordCallType); /* VGG 和 VI 获取的是 IMSI,不是手机号码,需要根据 IMSI * get 号码 * */ if (VGG == service_idx || VI == service_idx) { m_pRedisManager->SelectDb (0); //用户信息存放在 0 号 数据库 phone_num = m_pRedisManager->Get (record->phoneNum); if (NULL == phone_num) { return false; } } else { phone_num = record->phoneNum; } /* 同时更新日和月计数器 */ sprintf (key, "%s:%s", phone_num, recordCallType[service_idx]); /* 这里的 0 和 1 号数据库不能直接写数字,有点 magic ,需要增加可读性 */ m_pRedisManager->SelectDb(1); //计数器存放在 1 号数据库 if (!m_pRedisManager->Zincrby (ZSETNAME_PER_DAY, key, 1)) { return false; } if (!m_pRedisManager->Zincrby (ZSETNAME_PER_MONTH, key, 1)) { return false; } return true; }
[ "mblrwuzy@gmail.com" ]
mblrwuzy@gmail.com
5f9a9dad99841d59b37b56f1724d8348dfaad82b
15383b87591d6f8f116eaab30ee2b71b0a82ec57
/dlib-19.22/dlib/gui_widgets/fonts.cpp
75d4d8b571a9d5f4623be9243dbc40b8d853723c
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
kwkim5/Studio_Prj_Arch2021
d54aec7739fd9166859b156228a3909148def8cd
d0e8d6f05d2f3412b6698259e488204c15e77135
refs/heads/main
2023-06-10T05:07:23.934614
2021-06-16T05:01:05
2021-06-16T05:01:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
26,405
cpp
// Copyright (C) 2005 Davis E. King (davis@dlib.net), and Nils Labugt, Keita Mochizuki // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_FONTs_CPP_ #define DLIB_FONTs_CPP_ #include "fonts.h" #include <fstream> #include <memory> #include <sstream> #include "../serialize.h" #include "../base64.h" #include "../compress_stream.h" #include "../tokenizer.h" #include "nativefont.h" namespace dlib { // ---------------------------------------------------------------------------------------- const std::string get_decoded_string_with_default_font_data() { dlib::base64::kernel_1a base64_coder; dlib::compress_stream::kernel_1ea compressor; std::ostringstream sout; std::istringstream sin; /* SOURCE BDF FILE (helvR12.bdf) COMMENTS COMMENT $XConsortium: helvR12.bdf,v 1.15 95/01/26 18:02:58 gildea Exp $ COMMENT $Id: helvR12.bdf,v 1.26 2004-11-28 20:08:46+00 mgk25 Rel $ COMMENT COMMENT + COMMENT Copyright 1984-1989, 1994 Adobe Systems Incorporated. COMMENT Copyright 1988, 1994 Digital Equipment Corporation. COMMENT COMMENT Adobe is a trademark of Adobe Systems Incorporated which may be COMMENT registered in certain jurisdictions. COMMENT Permission to use these trademarks is hereby granted only in COMMENT association with the images described in this file. COMMENT COMMENT Permission to use, copy, modify, distribute and sell this software COMMENT and its documentation for any purpose and without fee is hereby COMMENT granted, provided that the above copyright notices appear in all COMMENT copies and that both those copyright notices and this permission COMMENT notice appear in supporting documentation, and that the names of COMMENT Adobe Systems and Digital Equipment Corporation not be used in COMMENT advertising or publicity pertaining to distribution of the software COMMENT without specific, written prior permission. Adobe Systems and COMMENT Digital Equipment Corporation make no representations about the COMMENT suitability of this software for any purpose. It is provided "as COMMENT is" without express or implied warranty. COMMENT - */ // The base64 encoded data we want to decode and return. sout << "AXF+zOQzCgGitrKiOCGEL4hlIv1ZenWJyjMQ4rJ6f/oPMeHqsZn+8XnpehwFQTz3dtUGlZRAUoOa"; sout << "uVo8UiplcFxuK69A+94rpMCMAyEeeOwZ/tRzkX4eKuU3L4xtsJDknMiYUNKaMrYimb1QJ0E+SRqQ"; sout << "wATrMTecYNZvJJm02WibiwE4cJ5scvkHNl4KJT5QfdwRdGopTyUVdZvRvtbTLLjsJP0fQEQLqemf"; sout << "qPE4kDD79ehrBIwLO1Y6TzxtrrIoQR57zlwTUyLenqRtSN3VLtjWYd82cehRIlTLtuxBg2s+zZVq"; sout << "jNlNnYTSM+Swy06qnQgg+Dt0lhtlB9shR1OAlcfCtTW6HKoBk/FGeDmjTGW4bNCGv7RjgM6TlLDg"; sout << "ZYSSA6ZCCAKBgE++U32gLHCCiVkPTkkp9P6ioR+e3SSKRNm9p5MHf+ZQ3LJkW8KFJ/K9gKT1yvyv"; sout << "F99pAvOOq16tHRFvzBs+xZj/mUpH0lGIS7kLWr9oP2KuccVrz25aJn3kDruwTYoD+CYlOqtPO0Mv"; sout << "dEI0LUR0Ykp1M2rWo76fJ/fpzHjV7737hjkNPJ13nO72RMDr4R5V3uG7Dw7Ng+vGX3WgJZ4wh1JX"; sout << "pl2VMqC5JXccctzvnQvnuvBvRm7THgwQUgMKKT3WK6afUUVlJy8DHKuU4k1ibfVMxAmrwKdTUX2w"; sout << "cje3A05Qji3aop65qEdwgI5O17HIVoRQOG/na+XRMowOfUvI4H8Z4+JGACfRrQctgYDAM9eJzm8i"; sout << "PibyutmJfZBGg0a3oC75S5R9lTxEjPocnEyJRYNnmVnVAmKKbTbTsznuaD+D1XhPdr2t3A4bRTsp"; sout << "toKKtlFnd9YGwLWwONDwLnoQ/IXwyF7txrRHNSVToh772U0Aih/yn5vnmcMF750eiMzRAgXu5sbR"; sout << "VXEOVCiLgVevN5umkvjZt1eGTSSzDMrIvnv4nyOfaFsD+I76wQfgLqd71rheozGtjNc0AOTx4Ggc"; sout << "eUSFHTDAVfTExBzckurtyuIAqF986a0JLHCtsDpBa2wWNuiQYOH3/LX1zkdU2hdamhBW774bpEwr"; sout << "dguMxxOeDGOBgIlM5gxXGYXSf5IN3fUAEPfOPRxB7T+tpjFnWd7cg+JMabci3zhJ9ANaYT7HGeTX"; sout << "bulKnGHjYrR1BxdK3YeliogQRU4ytmxlyL5zlNFU/759mA8XSfIPMEZn9Vxkb00q1htF7REiDcr3"; sout << "kW1rtPAc7VQNEhT54vK/YF6rMvjO7kBZ/vLYo7E8e8hDKEnY8ucrC3KGmeo31Gei74BBcEbvJBd3"; sout << "/YAaIKgXWwU2wSUw9wLq2RwGwyguvKBx0J/gn27tjcVAHorRBwxzPpk8r+YPyN+SifSzEL7LEy1G"; sout << "lPHxmXTrcqnH9qraeAqXJUJvU8SJJpf/tmsAE+XSKD/kpVBnT5qXsJ1SRFS7MtfPjE1j/NYbaQBI"; sout << "bOrh81zaYCEJR0IKHWCIsu/MC3zKXfkxFgQ9XpYAuWjSSK64YpgkxSMe8VG8yYvigOw2ODg/z4FU"; sout << "+HpnEKF/M/mKfLKK1i/8BV7xcYVHrhEww1QznoFklJs/pEg3Kd5PE1lRii6hvTn6McVAkw+YbH9q"; sout << "/sg4gFIAvai64hMcZ1oIZYppj3ZN6KMdyhK5s4++ZS/YOV2nNhW73ovivyi2Tjg7lxjJJtsYrLKb"; sout << "zIN1slOICKYwBq42TFBcFXaZ6rf0Czd09tL+q6A1Ztgr3BNuhCenjhWN5ji0LccGYZo6bLTggRG/"; sout << "Uz6K3CBBU/byLs79c5qCohrr7rlpDSdbuR+aJgNiWoU6T0i2Tvua6h51LcWEHy5P2n146/Ae2di4"; sout << "eh20WQvclrsgm1oFTGD0Oe85GKOTA7vvwKmLBc1wwA0foTuxzVgj0TMTFBiYLTLG4ujUyBYy1N6e"; sout << "H8EKi8H+ZAlqezrjABO3BQr33ewdZL5IeJ4w7gdGUDA6+P+7cODcBW50X9++6YTnKctuEw6aXBpy"; sout << "GgcMfPE61G8YKBbFGFic3TVvGCLvre1iURv+F+hU4/ee6ILuPnpYnSXX2iCIK/kmkBse8805d4Qe"; sout << "DG/8rBW9ojvAgc0jX7CatPEMHGkcz+KIZoKMI7XXK4PJpGQUdq6EdIhJC4koXEynjwwXMeC+jJqH"; sout << "agwrlDNssq/8AA=="; // Put the data into the istream sin sin.str(sout.str()); sout.str(""); // Decode the base64 text into its compressed binary form base64_coder.decode(sin,sout); sin.clear(); sin.str(sout.str()); sout.str(""); // Decompress the data into its original form compressor.decompress(sin,sout); // Return the decoded and decompressed data return sout.str(); } default_font:: default_font ( ) { using namespace std; l = new letter[256]; try { istringstream sin(get_decoded_string_with_default_font_data()); for (int i = 0; i < 256; ++i) { deserialize(l[i],sin); } } catch (...) { delete [] l; throw; } } // ---------------------------------------------------------------------------------------- void serialize ( const letter& item, std::ostream& out ) { try { serialize(item.w,out); serialize(item.count,out); for (unsigned long i = 0; i < item.count; ++i) { serialize(item.points[i].x,out); serialize(item.points[i].y,out); } } catch (serialization_error& e) { throw serialization_error(e.info + "\n while serializing object of type letter"); } } void deserialize ( letter& item, std::istream& in ) { try { if (item.points) delete [] item.points; deserialize(item.w,in); deserialize(item.count,in); if (item.count > 0) item.points = new letter::point[item.count]; else item.points = 0; for (unsigned long i = 0; i < item.count; ++i) { deserialize(item.points[i].x,in); deserialize(item.points[i].y,in); } } catch (serialization_error& e) { item.w = 0; item.count = 0; item.points = 0; throw serialization_error(e.info + "\n while deserializing object of type letter"); } } // ---------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------- namespace bdf_font_helpers { class bdf_parser { public: bdf_parser( std::istream& in ) : in_( in ) { std::string str_tmp; int int_tmp; str_tmp = "STARTFONT"; int_tmp = STARTFONT; keyword_map.add( str_tmp, int_tmp ); str_tmp = "FONTBOUNDINGBOX";int_tmp = FONTBOUNDINGBOX; keyword_map.add( str_tmp, int_tmp ); str_tmp = "DWIDTH"; int_tmp = DWIDTH; keyword_map.add( str_tmp, int_tmp ); str_tmp = "CHARS"; int_tmp = CHARS; keyword_map.add( str_tmp, int_tmp ); str_tmp = "STARTCHAR"; int_tmp = STARTCHAR; keyword_map.add( str_tmp, int_tmp ); str_tmp = "ENCODING"; int_tmp = ENCODING; keyword_map.add( str_tmp, int_tmp ); str_tmp = "BBX"; int_tmp = BBX; keyword_map.add( str_tmp, int_tmp ); str_tmp = "BITMAP"; int_tmp = BITMAP; keyword_map.add( str_tmp, int_tmp ); str_tmp = "ENDCHAR"; int_tmp = ENDCHAR; keyword_map.add( str_tmp, int_tmp ); str_tmp = "ENDFONT"; int_tmp = ENDFONT; keyword_map.add( str_tmp, int_tmp ); str_tmp = "DEFAULT_CHAR"; int_tmp = DEFAULT_CHAR; keyword_map.add( str_tmp, int_tmp ); tokzr.set_identifier_token( tokzr.uppercase_letters(), tokzr.uppercase_letters() + "_" ); tokzr.set_stream( in ); } enum bdf_enums { NO_KEYWORD = 0, STARTFONT = 1, FONTBOUNDINGBOX = 2, DWIDTH = 4, DEFAULT_CHAR = 8, CHARS = 16, STARTCHAR = 32, ENCODING = 64, BBX = 128, BITMAP = 256, ENDCHAR = 512, ENDFONT = 1024 }; struct header_info { int FBBx, FBBy, Xoff, Yoff; int dwx0, dwy0; bool has_global_dw; long default_char; }; struct char_info { int dwx0, dwy0; int BBw, BBh, BBxoff0x, BByoff0y; array2d<char> bitmap; bool has_dw; }; bool parse_header( header_info& info ) { if ( required_keyword( STARTFONT ) == false ) return false; // parse_error: required keyword missing info.has_global_dw = false; int find = FONTBOUNDINGBOX | DWIDTH | DEFAULT_CHAR; int stop = CHARS | STARTCHAR | ENCODING | BBX | BITMAP | ENDCHAR | ENDFONT; int res; while ( 1 ) { res = find_keywords( find | stop ); if ( res & FONTBOUNDINGBOX ) { in_ >> info.FBBx >> info.FBBy >> info.Xoff >> info.Yoff; if ( in_.fail() ) return false; // parse_error find &= ~FONTBOUNDINGBOX; continue; } if ( res & DWIDTH ) { in_ >> info.dwx0 >> info.dwy0; if ( in_.fail() ) return false; // parse_error find &= ~DWIDTH; info.has_global_dw = true; continue; } if ( res & DEFAULT_CHAR ) { in_ >> info.default_char; if ( in_.fail() ) return false; // parse_error find &= ~DEFAULT_CHAR; continue; } if ( res & NO_KEYWORD ) return false; // parse_error: unexpected EOF break; } if ( res != CHARS || ( find & FONTBOUNDINGBOX ) ) return false; // parse_error: required keyword missing or unexpeced keyword return true; } int parse_glyph( char_info& info, unichar& enc ) { info.has_dw = false; int e; int res; while ( 1 ) { res = find_keywords( ENCODING ); if ( res != ENCODING ) return 0; // no more glyphs in_ >> e; if ( in_.fail() ) return -1; // parse_error if ( e >= static_cast<int>(enc) ) break; } int find = BBX | DWIDTH; int stop = STARTCHAR | ENCODING | BITMAP | ENDCHAR | ENDFONT; while ( 1 ) { res = find_keywords( find | stop ); if ( res & BBX ) { in_ >> info.BBw >> info.BBh >> info.BBxoff0x >> info.BByoff0y; if ( in_.fail() ) return -1; // parse_error find &= ~BBX; continue; } if ( res & DWIDTH ) { in_ >> info.dwx0 >> info.dwy0; if ( in_.fail() ) return -1; // parse_error find &= ~DWIDTH; info.has_dw = true; continue; } if ( res & NO_KEYWORD ) return -1; // parse_error: unexpected EOF break; } if ( res != BITMAP || ( find != NO_KEYWORD ) ) return -1; // parse_error: required keyword missing or unexpeced keyword unsigned h = info.BBh; unsigned w = ( info.BBw + 7 ) / 8 * 2; info.bitmap.set_size( h, w ); for ( unsigned r = 0;r < h;r++ ) { trim(); std::string str = ""; extract_hex(str); if(str.size() < w) return -1; // parse_error for ( unsigned c = 0;c < w;c++ ) info.bitmap[r][c] = str[c]; } if ( in_.fail() ) return -1; // parse_error if ( required_keyword( ENDCHAR ) == false ) return -1; // parse_error: required keyword missing enc = e; return 1; } private: map<std::string, int>::kernel_1a_c keyword_map; tokenizer::kernel_1a_c tokzr; std::istream& in_; void extract_hex(std::string& str) { int type; std::string token; while ( 1 ) { type = tokzr.peek_type(); if ( type == tokenizer::kernel_1a_c::IDENTIFIER || type == tokenizer::kernel_1a_c::NUMBER ) { tokzr.get_token( type, token ); str += token; continue; } break; } } void trim() { int type; std::string token; while ( 1 ) { type = tokzr.peek_type(); if ( type == tokenizer::kernel_1a_c::WHITE_SPACE || type == tokenizer::kernel_1a_c::END_OF_LINE ) { tokzr.get_token( type, token ); continue; } break; } } bool required_keyword( int kw ) { int type; std::string token; while ( 1 ) { tokzr.get_token( type, token ); if ( type == tokenizer::kernel_1a_c::WHITE_SPACE || type == tokenizer::kernel_1a_c::END_OF_LINE ) continue; if ( type != tokenizer::kernel_1a_c::IDENTIFIER || keyword_map.is_in_domain( token ) == false || ( keyword_map[token] & kw ) == 0 ) return false; break; } return true; } int find_keywords( int find ) { int type; std::string token; while ( 1 ) { tokzr.get_token( type, token ); if ( type == tokenizer::kernel_1a_c::END_OF_FILE ) return NO_KEYWORD; if ( type == tokenizer::kernel_1a_c::IDENTIFIER && keyword_map.is_in_domain( token ) == true ) { int kw = keyword_map[token]; if ( kw & find ) return kw; } } return true; } }; } // ---------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------- // bdf_font functions // ---------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------- bdf_font::bdf_font( long default_char_ ) : default_char(0), is_initialized( false ), right_overflow_( 0 ), has_global_width( false ), specified_default_char( default_char_ ) { // make sure gl contains at least one letter gl.resize(1); } // ---------------------------------------------------------------------------------------- void bdf_font::adjust_metrics( ) { if ( is_initialized == false ) return; // set starting values for fbb if ( gl[default_char].num_of_points() > 0 ) { letter& g = gl[default_char]; fbb.set_top( g[0].y ); fbb.set_bottom( g[0].y ); fbb.set_left( g[0].x ); fbb.set_right( g[0].x ); } else { // ok, the default char was a space // let's just choose some safe arbitrary values then... fbb.set_top( 10000 ); fbb.set_bottom( -10000 ); fbb.set_left( 10000 ); fbb.set_right( -10000 ); } right_overflow_ = 0; for ( unichar n = 0; n < gl.size(); n++ ) { letter& g = gl[n]; unsigned short nr_pts = g.num_of_points(); for ( unsigned short k = 0;k < nr_pts;k++ ) { fbb.set_top( std::min( fbb.top(), (long)g[k].y ) ); fbb.set_left( std::min( fbb.left(), (long)g[k].x ) ); fbb.set_bottom( std::max( fbb.bottom(), (long)g[k].y ) ); fbb.set_right( std::max( fbb.right(), (long)g[k].x ) ); right_overflow_ = std::max( right_overflow_, (unsigned long)(g[k].x - g.width()) ); // superfluous? } } } // ---------------------------------------------------------------------------------------- long bdf_font:: read_bdf_file( std::istream& in, unichar max_enc, unichar min_enc ) { using namespace bdf_font_helpers; bdf_parser parser( in ); bdf_parser::header_info hinfo; bdf_parser::char_info cinfo; gl.resize(max_enc+1); hinfo.default_char = - 1; if ( is_initialized == false || static_cast<std::streamoff>(in.tellg()) == std::ios::beg ) { if ( parser.parse_header( hinfo ) == false ) return 0; // parse_error: invalid or missing header } else { // not start of file, so use values from previous read. hinfo.has_global_dw = has_global_width; hinfo.dwx0 = global_width; } int res; unichar nr_letters_added = 0; unsigned width; for ( unichar n = min_enc; n <= max_enc; n++ ) { if ( in.eof() ) break; long pos = in.tellg(); res = parser.parse_glyph( cinfo, n ); if ( res < 0 ) return 0; // parse_error if ( res == 0 ) continue; if ( n > max_enc ) { in.seekg( pos ); break; } if ( cinfo.has_dw == false ) { if ( hinfo.has_global_dw == false ) return 0; // neither width info for the glyph, nor for the font as a whole (monospace). width = hinfo.dwx0; } else width = cinfo.dwx0; if ( bitmap_to_letter( cinfo.bitmap, n, width, cinfo.BBxoff0x, cinfo.BByoff0y ) == false ) return 0; nr_letters_added++; if ( is_initialized == false ) { // Bonding rectangle for the font. fbb.set_top( -( hinfo.Yoff + hinfo.FBBy - 1 ) ); fbb.set_bottom( -hinfo.Yoff ); fbb.set_left( hinfo.Xoff ); fbb.set_right( hinfo.Xoff + hinfo.FBBx - 1 ); // We need to compute this after all the glyphs are loaded. right_overflow_ = 0; // set this to something valid now, just in case. default_char = n; // Save any global width in case we later read from the same file. has_global_width = hinfo.has_global_dw; if ( has_global_width ) global_width = hinfo.dwx0; // dont override value specified in the constructor with value specified in the file if ( specified_default_char < 0 && hinfo.default_char >= 0 ) specified_default_char = hinfo.default_char; is_initialized = true; } } if ( is_initialized == false ) return 0; // Not a single glyph was found within the specified range. if ( specified_default_char >= 0 ) default_char = specified_default_char; // no default char specified, try find something sane. else default_char = 0; return nr_letters_added; } // ---------------------------------------------------------------------------------------- bool bdf_font:: bitmap_to_letter( array2d<char>& bitmap, unichar enc, unsigned long width, int x_offset, int y_offset ) { unsigned nr_points = 0; bitmap.reset(); while ( bitmap.move_next() ) { unsigned char ch = bitmap.element(); if ( ch > '9' ) ch -= 'A' - '9' - 1; ch -= '0'; if ( ch > 0xF ) return false; // parse error: invalid hex digit bitmap.element() = ch; if ( ch & 8 ) nr_points++; if ( ch & 4 ) nr_points++; if ( ch & 2 ) nr_points++; if ( ch & 1 ) nr_points++; } letter( width, nr_points ).swap(gl[enc]); unsigned index = 0; for ( int r = 0;r < bitmap.nr();r++ ) { for ( int c = 0;c < bitmap.nc();c++ ) { int x = x_offset + c * 4; int y = -( y_offset + bitmap.nr() - r - 1 ); char ch = bitmap[r][c]; letter& glyph = gl[enc]; if ( ch & 8 ) { glyph[index] = letter::point( x, y ); right_overflow_ = std::max( right_overflow_, x - width ); index++; } if ( ch & 4 ) { glyph[index] = letter::point( x + 1, y ); right_overflow_ = std::max( right_overflow_, x + 1 - width ); index++; } if ( ch & 2 ) { glyph[index] = letter::point( x + 2, y ); right_overflow_ = std::max( right_overflow_, x + 2 - width ); index++; } if ( ch & 1 ) { glyph[index] = letter::point( x + 3, y ); right_overflow_ = std::max( right_overflow_, x + 3 - width ); index++; } } } return true; } #ifndef DLIB_NO_GUI_SUPPORT // ---------------------------------------------------------------------------------------- const std::shared_ptr<font> get_native_font ( ) { return nativefont::native_font::get_font(); } // ---------------------------------------------------------------------------------------- #endif } #endif // DLIB_FONTs_CPP_
[ "windheim@nowhere.com" ]
windheim@nowhere.com
c635f88982e2beacae31f8ae17b43dcf385ab80f
0dde4e977c748fe1dfa5458d9bf790e38ae5b3be
/trunk/calibration/sc_calib/gamecock/ParameterSlider.h
d9f6506016e4bb4c8f2d175aab291ad730f74c7a
[]
no_license
jasonbono/CLAS
e27a48f96b753e11a97803bbe4c782319c4f8534
c899062b8740cdb6ef04916d74f22cebc5d2c5f8
refs/heads/master
2020-05-24T03:56:12.542417
2019-05-16T17:50:31
2019-05-16T17:50:31
187,074,934
0
0
null
null
null
null
UTF-8
C++
false
false
660
h
#ifndef _PARAMETERSLIDER_H #define _PARAMETERSLIDER_H #include "ROOT.h" const int id_sli = 1; const int id_ent = 2; const int sliderSteps = 250; class ParameterSlider: public TGCompositeFrame { const TGWindow* parent; bool mouseHold; TGLabel* lab; TGHSlider* sli; TGNumberEntry* ent; int ipar; double value; double vmin; double vmax; public: ParameterSlider(const TGWindow *p, UInt_t w, UInt_t h, int ipar_, double value_, double vmin_, double vmax_); ~ParameterSlider(); int SetPosition(); double GetPosition(); double GetValue() { return value; } Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t so); }; #endif
[ "jason.s.bono@gmail.com" ]
jason.s.bono@gmail.com
640ff8cc247ec1cf96a172c1b960c3edb7c9d85e
30ae9ecbaac0c69546c8b3f17969f83f9b1c6cca
/level.h
9593d212a5115f63e74dbf2a08c9aade499c81b0
[]
no_license
happier/Quadris
8200ef7601d952b0b4c2780272f81c71c908e8c6
6a63abb0c425280965bfbfad8eee5b134e0eeae2
refs/heads/master
2021-01-18T03:54:09.771587
2011-11-23T20:11:56
2011-11-23T20:11:56
2,838,448
0
0
null
null
null
null
UTF-8
C++
false
false
525
h
#include "block.h" #include "board.h" #include <fstream> class level{ private: int score; int hiscore; int currentLevel; std::ifstream fs; //store the content in "sequence.txt" Board *b; char nextBlock; //record the type of the next block char numCharTransfer(int i); void restart(); int numGenerator(); void findNext(); //find the next block's type public: level(Board *b); Block* createNew(); void levelup(); // increase the level by 1 void leveldown(); //decrease the level by 1 };
[ "happier.yiyaoliu@gmail.com" ]
happier.yiyaoliu@gmail.com
d079f42303a8351a2944fd74ae1a416f1066b459
387549ab27d89668e656771a19c09637612d57ed
/DRGLib UE project/Source/FSD/Public/HitscanBaseComponent.h
7f40994a8505faaf4fdbfe7b8cafb5dcb3d70695
[ "MIT" ]
permissive
SamsDRGMods/DRGLib
3b7285488ef98b7b22ab4e00fec64a4c3fb6a30a
76f17bc76dd376f0d0aa09400ac8cb4daad34ade
refs/heads/main
2023-07-03T10:37:47.196444
2023-04-07T23:18:54
2023-04-07T23:18:54
383,509,787
16
5
MIT
2023-04-07T23:18:55
2021-07-06T15:08:14
C++
UTF-8
C++
false
false
4,300
h
#pragma once #include "CoreMinimal.h" #include "Curves/CurveFloat.h" #include "DelegateDelegate.h" #include "EImpactDecalSize.h" #include "ERicochetBehavior.h" #include "SpreadChangedDelegateDelegate.h" #include "WeaponFireComponent.h" #include "HitscanBaseComponent.generated.h" class AActor; class UDamageClass; class UDamageComponent; UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent)) class UHitscanBaseComponent : public UWeaponFireComponent { GENERATED_BODY() public: UPROPERTY(BlueprintAssignable, BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) FSpreadChangedDelegate OnSpreadChanged; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) FDelegate OnFireComplete; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float SpreadPerShot; protected: UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, Transient, meta=(AllowPrivateAccess=true)) UDamageComponent* DamageComponent; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) bool UseDamageComponent; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float Damage; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float ArmorDamageMultiplier; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) UDamageClass* DamageClass; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float WeakpointDamageMultiplier; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) int32 MaxPenetrations; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) EImpactDecalSize ImpactDecalSize; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float FriendlyFireModifier; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) bool UseDynamicSpread; UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true)) TArray<AActor*> IgnoredActorsInTrace; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float MinSpread; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float MinSpreadWhenMoving; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float MinSpreadWhenSprinting; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float MaxSpread; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) FRuntimeFloatCurve SpreadCurve; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float SpreadRecoveryPerSecond; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float VerticalSpreadMultiplier; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float HorizontalSpredMultiplier; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float MaxVerticalSpread; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float MaxHorizontalSpread; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) ERicochetBehavior RicochetBehavior; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float RicochetChance; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) bool RicochetOnWeakspotOnly; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) float RicochetMaxRange; public: UHitscanBaseComponent(); protected: UFUNCTION(BlueprintCallable, Reliable, Server) void Server_StopFire(); UFUNCTION(BlueprintCallable, Reliable, Server) void Server_RemoveDebris(int32 instance, int32 Component); public: UFUNCTION(BlueprintCallable, BlueprintPure) float GetCurrentVerticalSpread() const; UFUNCTION(BlueprintCallable, BlueprintPure) float GetCurrentHorizontalSpread() const; };
[ "samamstar@gmail.com" ]
samamstar@gmail.com
c3d6d89dda48456c2a70af1c73d7b6413d6fe6f3
299b377022f52b20e3c9696950da9007e9b078a4
/src/optimization/solvers/LP/direct/IPM/util.hpp
6018d0d5ede2ab17740ae0681381a4e37c97255d
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
sg0/Elemental
43cba65d001de299167363c349127cf8c23f7403
614f02509690449b553451e36bc78e7e132ea517
refs/heads/master
2021-01-15T09:33:56.394836
2016-02-29T18:25:53
2016-02-29T18:25:53
19,929,637
1
0
null
null
null
null
UTF-8
C++
false
false
8,401
hpp
/* Copyright (c) 2009-2015, Jack Poulson All rights reserved. This file is part of Elemental and is under the BSD 2-Clause License, which can be found in the LICENSE file in the root directory, or at http://opensource.org/licenses/BSD-2-Clause */ #include "El.hpp" #include "../../../QP/direct/IPM/util.hpp" namespace El { namespace lp { namespace direct { // Initialize // ========== template<typename Real> void Initialize ( const Matrix<Real>& A, const Matrix<Real>& b, const Matrix<Real>& c, Matrix<Real>& x, Matrix<Real>& y, Matrix<Real>& z, bool primalInitialized, bool dualInitialized, bool standardShift ); template<typename Real> void Initialize ( const AbstractDistMatrix<Real>& A, const AbstractDistMatrix<Real>& b, const AbstractDistMatrix<Real>& c, AbstractDistMatrix<Real>& x, AbstractDistMatrix<Real>& y, AbstractDistMatrix<Real>& z, bool primalInitialized, bool dualInitialized, bool standardShift ); template<typename Real> void Initialize ( const SparseMatrix<Real>& A, const Matrix<Real>& b, const Matrix<Real>& c, Matrix<Real>& x, Matrix<Real>& y, Matrix<Real>& z, vector<Int>& map, vector<Int>& invMap, Separator& rootSep, SymmNodeInfo& info, bool primalInitialized, bool dualInitialized, bool standardShift, bool progress ); template<typename Real> void Initialize ( const DistSparseMatrix<Real>& A, const DistMultiVec<Real>& b, const DistMultiVec<Real>& c, DistMultiVec<Real>& x, DistMultiVec<Real>& y, DistMultiVec<Real>& z, DistMap& map, DistMap& invMap, DistSeparator& rootSep, DistSymmNodeInfo& info, bool primalInitialized, bool dualInitialized, bool standardShift, bool progress ); // Full system // =========== template<typename Real> void KKT ( const Matrix<Real>& A, const Matrix<Real>& x, const Matrix<Real>& z, Matrix<Real>& J, bool onlyLower=true ); template<typename Real> void KKT ( const AbstractDistMatrix<Real>& A, const AbstractDistMatrix<Real>& x, const AbstractDistMatrix<Real>& z, AbstractDistMatrix<Real>& J, bool onlyLower=true ); template<typename Real> void KKT ( const SparseMatrix<Real>& A, const Matrix<Real>& x, const Matrix<Real>& z, SparseMatrix<Real>& J, bool onlyLower=true ); template<typename Real> void KKT ( const DistSparseMatrix<Real>& A, const DistMultiVec<Real>& x, const DistMultiVec<Real>& z, DistSparseMatrix<Real>& J, bool onlyLower=true ); using qp::direct::KKTRHS; using qp::direct::ExpandSolution; // Augmented system // ================ template<typename Real> void AugmentedKKT ( const Matrix<Real>& A, const Matrix<Real>& x, const Matrix<Real>& z, Matrix<Real>& J, bool onlyLower=true ); template<typename Real> void AugmentedKKT ( const AbstractDistMatrix<Real>& A, const AbstractDistMatrix<Real>& x, const AbstractDistMatrix<Real>& z, AbstractDistMatrix<Real>& J, bool onlyLower=true ); template<typename Real> void AugmentedKKT ( const SparseMatrix<Real>& A, const Matrix<Real>& x, const Matrix<Real>& z, SparseMatrix<Real>& J, bool onlyLower=true ); template<typename Real> void AugmentedKKT ( const DistSparseMatrix<Real>& A, const DistMultiVec<Real>& x, const DistMultiVec<Real>& z, DistSparseMatrix<Real>& J, bool onlyLower=true ); using qp::direct::AugmentedKKTRHS; using qp::direct::ExpandAugmentedSolution; // Normal system // ============= template<typename Real> void NormalKKT ( const Matrix<Real>& A, const Matrix<Real>& x, const Matrix<Real>& z, Matrix<Real>& J, bool onlyLower=true ); template<typename Real> void NormalKKT ( const AbstractDistMatrix<Real>& A, const AbstractDistMatrix<Real>& x, const AbstractDistMatrix<Real>& z, AbstractDistMatrix<Real>& J, bool onlyLower=true ); template<typename Real> void NormalKKT ( const SparseMatrix<Real>& A, const Matrix<Real>& x, const Matrix<Real>& z, SparseMatrix<Real>& J, bool onlyLower=true ); template<typename Real> void NormalKKT ( const DistSparseMatrix<Real>& A, const DistMultiVec<Real>& x, const DistMultiVec<Real>& z, DistSparseMatrix<Real>& J, bool onlyLower=true ); template<typename Real> void NormalKKTRHS ( const Matrix<Real>& A, const Matrix<Real>& x, const Matrix<Real>& z, const Matrix<Real>& rc, const Matrix<Real>& rb, const Matrix<Real>& rmu, Matrix<Real>& d ); template<typename Real> void NormalKKTRHS ( const AbstractDistMatrix<Real>& A, const AbstractDistMatrix<Real>& x, const AbstractDistMatrix<Real>& z, const AbstractDistMatrix<Real>& rc, const AbstractDistMatrix<Real>& rb, const AbstractDistMatrix<Real>& rmu, AbstractDistMatrix<Real>& d ); template<typename Real> void NormalKKTRHS ( const SparseMatrix<Real>& A, const Matrix<Real>& x, const Matrix<Real>& z, const Matrix<Real>& rc, const Matrix<Real>& rb, const Matrix<Real>& rmu, Matrix<Real>& d ); template<typename Real> void NormalKKTRHS ( const DistSparseMatrix<Real>& A, const DistMultiVec<Real>& x, const DistMultiVec<Real>& z, const DistMultiVec<Real>& rc, const DistMultiVec<Real>& rb, const DistMultiVec<Real>& rmu, DistMultiVec<Real>& d ); template<typename Real> void ExpandNormalSolution ( const Matrix<Real>& A, const Matrix<Real>& c, const Matrix<Real>& x, const Matrix<Real>& z, const Matrix<Real>& rc, const Matrix<Real>& rmu, Matrix<Real>& dx, const Matrix<Real>& dy, Matrix<Real>& dz ); template<typename Real> void ExpandNormalSolution ( const AbstractDistMatrix<Real>& A, const AbstractDistMatrix<Real>& c, const AbstractDistMatrix<Real>& x, const AbstractDistMatrix<Real>& z, const AbstractDistMatrix<Real>& rc, const AbstractDistMatrix<Real>& rmu, AbstractDistMatrix<Real>& dx, const AbstractDistMatrix<Real>& dy, AbstractDistMatrix<Real>& dz ); template<typename Real> void ExpandNormalSolution ( const SparseMatrix<Real>& A, const Matrix<Real>& c, const Matrix<Real>& x, const Matrix<Real>& z, const Matrix<Real>& rc, const Matrix<Real>& rmu, Matrix<Real>& dx, const Matrix<Real>& dy, Matrix<Real>& dz ); template<typename Real> void ExpandNormalSolution ( const DistSparseMatrix<Real>& A, const DistMultiVec<Real>& c, const DistMultiVec<Real>& x, const DistMultiVec<Real>& z, const DistMultiVec<Real>& rc, const DistMultiVec<Real>& rmu, DistMultiVec<Real>& dx, const DistMultiVec<Real>& dy, DistMultiVec<Real>& dz ); // Line search // =========== template<typename Real> Real IPFLineSearch ( const Matrix<Real>& A, const Matrix<Real>& b, const Matrix<Real>& c, const Matrix<Real>& x, const Matrix<Real>& y, const Matrix<Real>& z, const Matrix<Real>& dx, const Matrix<Real>& dy, const Matrix<Real>& dz, Real upperBound, Real bTol, Real cTol, const lp::IPFLineSearchCtrl<Real>& ctrl ); template<typename Real> Real IPFLineSearch ( const AbstractDistMatrix<Real>& A, const AbstractDistMatrix<Real>& b, const AbstractDistMatrix<Real>& c, const AbstractDistMatrix<Real>& x, const AbstractDistMatrix<Real>& y, const AbstractDistMatrix<Real>& z, const AbstractDistMatrix<Real>& dx, const AbstractDistMatrix<Real>& dy, const AbstractDistMatrix<Real>& dz, Real upperBound, Real bTol, Real cTol, const lp::IPFLineSearchCtrl<Real>& ctrl ); template<typename Real> Real IPFLineSearch ( const SparseMatrix<Real>& A, const Matrix<Real>& b, const Matrix<Real>& c, const Matrix<Real>& x, const Matrix<Real>& y, const Matrix<Real>& z, const Matrix<Real>& dx, const Matrix<Real>& dy, const Matrix<Real>& dz, Real upperBound, Real bTol, Real cTol, const lp::IPFLineSearchCtrl<Real>& ctrl ); template<typename Real> Real IPFLineSearch ( const DistSparseMatrix<Real>& A, const DistMultiVec<Real>& b, const DistMultiVec<Real>& c, const DistMultiVec<Real>& x, const DistMultiVec<Real>& y, const DistMultiVec<Real>& z, const DistMultiVec<Real>& dx, const DistMultiVec<Real>& dy, const DistMultiVec<Real>& dz, Real upperBound, Real bTol, Real cTol, const lp::IPFLineSearchCtrl<Real>& ctrl ); } // namespace direct } // namespace lp } // namespace El
[ "poulson@stanford.edu" ]
poulson@stanford.edu
13f2c136e94d31cc7381bd0d62064040ffe04c1a
7e25e2b300f42f0db4036e3d2d799669730f3c5f
/hw3/code/mydean/C++Support/List.H
43a593e6770f0b26a81f8bb37ac8b7b980bff048
[]
no_license
zipxup/Artificial-Intelligence
3630a30a1c986a31771030510245d614b6a7434c
34195951e23ae46d5fbc0f6eaa4162607cb84326
refs/heads/master
2021-07-23T22:42:55.736280
2017-11-03T06:00:53
2017-11-03T06:00:53
105,795,893
0
0
null
null
null
null
UTF-8
C++
false
false
9,037
h
#ifndef ListNode__HEADER #define ListNode__HEADER #include <iostream.h> /****************************************************************/ /* CLASS NAME : ListAbsNode */ /* The abstract base class for all list nodes. */ /* A list node can insert, remove, display, search, return */ /* wether the list is empty, and display itself. The elements */ /* can be accessed */ /* */ /* */ /* */ /* */ /* */ /****************************************************************/ template <class T,class K> class ListAbsNode { protected: ListAbsNode(){;} public: ListAbsNode(ListAbsNode<T,K>&){;} ListAbsNode<T,K>& operator=(ListAbsNode<T,K>&){;} virtual ~ListAbsNode(){;} virtual ListAbsNode<T,K>* insert(T* element,K* comparator){} virtual ListAbsNode<T,K>* remove(T*& element,K* comparator){} virtual int search(T* element, K* comparator) = 0; virtual int empty() = 0; virtual void display(K* visualizer) = 0; virtual ListAbsNode<T,K>* getNext() = 0; virtual void setNext(ListAbsNode<T,K>* next) = 0; virtual T* getElement() = 0; virtual void setElement(T* ) = 0; }; /****************************************************************/ /* CLASS NAME : ListAbsInternalNode */ /* Represents the internal node of a list data structure. */ /* */ /* */ /* */ /* */ /* */ /****************************************************************/ template <class T,class K> class ListAbsInternalNode : public ListAbsNode<T,K> { T* element_; ListAbsNode<T,K>* next_; public: // Default constructor ListAbsInternalNode() { element_ = 0; next_ = 0; } // Copy constructor ListAbsInternalNode(ListAbsInternalNode& node) { element_ = node.element_; if(node.getNext() == 0) { ListAbsTailNode<T,K>* tail_node = new ListAbsTailNode<T,K>; next_ = tail_node; } else { next_ = new ListAbsInternalNode (*((ListAbsInternalNode *) node.getNext())); } return; } // assignment operator ListAbsInternalNode& operator=(ListAbsInternalNode& node ) { element_ = node.element_; if(node.getNext() == 0) { ListAbsTailNode<T,K>* tail_node = new ListAbsTailNode<T,K>; next_ = tail_node; } else { next_ = new ListAbsInternalNode (*((ListAbsInternalNode *) node.getNext())); } return *this; } // creates an internal node ListAbsInternalNode(ListAbsNode<T,K>* next, T* element) { next_ = next; element_ = element; } // destructor virtual ~ListAbsInternalNode() { ; } // if the current element_ is equal to the element // as defined by the comparator equal function, // then a 1, is returned, otherwise the next // node is passed the search message virtual int search(T* element, K* comparator) { if (comparator->equal(element_, element)) { return 1; } else { return next_->search(element, comparator); } } // returns 0, i.e. the list is not empty virtual int empty() { return 0; } // uses the visualizer to display the node, and then // and then passes the display message to the next node virtual void display(K* visualizer) { visualizer->display(element_); getNext()->display(visualizer); } // ACCESSORS virtual ListAbsNode<T,K>* getNext() { return next_; } virtual void setNext(ListAbsNode<T,K>* next) { next_ = next; } virtual void setElement(T* element) { element_ = element; } virtual T* getElement() { return element_; } }; /****************************************************************/ /* CLASS NAME : ListAbsTailNode */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /****************************************************************/ template <class T,class K> class ListAbsTailNode : public ListAbsNode<T,K> { public: ListAbsTailNode() { // Default Constructor } ListAbsTailNode(ListAbsTailNode<T,K>& node) { // Copy constructor } ListAbsTailNode<T,K>& operator=(ListAbsTailNode<T,K>& node) { // Assignment operator } virtual ~ListAbsTailNode() { // Destructor } virtual int empty() { // returns, true return 1; } // ACCESSORS // returns 0, i.e. there is no next node virtual ListAbsNode<T,K>* getNext() { return 0; } virtual void setNext(ListAbsNode<T,K>* next) { } virtual T* getElement() { return 0; } virtual void setElement(T*) { } virtual int search(T* node, K* comparator) { return 0; } virtual void display(K* visualizer) {;} }; /****************************************************************/ /* CLASS NAME : ListAbsHeadNode */ /* */ /* */ /* */ /* */ /* */ /* */ /****************************************************************/ template <class T,class K> class ListAbsHeadNode : public ListAbsNode<T,K> { ListAbsNode<T,K>* next_; // the next node public: // Default constructor ListAbsHeadNode() { next_ = 0; } // copy constructor ListAbsHeadNode(ListAbsHeadNode& node) { if(node.getNext() == 0) { next_ = new ListAbsTailNode<T,K>; } else { next_ = new ListAbsInternalNode<T,K> (*((ListAbsInternalNode<T,K> *) node.getNext())); } } // creates a head node, with a next pointer ListAbsHeadNode(ListAbsNode<T,K>* next) { next_ = next; } // overloaded assignment operator ListAbsHeadNode& operator=(ListAbsHeadNode& node) { if(node.getNext() == 0) { next_ = new ListAbsTailNode<T,K>; } else { next_ = new ListAbsInternalNode<T,K> (*((ListAbsInternalNode<T,K> *) node.getNext())); } return *this; } // Destructor virtual ~ListAbsHeadNode() { } // passes the search message to the next node, and returns the // result from the next node virtual int search(T* element, K* comparator) { return next_->search(element, comparator); } // passes the message to the next node, which then returns the result virtual int empty() { return next_->empty(); } // ACCESSORS virtual void setNext(ListAbsNode<T,K>* next) { next_ = next; } virtual void display(K* visualizer) { getNext()->display(visualizer); } virtual ListAbsNode<T,K>* getNext() { return next_; } virtual T* getElement() { return 0; } virtual void setElement(T*) { } }; #endif
[ "619818283@qq.com" ]
619818283@qq.com
9f9585e006b91c657329e44e8cacc67b59cb39ff
d7085a2924fb839285146f88518c69c567e77968
/KS/SRC/eventmgr.cpp
81a56cc425e24aab7d3e52fedb4e7763e947942c
[]
no_license
historicalsource/kelly-slaters-pro-surfer
540f8f39c07e881e9ecebc764954c3579903ad85
7c3ade041cc03409a3114ce3ba4a70053c6e4e3b
refs/heads/main
2023-07-04T09:34:09.267099
2021-07-29T19:35:13
2021-07-29T19:35:13
390,831,183
40
2
null
null
null
null
UTF-8
C++
false
false
714
cpp
/*------------------------------------------------------------------------------------------------------- EVENTMGR.CPP - Event manager implementation -------------------------------------------------------------------------------------------------------*/ #include "global.h" #include "eventmgr.h" DEFINE_SINGLETON(event_mgr); void event_mgr::register_handler(event_handler* h) { handlers.push_back(h); } void event_mgr::unregister_handler(event_handler* h) { handlers.remove(h); } void event_mgr::dispatch(event_t type, uint32 param) { for (list<event_handler *>::const_iterator it = handlers.begin(); it != handlers.end(); ++it) (*it)->handle_event( type, param ); }
[ "root@teamarchive2.fnf.archive.org" ]
root@teamarchive2.fnf.archive.org
b2c25113b6a22c16d07614667f36fab2154211e5
248785ed4d072269e3977b83a34c4031d3bc1618
/projects/Project Dragon/src/WorldBuilderV2.cpp
3a495e1c4a0732cf00875c8653f37f2c337f1ec6
[]
no_license
ALAND0NG/CG-MIDTERM
736addd655cb246172f628432391460dd189574c
9ef6ceedfb71aef0307ddf14b77f3bf17163cbf1
refs/heads/master
2023-03-02T17:35:37.919528
2021-02-15T04:50:11
2021-02-15T04:50:11
338,968,714
0
0
null
null
null
null
UTF-8
C++
false
false
3,979
cpp
// // // -- World Builder V2 -- // // #include "WorldBuilderV2.h" void WorldBuilderV2::BuildNewWorld() { DestroyCurrentWorld(); ResetWorldData(); FillWorldData(); int temp = 0; for each (int i in WorldData) { if (i > 0) temp += 1; } std::cout << "\n\n\nWorld Size: " << temp << "\n\n\n"; GenerateTiles(); } void WorldBuilderV2::ResetWorldData() { for each (bool i in WorldData) { i = 0; std::cout << i << '\n'; } } void WorldBuilderV2::DestroyCurrentWorld() { for each (GameObject node in currentWorldGOs) { std::cout << "Destroying OBJ In: CurrentWorldGos."; RenderingManager::activeScene->RemoveEntity(node); } currentWorldGOs.clear(); } void WorldBuilderV2::FillWorldData() { srand(time(NULL)); bool isBuilding = true; bool canLeft, canRight, canUp, canDown; int currentX = 15, currentY = 15; int pastX, pastY; int MovementData = 4; while (isBuilding) { canLeft = false; canRight = false; canUp = false; canDown = false; //Sets tile at start WorldData[currentX][currentY] = 5; pastX = currentX; pastY = currentY; //Data check if (WorldData[currentX + 1][currentY] < 1 && currentX < 24) canRight = true; if (WorldData[currentX - 1][currentY] < 1 && currentX > 1) canLeft = true; if (WorldData[currentX][currentY + 1] < 1 && currentY < 24) canUp = true; if (WorldData[currentX][currentY - 1] < 1 && currentY > 1) canDown = true; //Exit Check if (!canLeft && !canRight && !canUp && !canDown) isBuilding = false; else { bool temp = false; while (!temp) { switch (rand() % 4) { case 0: if (canLeft) { currentX -= 1; MovementData = 3; temp = true; } break; case 1: if (canRight) { currentX += 1; MovementData = 2; temp = true; } break; case 2: if (canUp) { currentY += 1; MovementData = 0; temp = true; } break; case 3: if (canDown) { currentY -= 1; MovementData = 1; temp = true; } break; } } } } } void WorldBuilderV2::GenerateTiles() { // // TEMP -- Builds the world of empty tiles -- TEMP // for (int x = 0; x < 25; x++) { for (int y = 0; y < 25; y++) { if (WorldData[x][y] > 0) { //Floor InstantiatingSystem::LoadPrefabFromFile(glm::vec3(x * 20, y * 20, 0) , "node/Blank_Floor_Tile.node"); currentWorldGOs.push_back(InstantiatingSystem::m_Instantiated[InstantiatingSystem::m_Instantiated.size() - 1]); //Roof //InstantiatingSystem::LoadPrefabFromFile(glm::vec3(x * 20, y * 20, 20) //, "node/Blank_Floor_Tile.node"); // // Exterior Walls // if (WorldData[x][y + 1] < 1) { InstantiatingSystem::LoadPrefabFromFile(glm::vec3(x * 20, (y * 20) + 10, 10) , "node/Blank_Wall_Y.node"); currentWorldGOs.push_back(InstantiatingSystem::m_Instantiated[InstantiatingSystem::m_Instantiated.size() - 1]); } if (WorldData[x][y - 1] < 1) { InstantiatingSystem::LoadPrefabFromFile(glm::vec3(x * 20, (y * 20) - 10, 10) , "node/Blank_Wall_Y.node"); \ currentWorldGOs.push_back(InstantiatingSystem::m_Instantiated[InstantiatingSystem::m_Instantiated.size() - 1]); } if (WorldData[x + 1][y] < 1) { InstantiatingSystem::LoadPrefabFromFile(glm::vec3((x * 20) + 10, y * 20, 10) , "node/Blank_Wall_X.node"); currentWorldGOs.push_back(InstantiatingSystem::m_Instantiated[InstantiatingSystem::m_Instantiated.size() - 1]); } if (WorldData[x - 1][y] < 1) { InstantiatingSystem::LoadPrefabFromFile(glm::vec3((x * 20) - 10, y * 20, 10) , "node/Blank_Wall_X.node"); currentWorldGOs.push_back(InstantiatingSystem::m_Instantiated[InstantiatingSystem::m_Instantiated.size() - 1]); } std::cout << "\n[" << x << "][" << y << "]\n"; } } } }
[ "alan1216221973@gmail.com" ]
alan1216221973@gmail.com
3a47b9b4eee1c78efecad3895fd07e59e1cd3575
d06856e6c22e37bb86856daa47cb7b51da78d698
/Source/WebKit2/WebProcess/WebPage/FindController.h
da03b79a79c2c7a9c3b13d7542e4c01d1ad3e1e9
[]
no_license
sfarbotka/py3webkit
8ddd2288e72a08deefc18a2ddf661a06185ad924
4492fc82c67189931141ee64e1cc5df7e5331bf9
refs/heads/master
2016-09-05T17:32:02.639162
2012-02-08T15:14:28
2012-02-08T15:14:28
3,235,299
6
0
null
null
null
null
UTF-8
C++
false
false
3,081
h
/* * Copyright (C) 2010 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. 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. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS 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 APPLE INC. OR ITS 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. */ #ifndef FindController_h #define FindController_h #include "PageOverlay.h" #include "WebFindOptions.h" #include <wtf/Forward.h> #include <wtf/Noncopyable.h> #include <wtf/Vector.h> namespace WebCore { class Frame; class IntRect; } namespace WebKit { class WebPage; class FindController : private PageOverlay::Client { WTF_MAKE_NONCOPYABLE(FindController); public: explicit FindController(WebPage*); virtual ~FindController(); void findString(const String&, FindOptions, unsigned maxMatchCount); void hideFindUI(); void countStringMatches(const String&, FindOptions, unsigned maxMatchCount); void hideFindIndicator(); void showFindIndicatorInSelection(); bool isShowingOverlay() const { return m_isShowingFindIndicator && m_findPageOverlay; } void deviceScaleFactorDidChange(); private: // PageOverlay::Client. virtual void pageOverlayDestroyed(PageOverlay*); virtual void willMoveToWebPage(PageOverlay*, WebPage*); virtual void didMoveToWebPage(PageOverlay*, WebPage*); virtual bool mouseEvent(PageOverlay*, const WebMouseEvent&); virtual void drawRect(PageOverlay*, WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect); Vector<WebCore::IntRect> rectsForTextMatches(); bool updateFindIndicator(WebCore::Frame* selectedFrame, bool isShowingOverlay, bool shouldAnimate = true); private: WebPage* m_webPage; PageOverlay* m_findPageOverlay; // Whether the UI process is showing the find indicator. Note that this can be true even if // the find indicator isn't showing, but it will never be false when it is showing. bool m_isShowingFindIndicator; }; } // namespace WebKit #endif // FindController_h
[ "z8sergey8z@gmail.com" ]
z8sergey8z@gmail.com
2b08a8a20c006b29d070d4fd030f8d50e6c69079
607bf4f7abe5b7315232e793e43a409936340c33
/2__2.cpp
bc776763f4e8179886dcdea43bf3e6786900303b
[]
no_license
MusorinDima/ProjectC
70587a7c508a757d7949071f7cbd2613e33e2cbd
d2d8721bd27a321d43ef13c6fbc4191c5c43cabb
refs/heads/master
2023-08-23T04:35:02.096438
2021-11-04T14:15:55
2021-11-04T14:15:55
415,130,872
0
1
null
2021-11-02T12:36:37
2021-10-08T21:25:10
C++
UTF-8
C++
false
false
694
cpp
// // Created by dimam on 30.10.2021. // #include <iostream> #include<cstdlib> #include<math.h> using namespace std; int main() { setlocale(0, ""); float w, a, x; cout << "Vvedi a" << endl; cin >> a; cout << "Vvedi x" << endl; cin >> x; if (abs(x) < 1) { if (x != 0) { w = a * log(abs(x)); cout << "w =" << w << endl; } else{ cout << "ln (0) ne opredelen" << endl; } } else{ if (a >=pow(x, 2)) { w = pow((a - pow(x, 2)), 0.5); cout << "w =" << w << endl; } else { cout << "Net resheniya" << endl; } } return 0; }
[ "dimamusorin542@gmail.com" ]
dimamusorin542@gmail.com
d0cecce8549b673cc9ba6df23911f10535348980
c0fafe98005cff806723bea362e0e81bdc37a48d
/hphp/runtime/ext/asio/external_thread_event_wait_handle.cpp
95f604d3dc371e2ca4a9309596e73afa7297b626
[ "PHP-3.01", "LicenseRef-scancode-unknown-license-reference", "Zend-2.0" ]
permissive
orakle/hiphop-php
8d15b46ff5197b90004f6d327cc7d16f113b8bf4
56172bc9fca251456620584be4959f1d333bf851
refs/heads/master
2021-01-17T22:46:54.676566
2013-05-25T19:25:57
2013-05-25T19:25:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,264
cpp
/* +----------------------------------------------------------------------+ | HipHop for PHP | +----------------------------------------------------------------------+ | Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) | | Copyright (c) 1997-2010 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ */ #include "hphp/runtime/ext/ext_asio.h" #include "hphp/runtime/ext/asio/asio_external_thread_event.h" #include "hphp/runtime/ext/asio/asio_session.h" #include "hphp/system/lib/systemlib.h" namespace HPHP { /////////////////////////////////////////////////////////////////////////////// namespace { StaticString s_externalThreadEvent("<external-thread-event>"); } c_ExternalThreadEventWaitHandle::c_ExternalThreadEventWaitHandle(Class *cb) : c_WaitableWaitHandle(cb) { } c_ExternalThreadEventWaitHandle::~c_ExternalThreadEventWaitHandle() { } void c_ExternalThreadEventWaitHandle::sweep() { assert(getState() == STATE_WAITING); if (m_event->cancel()) { // canceled; the processing thread will take care of cleanup return; } // event has finished, but process() was not called yet auto session = AsioSession::Get(); bool done = false; do { auto ete_wh = session->waitForExternalThreadEvents(); while (ete_wh) { done |= ete_wh == this; auto next_wh = ete_wh->getNextToProcess(); ete_wh->abandon(true); ete_wh = next_wh; } } while (!done); } void c_ExternalThreadEventWaitHandle::t___construct() { Object e(SystemLib::AllocInvalidOperationExceptionObject( "ExternalThreadEventWaitHandle can be constructed only from extension")); throw e; } c_ExternalThreadEventWaitHandle* c_ExternalThreadEventWaitHandle::Create(AsioExternalThreadEvent* event, ObjectData* priv_data) { c_ExternalThreadEventWaitHandle* wh = NEWOBJ(c_ExternalThreadEventWaitHandle); wh->initialize(event, priv_data); return wh; } void c_ExternalThreadEventWaitHandle::initialize(AsioExternalThreadEvent* event, ObjectData* priv_data) { // this wait handle is owned by existence of unprocessed event incRefCount(); m_event = event; m_privData = priv_data; setState(STATE_WAITING); if (isInContext()) { m_index = getContext()->registerExternalThreadEvent(this); } } void c_ExternalThreadEventWaitHandle::abandon(bool sweeping) { assert(getState() == STATE_WAITING); assert(getCount() == 1 || sweeping); if (isInContext()) { getContext()->unregisterExternalThreadEvent(m_index); } // event is abandoned, destroy it, unregister sweepable and decref ownership m_event->release(); m_event = nullptr; unregister(); decRefObj(this); } void c_ExternalThreadEventWaitHandle::process() { assert(getState() == STATE_WAITING); if (isInContext()) { getContext()->unregisterExternalThreadEvent(m_index); } try { TypedValue result; m_event->unserialize(&result); assert(tvIsPlausible(&result)); setResult(&result); tvRefcountedDecRefCell(&result); } catch (const Object& exception) { setException(exception.get()); } // event is processed, destroy it, unregister sweepable and decref ownership m_event->release(); m_event = nullptr; m_privData = nullptr; unregister(); decRefObj(this); } String c_ExternalThreadEventWaitHandle::getName() { return s_externalThreadEvent; } void c_ExternalThreadEventWaitHandle::enterContext(context_idx_t ctx_idx) { assert(AsioSession::Get()->getContext(ctx_idx)); // stop before corrupting unioned data if (isFinished()) { return; } // already in the more specific context? if (LIKELY(getContextIdx() >= ctx_idx)) { return; } assert(getState() == STATE_WAITING); if (isInContext()) { getContext()->unregisterExternalThreadEvent(m_index); } setContextIdx(ctx_idx); m_index = getContext()->registerExternalThreadEvent(this); } void c_ExternalThreadEventWaitHandle::exitContext(context_idx_t ctx_idx) { assert(AsioSession::Get()->getContext(ctx_idx)); assert(getContextIdx() == ctx_idx); assert(getState() == STATE_WAITING); // move us to the parent context setContextIdx(getContextIdx() - 1); // re-register if still in a context if (isInContext()) { getContext()->registerExternalThreadEvent(this); } // recursively move all wait handles blocked by us for (auto pwh = getFirstParent(); pwh; pwh = pwh->getNextParent()) { pwh->exitContextBlocked(ctx_idx); } } /////////////////////////////////////////////////////////////////////////////// }
[ "sgolemon@fb.com" ]
sgolemon@fb.com
0d27b7d6a134f368f5f2de8caad9c38e8ecc852a
6e8f3cddd5dec49802c535f8985169a930397bb0
/Part_5/irb140/irb140_planner/src/irb140_cart_move_as.cpp
3cc9ff6c1ca66992f180d1e4ff168d2bb362a99f
[]
no_license
rojas70/learning_ros_noetic
539a9f380ad1aae41fda0935e69096502a9f89d1
16003f47286a14045cc791dd50834489cf94ebb1
refs/heads/main
2023-05-09T20:39:59.717015
2021-05-20T02:43:08
2021-05-20T02:43:08
314,724,187
1
7
null
2021-03-16T02:35:50
2020-11-21T03:27:42
null
UTF-8
C++
false
false
3,426
cpp
// irb140_cart_move_as: // wsn, Nov, 2018 // action server to accept commands and perform planning and motion requests //#include <arm_motion_interface/arm_motion_interface.h> #include <irb140_fk_ik/irb140_kinematics.h> //in this case, choose irb140; change this for different robots #include <fk_ik_virtual/fk_ik_virtual.h> //defines the base class with virtual fncs #include <arm_motion_interface/arm_motion_interface.h> #include <generic_cartesian_planner/generic_cartesian_planner.h> #include <cartesian_interpolator/cartesian_interpolator.h> #include "robot_specific_fk_ik_mappings.h" //SPECIFIC TO TARGET ROBOT #include "robot_specific_names.h" //THIS MUST BE SPECIFIC TO TARGET ROBOT #include "planner_joint_weights.h" //need these for joint-space planner; int main(int argc, char** argv) { ros::init(argc, argv, "irb140_cart_move_as"); ros::NodeHandle nh; //standard ros node handle //TEST TEST TEST //this is odd...possibly a catkin-simple thing. Needed to instantiate a CartesianInerpolator to coerce compilation--likely linking oddity CartesianInterpolator cartesianInterpolator; //TEST TEST TEST Eigen::VectorXd q_vec; q_vec.resize(6); q_vec<<0,0,0,0,0,0; //Eigen::Affine3d fwd_kin_solve(Eigen::VectorXd const& q_vec) Eigen::Affine3d test_affine; test_affine = robotSpecificFK.fwd_kin_solve(q_vec); std::cout<<"fwd kin of home pose: origin = "<<test_affine.translation().transpose()<<std::endl; ROS_INFO("again..."); test_affine = pFwdSolver->fwd_kin_solve(q_vec); std::cout<<"fwd kin of home pose: origin = "<<test_affine.translation().transpose()<<std::endl; int njnts = g_jnt_names.size(); ArmMotionInterfaceInits armMotionInterfaceInits; armMotionInterfaceInits.urdf_base_frame_name = g_urdf_base_frame_name; armMotionInterfaceInits.urdf_flange_frame_name = g_urdf_flange_frame_name; armMotionInterfaceInits.joint_states_topic_name = g_joint_states_topic_name; armMotionInterfaceInits.traj_pub_topic_name = g_traj_pub_topic_name; armMotionInterfaceInits.traj_as_name = g_traj_as_name; armMotionInterfaceInits.jnt_names = g_jnt_names; armMotionInterfaceInits.pIKSolver_arg = pIKSolver; armMotionInterfaceInits.pFwdSolver_arg = pFwdSolver; armMotionInterfaceInits.use_trajectory_action_server = g_use_trajectory_action_server; for (int i=0;i<njnts;i++) { armMotionInterfaceInits.q_lower_limits.push_back(q_lower_limits[i]); armMotionInterfaceInits.q_upper_limits.push_back(q_upper_limits[i]); armMotionInterfaceInits.qdot_max_vec.push_back(g_qdot_max_vec[i]); armMotionInterfaceInits.q_home_pose.push_back(g_q_home_pose[i]); armMotionInterfaceInits.planner_joint_weights.push_back(g_planner_joint_weights[i]); } ROS_INFO("instantiating an ArmMotionInterface"); ArmMotionInterface armMotionInterface(&nh,armMotionInterfaceInits); //geometry_msgs::PoseStamped toolframe_pose; //ros::Publisher toolframe_pose_publisher= nh.advertise<geometry_msgs::PoseStamped>("toolframe_pose", 1, true); // start servicing requests: ROS_INFO("ready to start servicing cartesian-space goals"); while (ros::ok()) { ros::spinOnce(); ros::Duration(0.05).sleep(); //don't consume much cpu time if not actively working on a command } return 0; }
[ "cxq41@case.edu" ]
cxq41@case.edu
8da891ea955fbfc9334f65eed428a905e76bf51f
b2d46af9c6152323ce240374afc998c1574db71f
/cursovideojuegos/theflostiproject/Code/Flosti Engine/Input/__PCH_Input.h
cebcb88ef12b6d823e71f9431b94beed0a3d76ba
[]
no_license
bugbit/cipsaoscar
601b4da0f0a647e71717ed35ee5c2f2d63c8a0f4
52aa8b4b67d48f59e46cb43527480f8b3552e96d
refs/heads/master
2021-01-10T21:31:18.653163
2011-09-28T16:39:12
2011-09-28T16:39:12
33,032,640
0
0
null
null
null
null
UTF-8
C++
false
false
265
h
#pragma once #ifndef __PCH_INPUT_H__ #define __PCH_INPUT_H__ // Add here the more used includes... #include <Base.h> #include <vector> #include <map> #include <string> #include "Assert.h" #include "Math/MathUtils.h" #include "Math/Vector3.h" #endif
[ "ohernandezba@71d53fa2-cca5-e1f2-4b5e-677cbd06613a" ]
ohernandezba@71d53fa2-cca5-e1f2-4b5e-677cbd06613a
baee8cc4e43a1a5b537690cf998dec405bb59bc9
2b984e87cc5239bda08a9de7ddd31ad2a18774d5
/baekjoon/10868.cpp
0e8bb967e806b110abed8f55f55e0bd49b4555c0
[]
no_license
pce913/Algorithm
f862d0f450471c3b910bcf50e684caf856ec4165
1cb695972ea6804c8d669a9b606f1aaf87360af6
refs/heads/master
2022-02-08T06:51:39.537054
2022-01-31T16:20:03
2022-01-31T16:20:03
110,357,251
0
0
null
null
null
null
UHC
C++
false
false
2,230
cpp
#include<stdio.h> #include<algorithm> using namespace std; int a[100001]; int tree[300001]; // 배열의 최대길이보다 3배 정도로 잡아야 한다. int query(int node, int start, int end, int i, int j){ // i,j 우리가 구하고 싶은 범위 i~j if (i > end || j < start) return 1300000000; if (i <= start && j >= end) return tree[node]; return min(query(2 * node, start, (start + end) / 2, i, j), query(2 * node + 1, (start + end) / 2 + 1, end, i, j)); } void init(int node, int start, int end){ // 구간의 start값과 end if (start == end) tree[node] = a[start]; else{ init(2 * node, start, (start + end) / 2); init(2 * node + 1, (start + end) / 2 + 1, end); tree[node] = min(tree[2 * node], tree[2 * node + 1]); // 구간의 최소값 미리 구해놓는다. } } int main(){ int n, m; scanf("%d %d", &n, &m); for (int i = 1; i <= n; i++){ scanf("%d", &a[i]); } init(1, 1, n); for (int test = 0; test < m; test++){ int a, b; scanf("%d %d", &a, &b); printf("%d\n", query(1, 1, n, a, b)); } return 0; } //#include<stdio.h> //#include<algorithm> //#include<vector> //using namespace std; // //int query(vector<int>& tree, int node, int start, int end, int left, int right) //{ // if (left > end || right < start) // return 1300000000; // if (left <= start && end <= right) // return tree[node]; // // return min(query(tree, node * 2, start, (start + end) / 2, left, right), // query(tree, node * 2 + 1, (start + end) / 2 + 1, end, left, right)); //} // //void init(vector<int>& arr, vector<int>& tree, int node, int start, int end) //{ // if (start == end){ // tree[node] = arr[start]; // } // else{ // init(arr, tree, 2 * node, start, (start + end) / 2); // init(arr, tree, 2 * node + 1, (start + end) / 2 + 1, end); // tree[node] = min(tree[2*node],tree[2*node+1]); // } //} //int arr[100001]; // //int main(){ // int n, m; // scanf("%d %d", &n, &m); // vector<int> arr(n+1); // vector<int> tree(4*n); // for (int i = 1; i <= n; i++){ // scanf("%d", &arr[i]); // } // init(arr,tree,1, 1, n); // for (int test = 0; test < m; test++){ // int a, b; // scanf("%d %d", &a, &b); // printf("%d\n", query(tree,1, 1, n, a, b)); // } // return 0; //}
[ "pce0913@naver.com" ]
pce0913@naver.com
91a9e4767607a776a1e21b39c0c75047bd97d90b
3ce84c6401e12cf955a04e3692ce98dc15fa55da
/applications/drone/drone-core/radio/r9Module.h
a31bbab41aff1690cc3420d9497274e00b05b2a4
[]
no_license
PimenovAlexander/corecvs
b3470cac2c1853d3237daafc46769c15223020c9
67a92793aa819e6931f0c46e8e9167cf6f322244
refs/heads/master_cmake
2021-10-09T10:12:37.980459
2021-09-28T23:19:31
2021-09-28T23:19:31
13,349,418
15
68
null
2021-08-24T18:38:04
2013-10-05T17:35:48
C++
UTF-8
C++
false
false
833
h
#ifndef FRSKYMULTIMODULE_H #define FRSKYMULTIMODULE_H #include <stdint.h> class R9Module { public: enum ChannelID { CHANNEL_0, CHANNEL_THROTTLE = CHANNEL_0, CHANNEL_1, CHANNEL_ROLL = CHANNEL_1, CHANNEL_2, CHANNEL_PITCH = CHANNEL_2, CHANNEL_3, CHANNEL_YAW = CHANNEL_3, CHANNEL_4, CHANNEL_5, CHANNEL_6, CHANNEL_7, CHANNEL_LAST }; static const int MESSAGE_SIZE = 26; /** Each channel is 10 bit in FrSky **/ static const int MASK = 0x3FF; static const int MAGIC_DIFFERENCE = 858; static void pack (int16_t channels[CHANNEL_LAST], uint8_t message[MESSAGE_SIZE]); static void pack1(int16_t channels[CHANNEL_LAST], uint8_t message[MESSAGE_SIZE]); }; #endif // FRSKYMULTIMODULE_H
[ "Aleksandr.Pimenov@lanit-tercom.com" ]
Aleksandr.Pimenov@lanit-tercom.com
b25007cca23805423c89d076cb59b3a0cbca0902
6f4883cec42366e1ed7dc4ddf25b56e7702b0c69
/3232/5607601_WA.cpp
01faba45648797eca3cdf20679adf1e5aa87a513
[]
no_license
15800688908/poj-codes
89e3739df0db4bd4fe22db3e0bf839fc7abe35d1
913331dd1cfb6a422fb90175dcddb54b577d1059
refs/heads/master
2022-01-25T07:55:15.590648
2016-09-30T13:08:24
2016-09-30T13:08:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
846
cpp
#include<cstdio> int a[110000],n,m,water; int left,right,mid; int check() { int i; __int64 total,tmp,v; total=(__int64)(m*mid); for(i=1;i<=n;i++) { v=a[i]-mid; if(v<=0) continue; if(v%water) tmp=(v/water)+1; else tmp=v/water; if(tmp>mid) return 0; total-=tmp; if(total<0) return 0; } return 1; } int main() { int i,T; scanf("%d",&T); while(T--) { scanf("%d",&n); left=1; right=0; for(i=1;i<=n;i++) { scanf("%d",&a[i]); if(a[i]>right) right=a[i]; } scanf("%d %d",&m,&water); if(water==1) { printf("%d\n",right); continue; } water--; while(left<=right) { mid=(left+right)/2; if(check()) right=mid-1; else left=mid+1; } printf("%d\n",left); } return 0; }
[ "dilin.life@gmail.com" ]
dilin.life@gmail.com
15ab479f3754b841972137612c6da13f38bc6482
34aac694ccb9f953456a5cd2328ab1ea15abb799
/UVa_ACM/101 - Volume CI/UVa 10196(Simple, Simulation, Ad-hoc, Board-game, Chess).cpp
d639bd539b518b1d889f446532f846a4aca63833
[]
no_license
ottersome/Judge-1
98eca71c2f847032dc976cb1ffe63887bbc15339
1996a49293bde9bc15162501a23d7b51a3830185
refs/heads/master
2020-04-30T07:08:26.341120
2017-08-28T12:32:47
2017-08-28T12:32:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,298
cpp
#include <stdio.h> #include <string.h> #include <iostream> #include <string> using namespace std; char B[10][10]; string check = "Kk"; int Input() { int i, j; memset(B, 0, sizeof(B)); for (i = 1; i <= 8; i++) { for (j = 1; j <= 8; j++) if ((B[i][j] = getchar()) == EOF) return EOF; getchar(); } getchar(); for (i = 1; i <= 8; i++) for (j = 1; j <= 8; j++) if (B[i][j] != '.') return 1; return EOF; } int Pawn(int x, int y, int w, int p) { if (B[x + w][y - 1] == check[p] || B[x + w][y + 1] == check[p]) return 1; return 0; } int King(int x, int y, int p) { int dx[8] = {-1, -1, -1, 0, 0, 1, 1, 1}; int dy[8] = {-1, 0, 1, -1, 1, -1, 0, 1}; int i; for (i = 0; i < 8; i++) if (B[x +dx[i]][y + dy[i]] == check[p]) return 1; return 0; } int Bishop(int x, int y, int p) { int dx[4] = {-1, -1, 1, 1}; int dy[4] = {-1, 1, -1, 1}; int i, j, tx, ty; char b; for (i = 0; i < 4; i++) { tx = x, ty = y; for (j = 1; 1; j++) { tx += dx[i]; ty += dy[i]; if (tx < 0 || tx > 8 || ty < 0 || ty > 8) break; b = B[tx][ty]; if ((b >= 'A' && b <= 'Z') || (b >= 'a' && b <= 'z')) { if (b == check[p]) return 1; else break; } } } return 0; } int Rook(int x, int y, int p) { int dx[4] = {-1, 0, 0, 1}; int dy[4] = {0, 1, -1, 0}; int i, j, tx, ty; char b; for (i = 0; i < 4; i++) { tx = x, ty = y; for (j = 1; 1; j++) { tx += dx[i]; ty += dy[i]; if (tx < 0 || tx > 8 || ty < 0 || ty > 8) break; b = B[tx][ty]; if ((b >= 'A' && b <= 'Z') || (b >= 'a' && b <= 'z')) { if (b == check[p]) return 1; else break; } } } return 0; } int kNight(int x, int y, int p) { int dx[8] = {-2, -1, 1, 2, 2, 1, -1, -2}; int dy[8] = {1, 2, -2, -1, 1, 2, -2, -1}; int i, tx, ty; for (i = 0; i < 8; i++) { tx = x + dx[i]; ty = y + dy[i]; if (tx < 0 || tx > 8 || ty < 0 || ty > 8) continue; if (B[tx][ty] == check[p]) return 1; } return 0; } int Judge() { int i, j; for (i = 1; i <= 8; i++) for (j = 1; j <= 8; j++) { if (B[i][j] >= 'A' && B[i][j] <= 'Z') { if (B[i][j] == 'P' && Pawn(i, j, -1, 1)) return 1; else if (B[i][j] == 'K' && King(i, j, 1)) return 1; else if (B[i][j] == 'B' && Bishop(i, j, 1)) return 1; else if (B[i][j] == 'R' && Rook(i, j, 1)) return 1; else if (B[i][j] == 'Q' && (Bishop(i, j, 1) || Rook(i, j, 1))) return 1; else if (B[i][j] == 'N' && kNight(i, j, 1)) return 1; } else if (B[i][j] >= 'a' && B[i][j] <= 'z') { if (B[i][j] == 'p' && Pawn(i, j, 1, 0)) return -1; else if (B[i][j] == 'k' && King(i, j, 0)) return -1; else if (B[i][j] == 'b' && Bishop(i, j, 0)) return -1; else if (B[i][j] == 'r' && Rook(i, j, 0)) return -1; else if (B[i][j] == 'q' && (Bishop(i, j, 0) || Rook(i, j, 0))) return -1; else if (B[i][j] == 'n' && kNight(i, j, 0)) return -1; } } return 0; } int main() { int t, s; for (t = 1; Input() != EOF; t++) { s = Judge(); if (s > 0) printf("Game #%d: black king is in check.\n", t); else if (s < 0) printf("Game #%d: white king is in check.\n", t); else printf("Game #%d: no king is in check.\n", t); } }
[ "m80126colin@gmail.com" ]
m80126colin@gmail.com
c92815a91e7b174ca06a4e4c2404d617ee4cd505
2ec14fd1724fc8959e1d3a1b4d3f61d5c0cf6f48
/src/qt/overviewpage.h
f35a7df4a1fb4cc420e39d6a0650798ec70a44b6
[ "MIT" ]
permissive
vitae-labs/Vitae
7ddf8142d1e663f406399ec17de1c7bbba5e32fd
fa301e714cb26e742cfe29164a25961f1ff6d52c
refs/heads/main
2022-07-28T15:48:24.765770
2022-01-29T06:13:19
2022-01-29T06:13:19
451,559,855
0
1
null
null
null
null
UTF-8
C++
false
false
1,644
h
// Copyright (c) 2011-2018 The Bitcoin Core developers // Copyright (c) 2020-2021 The Vitae Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef VITAE_QT_OVERVIEWPAGE_H #define VITAE_QT_OVERVIEWPAGE_H #include <interfaces/wallet.h> #include <QWidget> #include <memory> class ClientModel; class TransactionFilterProxy; class TxViewDelegate; class PlatformStyle; class WalletModel; namespace Ui { class OverviewPage; } QT_BEGIN_NAMESPACE class QModelIndex; QT_END_NAMESPACE /** Overview ("home") page widget */ class OverviewPage : public QWidget { Q_OBJECT public: explicit OverviewPage(const PlatformStyle *platformStyle, QWidget *parent = nullptr); ~OverviewPage(); void setClientModel(ClientModel *clientModel); void setWalletModel(WalletModel *walletModel); void showOutOfSyncWarning(bool fShow); public Q_SLOTS: void setBalance(const interfaces::WalletBalances& balances); Q_SIGNALS: void transactionClicked(const QModelIndex &index); void outOfSyncWarningClicked(); private: Ui::OverviewPage *ui; ClientModel *clientModel; WalletModel *walletModel; interfaces::WalletBalances m_balances; TxViewDelegate *txdelegate; std::unique_ptr<TransactionFilterProxy> filter; private Q_SLOTS: void updateDisplayUnit(); void handleTransactionClicked(const QModelIndex &index); void updateAlerts(const QString &warnings); void updateWatchOnlyLabels(bool showWatchOnly); void handleOutOfSyncWarningClicks(); }; #endif // VITAE_QT_OVERVIEWPAGE_H
[ "hemant.singh.leu@gmail.com" ]
hemant.singh.leu@gmail.com
66cc9c2c7fca88ec92af17c14003393fc7f53eea
3e919bb9ac0cff9fa06e4b711a64f324e5522e17
/graphlet/svg/storagecelletv.cpp
9d0ac81520d396a154e9ceddac892be20f403a96
[]
no_license
uwp-at-mrit/ScalableVectorGraphlet
dca6cf54355df86c7b2fed91e4cb5a4181015da3
f6c5679a929260a192cc46f8747b641f50e257a6
refs/heads/master
2020-04-23T13:54:30.798574
2019-02-19T01:41:27
2019-02-19T01:41:27
171,213,718
0
0
null
null
null
null
UTF-8
C++
false
false
3,247
cpp
#include "graphlet/svg/storagecelletv.hpp" #include "paint.hpp" using namespace WarGrey::SCADA; using namespace Windows::UI; using namespace Microsoft::Graphics::Canvas; using namespace Microsoft::Graphics::Canvas::Brushes; static CanvasSolidColorBrush^ default_sign_color = nullptr; /*************************************************************************************************/ StorageCelletv::StorageCelletv(float width, float height) : StorageCelletv(StorageCellVState::Normal, width, height) {} StorageCelletv::StorageCelletv(StorageCellVState default_state, float width, float height) : Svglet(default_state, width, height) {} Platform::String^ StorageCelletv::name() { return "StorageCell"; } void StorageCelletv::update(long long count, long long interval, long long uptime) { if (this->ready()) { switch (this->get_state()) { case StorageCellVState::Charge: { StorageCellVStyle style = this->get_style(); if (count % 2 == 0) { this->set_anode_color(style.sign_color); this->set_cathode_color(default_sign_color); } else { this->set_anode_color(default_sign_color); this->set_cathode_color(style.sign_color); } this->notify_updated(); }; break; case StorageCellVState::Discharge: { StorageCellVStyle style = this->get_style(); if (count % 2 != 0) { this->set_anode_color(style.sign_color); this->set_cathode_color(default_sign_color); } else { this->set_anode_color(default_sign_color); this->set_cathode_color(style.sign_color); } this->notify_updated(); }; break; } } } void StorageCelletv::on_ready() { if (default_sign_color == nullptr) { default_sign_color = make_solid_brush(this->get_fill_color("seal")); } } void StorageCelletv::prepare_style(StorageCellVState status, StorageCellVStyle& style) { switch (status) { case StorageCellVState::Normal: CAS_SLOT(style.sign_color, Colours::WhiteSmoke); break; case StorageCellVState::Breakdown: CAS_SLOT(style.body_color, Colours::Firebrick); break; case StorageCellVState::Charge: CAS_SLOT(style.sign_color, Colours::Orange); break; case StorageCellVState::Discharge: CAS_SLOT(style.sign_color, Colours::Green); break; } CAS_SLOT(style.body_color, Colours::SlateGray); CAS_SLOT(style.sign_color, default_sign_color); } void StorageCelletv::apply_style(StorageCellVStyle& style) { this->set_body_color(style.body_color); this->set_anode_color(style.sign_color); this->set_cathode_color(style.sign_color); this->set_seal_color(style.sign_color, style.body_color); } void StorageCelletv::set_body_color(Colour^ color) { this->set_fill_color("body", color); this->set_stroke_color("body", color); } void StorageCelletv::set_seal_color(Colour^ color, Colour^ shadow) { this->set_shape_color("seal", color); this->set_shape_color("seal-left", color); this->set_shape_color("seal-right", color); if (shadow != nullptr) { this->set_shape_color("seal-shadow", shadow); } } void StorageCelletv::set_anode_color(Colour^ color) { this->set_shape_color("anode", color); this->set_shape_color("anode-base", color); } void StorageCelletv::set_cathode_color(Colour^ color) { this->set_shape_color("cathode", color); this->set_shape_color("cathode-base", color); }
[ "juzhenliang@gmail.com" ]
juzhenliang@gmail.com
2880f6cbcb447d5687c287940071d2e006b58068
3490e7a37bb2ba0b1c81b101403604013f5e8fc4
/iroha-master/shared_model/backend/protobuf/impl/proto_query_response_factory.cpp
6097872ced14331b3c98b1a1735e96a86e5d02e4
[ "Apache-2.0", "CC-BY-4.0" ]
permissive
rogelcorral/My-Iroha-Playground
28beb346be6e086baca2671df5bd996b024801cb
c370a114e6039f8667c2b68b7dcb10e4c387c67d
refs/heads/master
2022-12-10T02:16:34.315230
2019-08-21T21:18:29
2019-08-21T21:18:29
202,802,406
0
0
Apache-2.0
2022-12-07T23:53:59
2019-08-16T21:38:48
C++
UTF-8
C++
false
false
17,460
cpp
/** * Copyright Soramitsu Co., Ltd. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ #include "backend/protobuf/proto_query_response_factory.hpp" #include "backend/protobuf/permissions.hpp" #include "backend/protobuf/query_responses/proto_block_query_response.hpp" #include "backend/protobuf/query_responses/proto_query_response.hpp" #include "backend/protobuf/transaction.hpp" #include "cryptography/public_key.hpp" #include "interfaces/common_objects/amount.hpp" #include "interfaces/common_objects/peer.hpp" namespace { /** * Creates a query response using provided lambda and returns unique_ptr to it * @tparam QueryResponseCreatorLambda - lambda, which specifies, how to create * a query response * @param response_creator - that lambda * @param query_hash - hash of query, for which response is created * @return unique_ptr to created query response */ template <typename QueryResponseCreatorLambda> std::unique_ptr<shared_model::interface::QueryResponse> createQueryResponse( QueryResponseCreatorLambda response_creator, const shared_model::crypto::Hash &query_hash) { iroha::protocol::QueryResponse protocol_query_response; protocol_query_response.set_query_hash(query_hash.hex()); response_creator(protocol_query_response); return std::make_unique<shared_model::proto::QueryResponse>( std::move(protocol_query_response)); } /** * Creates a block query response using provided lambda and returns unique_ptr * to it * @tparam QueryResponseCreatorLambda - lambda, which specifies, how to * create a block query response * @param response_creator - that lambda * @return unique_ptr to created block query response */ template <typename QueryResponseCreatorLambda> std::unique_ptr<shared_model::interface::BlockQueryResponse> createQueryResponse(QueryResponseCreatorLambda response_creator) { iroha::protocol::BlockQueryResponse protocol_query_response; response_creator(protocol_query_response); return std::make_unique<shared_model::proto::BlockQueryResponse>( std::move(protocol_query_response)); } } // namespace std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createAccountAssetResponse( std::vector<std::tuple<interface::types::AccountIdType, interface::types::AssetIdType, shared_model::interface::Amount>> assets, size_t total_assets_number, boost::optional<shared_model::interface::types::AssetIdType> next_asset_id, const crypto::Hash &query_hash) const { return createQueryResponse( [assets = std::move(assets), total_assets_number, next_asset_id = std::move(next_asset_id)]( iroha::protocol::QueryResponse &protocol_query_response) { iroha::protocol::AccountAssetResponse *protocol_specific_response = protocol_query_response.mutable_account_assets_response(); for (size_t i = 0; i < assets.size(); i++) { auto *asset = protocol_specific_response->add_account_assets(); asset->set_account_id(std::move(std::get<0>(assets.at(i)))); asset->set_asset_id(std::move(std::get<1>(assets.at(i)))); asset->set_balance(std::get<2>(assets.at(i)).toStringRepr()); } protocol_specific_response->set_total_number(total_assets_number); if (next_asset_id) { protocol_specific_response->set_next_asset_id(*next_asset_id); } }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createAccountDetailResponse( shared_model::interface::types::DetailType account_detail, size_t total_number, boost::optional<shared_model::interface::types::AccountDetailRecordId> next_record_id, const crypto::Hash &query_hash) const { return createQueryResponse( [&account_detail, total_number, &next_record_id]( iroha::protocol::QueryResponse &protocol_query_response) { iroha::protocol::AccountDetailResponse *protocol_specific_response = protocol_query_response.mutable_account_detail_response(); protocol_specific_response->set_detail(account_detail); protocol_specific_response->set_total_number(total_number); if (next_record_id) { auto protocol_next_record_id = protocol_specific_response->mutable_next_record_id(); protocol_next_record_id->set_writer( std::move(next_record_id->writer)); protocol_next_record_id->set_key(std::move(next_record_id->key)); } }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createAccountResponse( const shared_model::interface::types::AccountIdType account_id, const shared_model::interface::types::DomainIdType domain_id, shared_model::interface::types::QuorumType quorum, const shared_model::interface::types::JsonType jsonData, std::vector<shared_model::interface::types::RoleIdType> roles, const crypto::Hash &query_hash) const { return createQueryResponse( [account_id = std::move(account_id), domain_id = std::move(domain_id), jsonData = std::move(jsonData), quorum, roles = std::move(roles)]( iroha::protocol::QueryResponse &protocol_query_response) { iroha::protocol::AccountResponse *protocol_specific_response = protocol_query_response.mutable_account_response(); auto *account = protocol_specific_response->mutable_account(); account->set_account_id(std::move(account_id)); account->set_domain_id(std::move(domain_id)); account->set_quorum(quorum); account->set_json_data(std::move(jsonData)); for (const auto &role : roles) { protocol_specific_response->add_account_roles(std::move(role)); } }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createBlockResponse( std::unique_ptr<shared_model::interface::Block> block, const crypto::Hash &query_hash) const { return createQueryResponse( [block = std::move(block)]( iroha::protocol::QueryResponse &protocol_query_response) { iroha::protocol::BlockResponse *protocol_specific_response = protocol_query_response.mutable_block_response(); *protocol_specific_response->mutable_block()->mutable_block_v1() = static_cast<shared_model::proto::Block *>(block.get()) ->getTransport(); }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createErrorQueryResponse( ErrorQueryType error_type, interface::ErrorQueryResponse::ErrorMessageType error_msg, interface::ErrorQueryResponse::ErrorCodeType error_code, const crypto::Hash &query_hash) const { return createQueryResponse( [error_type, error_msg = std::move(error_msg), error_code]( iroha::protocol::QueryResponse &protocol_query_response) mutable { iroha::protocol::ErrorResponse_Reason reason; switch (error_type) { case ErrorQueryType::kStatelessFailed: reason = iroha::protocol::ErrorResponse_Reason_STATELESS_INVALID; break; case ErrorQueryType::kStatefulFailed: reason = iroha::protocol::ErrorResponse_Reason_STATEFUL_INVALID; break; case ErrorQueryType::kNoAccount: reason = iroha::protocol::ErrorResponse_Reason_NO_ACCOUNT; break; case ErrorQueryType::kNoAccountAssets: reason = iroha::protocol::ErrorResponse_Reason_NO_ACCOUNT_ASSETS; break; case ErrorQueryType::kNoAccountDetail: reason = iroha::protocol::ErrorResponse_Reason_NO_ACCOUNT_DETAIL; break; case ErrorQueryType::kNoSignatories: reason = iroha::protocol::ErrorResponse_Reason_NO_SIGNATORIES; break; case ErrorQueryType::kNotSupported: reason = iroha::protocol::ErrorResponse_Reason_NOT_SUPPORTED; break; case ErrorQueryType::kNoAsset: reason = iroha::protocol::ErrorResponse_Reason_NO_ASSET; break; case ErrorQueryType::kNoRoles: reason = iroha::protocol::ErrorResponse_Reason_NO_ROLES; break; } iroha::protocol::ErrorResponse *protocol_specific_response = protocol_query_response.mutable_error_response(); protocol_specific_response->set_reason(reason); protocol_specific_response->set_message(std::move(error_msg)); protocol_specific_response->set_error_code(error_code); }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createSignatoriesResponse( std::vector<shared_model::interface::types::PubkeyType> signatories, const crypto::Hash &query_hash) const { return createQueryResponse( [signatories = std::move(signatories)]( iroha::protocol::QueryResponse &protocol_query_response) { iroha::protocol::SignatoriesResponse *protocol_specific_response = protocol_query_response.mutable_signatories_response(); for (const auto &key : signatories) { protocol_specific_response->add_keys(key.hex()); } }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createTransactionsResponse( std::vector<std::unique_ptr<shared_model::interface::Transaction>> transactions, const crypto::Hash &query_hash) const { return createQueryResponse( [transactions = std::move(transactions)]( iroha::protocol::QueryResponse &protocol_query_response) { iroha::protocol::TransactionsResponse *protocol_specific_response = protocol_query_response.mutable_transactions_response(); for (const auto &tx : transactions) { *protocol_specific_response->add_transactions() = static_cast<shared_model::proto::Transaction *>(tx.get()) ->getTransport(); } }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createTransactionsPageResponse( std::vector<std::unique_ptr<shared_model::interface::Transaction>> transactions, boost::optional<const crypto::Hash &> next_tx_hash, interface::types::TransactionsNumberType all_transactions_size, const crypto::Hash &query_hash) const { return createQueryResponse( [transactions = std::move(transactions), &next_tx_hash, &all_transactions_size]( iroha::protocol::QueryResponse &protocol_query_response) { auto *protocol_specific_response = protocol_query_response.mutable_transactions_page_response(); for (const auto &tx : transactions) { *protocol_specific_response->add_transactions() = static_cast<shared_model::proto::Transaction *>(tx.get()) ->getTransport(); } if (next_tx_hash) { protocol_specific_response->set_next_tx_hash( next_tx_hash.value().hex()); } protocol_specific_response->set_all_transactions_size( all_transactions_size); }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto:: ProtoQueryResponseFactory::createPendingTransactionsPageResponse( std::vector<std::unique_ptr<shared_model::interface::Transaction>> transactions, interface::types::TransactionsNumberType all_transactions_size, boost::optional<interface::PendingTransactionsPageResponse::BatchInfo> next_batch_info, const crypto::Hash &query_hash) const { return createQueryResponse( [transactions = std::move(transactions), &all_transactions_size, &next_batch_info]( iroha::protocol::QueryResponse &protocol_query_response) { auto *protocol_specific_response = protocol_query_response .mutable_pending_transactions_page_response(); for (const auto &tx : transactions) { *protocol_specific_response->add_transactions() = static_cast<shared_model::proto::Transaction *>(tx.get()) ->getTransport(); } protocol_specific_response->set_all_transactions_size( all_transactions_size); if (next_batch_info) { auto *next_batch_info_message = protocol_specific_response->mutable_next_batch_info(); next_batch_info_message->set_first_tx_hash( next_batch_info->first_tx_hash.hex()); next_batch_info_message->set_batch_size(next_batch_info->batch_size); } }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createAssetResponse( const interface::types::AssetIdType asset_id, const interface::types::DomainIdType domain_id, const interface::types::PrecisionType precision, const crypto::Hash &query_hash) const { return createQueryResponse( [asset_id = std::move(asset_id), domain_id = std::move(domain_id), precision](iroha::protocol::QueryResponse &protocol_query_response) { iroha::protocol::AssetResponse *protocol_specific_response = protocol_query_response.mutable_asset_response(); auto *asset = protocol_specific_response->mutable_asset(); asset->set_asset_id(std::move(asset_id)); asset->set_domain_id(std::move(domain_id)); asset->set_precision(precision); }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createRolesResponse( std::vector<shared_model::interface::types::RoleIdType> roles, const crypto::Hash &query_hash) const { return createQueryResponse( [roles = std::move(roles)]( iroha::protocol::QueryResponse &protocol_query_response) mutable { iroha::protocol::RolesResponse *protocol_specific_response = protocol_query_response.mutable_roles_response(); for (auto &&role : roles) { protocol_specific_response->add_roles(std::move(role)); } }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createRolePermissionsResponse( shared_model::interface::RolePermissionSet role_permissions, const crypto::Hash &query_hash) const { return createQueryResponse( [role_permissions]( iroha::protocol::QueryResponse &protocol_query_response) { iroha::protocol::RolePermissionsResponse *protocol_specific_response = protocol_query_response.mutable_role_permissions_response(); for (size_t i = 0; i < role_permissions.size(); ++i) { auto perm = static_cast<interface::permissions::Role>(i); if (role_permissions.isSet(perm)) { protocol_specific_response->add_permissions( shared_model::proto::permissions::toTransport(perm)); } } }, query_hash); } std::unique_ptr<shared_model::interface::QueryResponse> shared_model::proto::ProtoQueryResponseFactory::createPeersResponse( interface::types::PeerList peers, const crypto::Hash &query_hash) const { return createQueryResponse( [peers](iroha::protocol::QueryResponse &protocol_query_response) { auto *protocol_specific_response = protocol_query_response.mutable_peers_response(); for (const auto &peer : peers) { auto *proto_peer = protocol_specific_response->add_peers(); proto_peer->set_address(peer->address()); proto_peer->set_peer_key(peer->pubkey().hex()); } }, query_hash); } std::unique_ptr<shared_model::interface::BlockQueryResponse> shared_model::proto::ProtoQueryResponseFactory::createBlockQueryResponse( std::shared_ptr<const shared_model::interface::Block> block) const { return createQueryResponse( [block = std::move(block)]( iroha::protocol::BlockQueryResponse &protocol_query_response) { iroha::protocol::BlockResponse *protocol_specific_response = protocol_query_response.mutable_block_response(); *protocol_specific_response->mutable_block()->mutable_block_v1() = static_cast<const shared_model::proto::Block *>(block.get()) ->getTransport(); }); } std::unique_ptr<shared_model::interface::BlockQueryResponse> shared_model::proto::ProtoQueryResponseFactory::createBlockQueryResponse( std::string error_message) const { return createQueryResponse( [error_message = std::move(error_message)]( iroha::protocol::BlockQueryResponse &protocol_query_response) { iroha::protocol::BlockErrorResponse *protocol_specific_response = protocol_query_response.mutable_block_error_response(); protocol_specific_response->set_message(error_message); }); }
[ "51706135+rogelcorral@users.noreply.github.com" ]
51706135+rogelcorral@users.noreply.github.com
5c87e435d5a9bcc4518d466465ff6923431d3c5c
f572446a43c89a28cc7e115ec71cbb3970bf8db8
/sched/src/RestreamQBox.H
369dd5177a2d1e180634ffdb508544fb52d997e3
[]
no_license
as010101/Autemp
b0b47b711b48a5cdaf79c44dace28841d41608b4
2a3ae6b536ab8a13afebba3e9be02eeae27e4713
refs/heads/master
2022-06-10T05:55:55.545374
2020-05-06T08:11:32
2020-05-06T08:11:32
260,402,901
0
0
null
null
null
null
UTF-8
C++
false
false
562
h
#ifndef RESTREAMQBOX_H #define RESTREAMQBOX_H #include "QBox.H" #include "FieldExt.H" #include "GroupByState.H" #include "GroupByHash.H" class RestreamQBox : public QBox { public: RestreamQBox(); ~RestreamQBox() {}; Box_Out_T doBox(); void setModifier(const char* input); void setHash(GroupByHash *hash); private: char *_atts; int _num_atts; int _tuple_size; FieldExt **_fields; int _group_by_size; GroupByHash *_group_hash; int _sid_size; int _ts_size; }; #endif
[ "root@localhost.localdomain" ]
root@localhost.localdomain
fb85c92c6e64dfc14f8da93881da083d4ad0ece3
00613931db0dc1113d628b673b8a242fee684fac
/Module/JOYSTICK/Arduino/faces_joystick/faces_joystick.ino
3f02d95315c75d631e12fdd8072c8b18b8262647
[ "MIT" ]
permissive
m5stack/M5-ProductExampleCodes
437b9413d92adb43c873149dd768da3d0b979869
1bc38736e61a362080d1dffc4020b3a2a1dff6ae
refs/heads/master
2022-09-16T07:38:54.184583
2022-07-21T01:05:46
2022-07-21T01:05:46
156,688,327
316
524
MIT
2022-07-21T01:05:47
2018-11-08T10:17:23
C
UTF-8
C++
false
false
1,930
ino
#include <M5Stack.h> #include "Wire.h" #define FACE_JOY_ADDR 0x5e void Init(){ Wire.begin(); for (int i = 0; i < 256; i++) { Wire.beginTransmission(FACE_JOY_ADDR); Wire.write(i % 4); Wire.write(random(256) * (256 - i) / 256); Wire.write(random(256) * (256 - i) / 256); Wire.write(random(256) * (256 - i) / 256); Wire.endTransmission(); delay(2); } Led(0, 0, 0, 0); Led(1, 0, 0, 0); Led(2, 0, 0, 0); Led(3, 0, 0, 0); } void Led(int indexOfLED, int r, int g, int b){ Wire.beginTransmission(FACE_JOY_ADDR); Wire.write(indexOfLED); Wire.write(r); Wire.write(g); Wire.write(b); Wire.endTransmission(); } void setup() { M5.begin(); M5.Lcd.clear(); M5.Lcd.setCursor(60, 0, 4); M5.Lcd.printf("FACE JOYSTICK"); Init(); } uint8_t x_data_L; uint8_t x_data_H; uint16_t x_data; uint8_t y_data_L; uint8_t y_data_H; uint16_t y_data; uint8_t button_data; char data[100]; void loop() { Wire.requestFrom(FACE_JOY_ADDR, 5); if (Wire.available()) { y_data_L = Wire.read(); y_data_H = Wire.read(); x_data_L = Wire.read(); x_data_H = Wire.read(); button_data = Wire.read();// Z(0: released 1: pressed) x_data = x_data_H << 8 |x_data_L; y_data = y_data_H << 8 |y_data_L; sprintf(data, "x:%d y:%d button:%d\n", x_data, y_data, button_data); Serial.print(data); M5.Lcd.setCursor(45, 120); M5.Lcd.println(data); if (x_data > 600){ Led(2, 0, 0, 50); Led(0, 0, 0, 0); } else if (x_data < 400) { Led(0, 0, 0, 50); Led(2, 0, 0, 0); } else{ Led(0, 0, 0,0); Led(2, 0, 0, 0); } if (y_data > 600) { Led(3, 0, 0, 50); Led(1, 0, 0, 0); } else if (y_data < 400) { Led(1, 0, 0, 50); Led(3, 0, 0, 0); } else{ Led(1, 0, 0, 0); Led(3, 0, 0, 0); } } delay(200); }
[ "854410664@qq.com" ]
854410664@qq.com
57b69203b387705f1e047354debd509a8d42d1d1
39687a63b28378681f0309747edaaf4fb465c034
/examples/14_matrix/OpenNL/example1/main.cpp
4c37a8cc5e5ac90d9b4108463d5029bafc6be0e4
[]
no_license
aldongqing/jjcao_code
5a65ac654c306b96f0892eb20746b17276aa56e4
3b04108ed5c24f22899a31b0ee50ee177a841828
refs/heads/master
2021-01-18T11:35:25.515882
2015-10-29T01:52:33
2015-10-29T01:52:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,905
cpp
#pragma warning(disable:4244 4267 4819 4996) #include <CGAL/Cartesian.h> #include <CGAL/Timer.h> #include <sstream> #include <fstream> #include <string> #include <OpenNL/linear_solver.h> //typedef OpenNL::DefaultLinearSolverTraits<double> Solver; typedef OpenNL::SymmetricLinearSolverTraits<double> Solver; typedef Solver::Vector Vector; typedef Solver::Matrix SparseMatrix; typedef OpenNL::FullVector<double> FullVector; typedef OpenNL::DefaultLinearSolverTraits< SparseMatrix, FullVector> SolverTraits ; typedef OpenNL::LinearSolver<SolverTraits> Ls_solver ; void solve(std::ofstream& logger) { int status(0); CGAL::Timer timer; timer.start(); Solver solver = Solver(); int dim(999); SparseMatrix A(dim, dim); Vector X(dim), B(dim); /////////////////////////////////////// /////////////////////////////////////// logger << std::endl << "## Begin solve" << std::endl; for( int i = 0; i < dim; ++i) { A.set_coef(i, i, 1); B[i] = 2; } A.set_coef(1, 3, -0.25); A.set_coef(3, 1, -0.25); A.set_coef(1, 4, -0.25); A.set_coef(4, 1, -0.25); A.set_coef(1, 8, -0.25); A.set_coef(8, 1, -0.25); A.set_coef(1, 99, -0.25);A.set_coef(99, 1, -0.25); logger << " matrix filling (" << dim << " x " << dim << "): " << timer.time() << " seconds." << std::endl; timer.reset(); /////////////////////////////////////// /////////////////////////////////////// // Solve "A*X = B". On success, solution is (1/D) * X. double D; if ( !solver.linear_solver(A, B, X, D)) { status = -1;//Base::ERROR_CANNOT_SOLVE_LINEAR_SYSTEM; logger << " Error in solving a linear systems!" << std::endl; } else{ logger << " solving a linear systems: " << timer.time() << " seconds." << std::endl; timer.reset(); } /////////////////////////////////////// /////////////////////////////////////// if ( status==0) { for( int i = 0; i < dim; ++i) { logger << X[i] << ", "; } } logger << std::endl; logger << "End solve!" << std::endl << std::endl; } void least_square() { //Ls_solver solver(6); //solver.set_least_squares(true) ; //solver.begin_system() ; //solver.variable(0).set_value(1); //solver.variable(0).lock(); //solver.variable(1).set_value(0); //solver.variable(2).set_value(0); //solver.variable(3).set_value(2); //solver.variable(3).lock(); //solver.variable(4).set_value(0); //solver.variable(5).set_value(0); //solver.begin_row() ; // solver.add_coefficient(0, 1) ; // solver_.add_coefficient(1, b-d) ; // solver_.add_coefficient(u1_id, -c) ; // solver_.add_coefficient(v1_id, d) ; // solver_.add_coefficient(u2_id, a) ; // solver.end_row() ; // setup_lscm() ; // solver.end_system() ; // std::cout << "Solving ..." << std::endl ; // solver.solve() ; } int main(int argc, char* argv[]) { std::ofstream logger("log.txt"); std::cout.rdbuf(logger.rdbuf()); solve(logger); logger.close(); return 0; }
[ "jjcao1231@gmail.com" ]
jjcao1231@gmail.com
8e9daedb517871897892062f80a28459474ca7a0
f8b98cbeaa65199968d34e54b122e741d114761a
/libs/dlib/matrix/matrix_qr.h
f13d04b0e6c68bee429e6c9d2f307000b7db22a6
[ "MIT" ]
permissive
xdxdVSxdxd/ofxKinectProjectorToolkit
db9aab101a0a0573a28bf7b7458d398433a19439
f93b19784249661064c683f83f4a58da30e40f95
refs/heads/master
2020-03-21T16:16:28.755047
2016-12-25T21:10:44
2016-12-25T21:10:44
138,760,805
1
0
MIT
2018-06-26T15:55:44
2018-06-26T15:55:44
null
UTF-8
C++
false
false
12,469
h
// Copyright (C) 2009 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. // This code was adapted from code from the JAMA part of NIST's TNT library. // See: http://math.nist.gov/tnt/ #ifndef DLIB_MATRIX_QR_DECOMPOSITION_H #define DLIB_MATRIX_QR_DECOMPOSITION_H #include "matrix.h" //#include "matrix_utilities.h" #include "matrix_subexp.h" #ifdef DLIB_USE_LAPACK #include "lapack/geqrf.h" #include "lapack/ormqr.h" #endif #include "matrix_trsm.h" namespace dlib { template < typename matrix_exp_type > class qr_decomposition { public: const static long NR = matrix_exp_type::NR; const static long NC = matrix_exp_type::NC; typedef typename matrix_exp_type::type type; typedef typename matrix_exp_type::mem_manager_type mem_manager_type; typedef typename matrix_exp_type::layout_type layout_type; typedef matrix<type,0,0,mem_manager_type,layout_type> matrix_type; // You have supplied an invalid type of matrix_exp_type. You have // to use this object with matrices that contain float or double type data. COMPILE_TIME_ASSERT((is_same_type<float, type>::value || is_same_type<double, type>::value )); template <typename EXP> qr_decomposition( const matrix_exp<EXP>& A ); bool is_full_rank( ) const; long nr( ) const; long nc( ) const; const matrix_type get_r ( ) const; const matrix_type get_q ( ) const; template <typename EXP> const matrix_type solve ( const matrix_exp<EXP>& B ) const; private: #ifndef DLIB_USE_LAPACK template <typename EXP> const matrix_type solve_mat ( const matrix_exp<EXP>& B ) const; template <typename EXP> const matrix_type solve_vect ( const matrix_exp<EXP>& B ) const; #endif /** Array for internal storage of decomposition. @serial internal array storage. */ matrix<type,0,0,mem_manager_type,column_major_layout> QR_; /** Row and column dimensions. @serial column dimension. @serial row dimension. */ long m, n; /** Array for internal storage of diagonal of R. @serial diagonal of R. */ typedef matrix<type,0,1,mem_manager_type,column_major_layout> column_vector_type; column_vector_type tau; column_vector_type Rdiag; }; // ---------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------- // Member functions // ---------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------- template <typename matrix_exp_type> template <typename EXP> qr_decomposition<matrix_exp_type>:: qr_decomposition( const matrix_exp<EXP>& A ) { COMPILE_TIME_ASSERT((is_same_type<type, typename EXP::type>::value)); // make sure requires clause is not broken DLIB_ASSERT(A.nr() >= A.nc() && A.size() > 0, "\tqr_decomposition::qr_decomposition(A)" << "\n\tInvalid inputs were given to this function" << "\n\tA.nr(): " << A.nr() << "\n\tA.nc(): " << A.nc() << "\n\tA.size(): " << A.size() << "\n\tthis: " << this ); QR_ = A; m = A.nr(); n = A.nc(); #ifdef DLIB_USE_LAPACK lapack::geqrf(QR_, tau); Rdiag = diag(QR_); #else Rdiag.set_size(n); long i=0, j=0, k=0; // Main loop. for (k = 0; k < n; k++) { // Compute 2-norm of k-th column without under/overflow. type nrm = 0; for (i = k; i < m; i++) { nrm = hypot(nrm,QR_(i,k)); } if (nrm != 0.0) { // Form k-th Householder vector. if (QR_(k,k) < 0) { nrm = -nrm; } for (i = k; i < m; i++) { QR_(i,k) /= nrm; } QR_(k,k) += 1.0; // Apply transformation to remaining columns. for (j = k+1; j < n; j++) { type s = 0.0; for (i = k; i < m; i++) { s += QR_(i,k)*QR_(i,j); } s = -s/QR_(k,k); for (i = k; i < m; i++) { QR_(i,j) += s*QR_(i,k); } } } Rdiag(k) = -nrm; } #endif } // ---------------------------------------------------------------------------------------- template <typename matrix_exp_type> long qr_decomposition<matrix_exp_type>:: nr ( ) const { return m; } // ---------------------------------------------------------------------------------------- template <typename matrix_exp_type> long qr_decomposition<matrix_exp_type>:: nc ( ) const { return n; } // ---------------------------------------------------------------------------------------- template <typename matrix_exp_type> bool qr_decomposition<matrix_exp_type>:: is_full_rank( ) const { type eps = max(abs(Rdiag)); if (eps != 0) eps *= std::sqrt(std::numeric_limits<type>::epsilon())/100; else eps = 1; // there is no max so just use 1 // check if any of the elements of Rdiag are effectively 0 return min(abs(Rdiag)) > eps; } // ---------------------------------------------------------------------------------------- template <typename matrix_exp_type> const typename qr_decomposition<matrix_exp_type>::matrix_type qr_decomposition<matrix_exp_type>:: get_r( ) const { matrix_type R(n,n); for (long i = 0; i < n; i++) { for (long j = 0; j < n; j++) { if (i < j) { R(i,j) = QR_(i,j); } else if (i == j) { R(i,j) = Rdiag(i); } else { R(i,j) = 0.0; } } } return R; } // ---------------------------------------------------------------------------------------- template <typename matrix_exp_type> const typename qr_decomposition<matrix_exp_type>::matrix_type qr_decomposition<matrix_exp_type>:: get_q( ) const { #ifdef DLIB_USE_LAPACK matrix<type,0,0,mem_manager_type,column_major_layout> X; // Take only the first n columns of an identity matrix. This way // X ends up being an m by n matrix. X = colm(identity_matrix<type>(m), range(0,n-1)); // Compute Y = Q*X lapack::ormqr('L','N', QR_, tau, X); return X; #else long i=0, j=0, k=0; matrix_type Q(m,n); for (k = n-1; k >= 0; k--) { for (i = 0; i < m; i++) { Q(i,k) = 0.0; } Q(k,k) = 1.0; for (j = k; j < n; j++) { if (QR_(k,k) != 0) { type s = 0.0; for (i = k; i < m; i++) { s += QR_(i,k)*Q(i,j); } s = -s/QR_(k,k); for (i = k; i < m; i++) { Q(i,j) += s*QR_(i,k); } } } } return Q; #endif } // ---------------------------------------------------------------------------------------- template <typename matrix_exp_type> template <typename EXP> const typename qr_decomposition<matrix_exp_type>::matrix_type qr_decomposition<matrix_exp_type>:: solve( const matrix_exp<EXP>& B ) const { COMPILE_TIME_ASSERT((is_same_type<type, typename EXP::type>::value)); // make sure requires clause is not broken DLIB_ASSERT(B.nr() == nr(), "\tconst matrix_type qr_decomposition::solve(B)" << "\n\tInvalid inputs were given to this function" << "\n\tB.nr(): " << B.nr() << "\n\tnr(): " << nr() << "\n\tthis: " << this ); #ifdef DLIB_USE_LAPACK using namespace blas_bindings; matrix<type,0,0,mem_manager_type,column_major_layout> X(B); // Compute Y = transpose(Q)*B lapack::ormqr('L','T',QR_, tau, X); // Solve R*X = Y; triangular_solver(CblasLeft, CblasUpper, CblasNoTrans, CblasNonUnit, QR_, X, n); /* return n x nx portion of X */ return subm(X,0,0,n,B.nc()); #else // just call the right version of the solve function if (B.nc() == 1) return solve_vect(B); else return solve_mat(B); #endif } // ---------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------- // Private member functions // ---------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------- #ifndef DLIB_USE_LAPACK template <typename matrix_exp_type> template <typename EXP> const typename qr_decomposition<matrix_exp_type>::matrix_type qr_decomposition<matrix_exp_type>:: solve_vect( const matrix_exp<EXP>& B ) const { column_vector_type x(B); // Compute Y = transpose(Q)*B for (long k = 0; k < n; k++) { type s = 0.0; for (long i = k; i < m; i++) { s += QR_(i,k)*x(i); } s = -s/QR_(k,k); for (long i = k; i < m; i++) { x(i) += s*QR_(i,k); } } // Solve R*X = Y; for (long k = n-1; k >= 0; k--) { x(k) /= Rdiag(k); for (long i = 0; i < k; i++) { x(i) -= x(k)*QR_(i,k); } } /* return n x 1 portion of x */ return colm(x,0,n); } // ---------------------------------------------------------------------------------------- template <typename matrix_exp_type> template <typename EXP> const typename qr_decomposition<matrix_exp_type>::matrix_type qr_decomposition<matrix_exp_type>:: solve_mat( const matrix_exp<EXP>& B ) const { const long nx = B.nc(); matrix_type X(B); long i=0, j=0, k=0; // Compute Y = transpose(Q)*B for (k = 0; k < n; k++) { for (j = 0; j < nx; j++) { type s = 0.0; for (i = k; i < m; i++) { s += QR_(i,k)*X(i,j); } s = -s/QR_(k,k); for (i = k; i < m; i++) { X(i,j) += s*QR_(i,k); } } } // Solve R*X = Y; for (k = n-1; k >= 0; k--) { for (j = 0; j < nx; j++) { X(k,j) /= Rdiag(k); } for (i = 0; i < k; i++) { for (j = 0; j < nx; j++) { X(i,j) -= X(k,j)*QR_(i,k); } } } /* return n x nx portion of X */ return subm(X,0,0,n,nx); } // ---------------------------------------------------------------------------------------- #endif // DLIB_USE_LAPACK not defined } #endif // DLIB_MATRIX_QR_DECOMPOSITION_H
[ "kogan.gene@gmail.com" ]
kogan.gene@gmail.com
ff5c2ca4bd68e25a8150befe882308d3655cf486
b01aa893a338b4028682e683c82350dad033af33
/header/Background.h
3ad1c01523e947a55bc0c2c9334aa9c4fcb9d6ec
[]
no_license
wheo/HelloSDL_git
73592a20d1fafd0951e5b0994753182b37773a18
c2027251047314e2c563f9dc64b83c9ff62576fc
refs/heads/master
2020-09-16T03:32:11.999537
2019-11-25T05:31:12
2019-11-25T05:31:12
223,637,754
0
0
null
null
null
null
UTF-8
C++
false
false
669
h
// // Background.h // Arkanoid // // Created by Maciej Żurad on 11/26/12. // Copyright (c) 2012 Maciej Żurad. All rights reserved. // #ifndef __Arkanoid__Background__ #define __Arkanoid__Background__ #include <iostream> #include "SDL.h" #include "scaler.h" #include "Game.h" class Background { private: float x; float y; int width; int height; SDL_Surface* image; SDL_Rect* clip; public: Background(const char* filename, int width, int height); ~Background(); void RenderBackground(); void UpdateBackground(float x, float y); void InitBackground(); }; #endif /* defined(__Arkanoid__Background__) */
[ "wheo@tnmtech.co.kr" ]
wheo@tnmtech.co.kr
8e2c392d681a701f79da0468aa76baed75176916
485ce90e6f7ec2586eea07ffda382d989182634d
/EXPR/ASM.h
10c5064b8df81ac234919f39814c64d8051f62ac
[]
no_license
xtmgah/SDEAP
72b6c3d2f6a6c77df9dbf817b44700be00e80ba8
bd1211a25da15e3a867dcb17546d6bb0a24019ff
refs/heads/master
2020-06-13T06:47:40.094492
2015-12-01T02:37:48
2015-12-01T02:37:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
623
h
#ifndef ASM_H #define ASM_H #include<map> #include<set> #include<list> #include<vector> #include<iostream> #include<string> #include <sstream> #include <float.h> #include <math.h> #include "TOK.h" #include "SPGraph.h" class ASM{ public: std::map<std::string, SPGraph> ASM_Map; std::map<std::string, double> Junction_Map; SPGraph Guide_Tr; void decomposeG(SPGraph InGraph); void evaluate_ASMs(); std::vector< std::vector<std::string> > toMTX_SPG(SPGraph spg, int len); private: std::vector<std::string> _SetInOrder(std::vector<std::string> OrderVec, std::map<std::string, std::string> SetMap); }; #endif
[ "ywyang@pigeon.ib.int.bioinfo.ucr.edu" ]
ywyang@pigeon.ib.int.bioinfo.ucr.edu
298d9e280bdccb9903664a1256e78283453cec57
97ca456c57dd3e5e4e05c8ec23f61efb744431c7
/.bak/Mqtt.cpp
1bfc0dbc13303ae2242c75dd06e98522bed923ae
[]
no_license
kwokhung/testESP32
870b807749b7ff3b77dbb91d6e4bb61f675b9953
0005d5b8e131b86cda8d29c1be6325d58b86d3ab
refs/heads/master
2020-12-30T11:02:32.516155
2019-03-18T04:56:37
2019-03-18T04:56:37
98,839,362
0
0
null
null
null
null
UTF-8
C++
false
false
3,073
cpp
//#include <EEPROM.h> #include <ArduinoJson.h> //#include <ESP8266WiFi.h> #define ESP8266 #include <PubSubClient.h> #include "Led.h" #include "OLed.h" #include "Mqtt.h" Mqtt::Mqtt(Gprs &gprs, char *mqttUrl, Led &led, OLed &oLed) : gprs(&gprs), //client(new PubSubClient(*new WiFiClient())), client(new PubSubClient(*this->gprs->getGsmClient())), mqttUrl(mqttUrl), led(&led), oLed(&oLed) { //WiFiClient* espClient = new WiFiClient(); //WiFiClientSecure* espClient = new WiFiClientSecure; //client = new PubSubClient(*new WiFiClient()); //this->gprs = &gprs; //client = new PubSubClient(*this->gprs->getGsmClient()); } void Mqtt::setup() { client->setServer(mqttUrl, 1883); //client->setServer(mqttUrl, 1884); client->setCallback([&](char *topic, byte *payload, unsigned int length) { Serial.print("Message arrived ["); Serial.print(topic); Serial.print("] "); String payloadString = ""; for (int i = 0; i < length; i++) { payloadString += (char)payload[i]; } DynamicJsonBuffer jsonBuffer; JsonObject &payloadJson = jsonBuffer.parseObject(payloadString); Serial.print('*'); Serial.print(payloadString); String toDo = payloadJson["what"]["toDo"].asString(); if (toDo == "reset") { String newSsid = payloadJson["what"]["details"]["ssid"].asString(); String newPassword = payloadJson["what"]["details"]["password"].asString(); oLed->reset(newSsid, newPassword); for (int i = 0; i < 96; i++) { //EEPROM.write(i, 0); } for (int i = 0; i < newSsid.length(); i++) { //EEPROM.write(i, newSsid[i]); } for (int i = 0; i < newPassword.length(); i++) { //EEPROM.write(32 + i, newPassword[i]); } //EEPROM.commit(); ESP.restart(); } else { led->lightR(payloadJson["RVALUE"].as<int>()); led->lightG(payloadJson["GVALUE"].as<int>()); led->lightB(payloadJson["BVALUE"].as<int>()); } Serial.println('*'); }); reconnect(); } void Mqtt::loop() { if (!client->connected()) { reconnect(); } client->loop(); } void Mqtt::reconnect() { while (!client->connected()) { Serial.print("Attempting MQTT connection..."); if (client->connect("ad7cad07680c47ff80677b3c19bbe6dc", "mbltest01/nodemcu01", "e61m/mza6z5HY0eD4n/sbagP6mkDZeFfmmxSh5KER0w=")) { Serial.println("connected"); client->publish("letv1s01", "{\"RVALUE\":0,\"GVALUE\":0,\"BVALUE\":0}"); client->subscribe("nodemcu01"); } else { Serial.print("failed, rc="); Serial.print(client->state()); Serial.println(" try again in 5 seconds"); delay(5000); } } }
[ "chu_kwokhung@yahoo.com.hk" ]
chu_kwokhung@yahoo.com.hk
64beeb7dcae52bf1108f66aa296faf3ad99d192c
c9a59aa6cad390cf8d5c6216fb099c453bfe39fc
/tests/controls/label.cpp
ec72d1a3b71c21b797dbfd0ae8ec867c11a3d469
[]
no_license
wxWidgets/wxWidgets
c4e771419c1559236dc9907baeb80b20d89131b4
8ca3d3bc75e8fa1b851cbaeaef128575fd8af0af
refs/heads/master
2023-08-31T21:26:31.145264
2023-08-29T11:06:06
2023-08-31T16:00:35
1,764,646
5,766
2,177
null
2023-09-14T18:04:44
2011-05-18T05:54:03
C++
UTF-8
C++
false
false
4,515
cpp
/////////////////////////////////////////////////////////////////////////////// // Name: tests/controls/label.cpp // Purpose: wxControl and wxStaticText label tests // Author: Francesco Montorsi // Created: 2010-3-21 // Copyright: (c) 2010 Francesco Montorsi /////////////////////////////////////////////////////////////////////////////// // ---------------------------------------------------------------------------- // headers // ---------------------------------------------------------------------------- #include "testprec.h" #ifndef WX_PRECOMP #include "wx/app.h" #endif // WX_PRECOMP #include "wx/checkbox.h" #include "wx/control.h" #include "wx/stattext.h" #include "wx/generic/stattextg.h" #include <memory> namespace { const char* const ORIGINAL_LABEL = "origin label"; // The actual testing function. It will change the label of the provided // control, which is assumed to be ORIGINAL_LABEL initially. void DoTestLabel(wxControl* c) { CHECK( c->GetLabel() == ORIGINAL_LABEL ); const wxString testLabelArray[] = { "label without mnemonics and markup", "label with &mnemonic", "label with <span foreground='blue'>some</span> <b>markup</b>", "label with <span foreground='blue'>some</span> <b>markup</b> and &mnemonic", "label with an && (ampersand)", "label with an && (&ampersand)", "", // empty label should work too }; for ( unsigned int s = 0; s < WXSIZEOF(testLabelArray); s++ ) { const wxString& l = testLabelArray[s]; // GetLabel() should always return the string passed to SetLabel() c->SetLabel(l); CHECK( c->GetLabel() == l ); // GetLabelText() should always return unescaped version of the label CHECK( c->GetLabelText() == wxControl::RemoveMnemonics(l) ); // GetLabelText() should always return the string passed to SetLabelText() c->SetLabelText(l); CHECK( c->GetLabelText() == l ); // And GetLabel() should be the escaped version of the text CHECK( l == wxControl::RemoveMnemonics(c->GetLabel()) ); } // Check that both "&" and "&amp;" work in markup. #if wxUSE_MARKUP c->SetLabelMarkup("mnemonic in &amp;markup"); CHECK( c->GetLabel() == "mnemonic in &markup" ); CHECK( c->GetLabelText() == "mnemonic in markup" ); c->SetLabelMarkup("mnemonic in &markup"); CHECK( c->GetLabel() == "mnemonic in &markup" ); CHECK( c->GetLabelText() == "mnemonic in markup" ); c->SetLabelMarkup("&amp;&amp; finally"); CHECK( c->GetLabel() == "&& finally" ); CHECK( c->GetLabelText() == "& finally" ); c->SetLabelMarkup("&& finally"); CHECK( c->GetLabel() == "&& finally" ); CHECK( c->GetLabelText() == "& finally" ); #endif // wxUSE_MARKUP } } // anonymous namespace TEST_CASE("wxControl::Label", "[wxControl][label]") { SECTION("wxStaticText") { const std::unique_ptr<wxStaticText> st(new wxStaticText(wxTheApp->GetTopWindow(), wxID_ANY, ORIGINAL_LABEL)); DoTestLabel(st.get()); } SECTION("wxStaticText/ellipsized") { const std::unique_ptr<wxStaticText> st(new wxStaticText(wxTheApp->GetTopWindow(), wxID_ANY, ORIGINAL_LABEL, wxDefaultPosition, wxDefaultSize, wxST_ELLIPSIZE_START)); DoTestLabel(st.get()); } SECTION("wxGenericStaticText") { const std::unique_ptr<wxGenericStaticText> gst(new wxGenericStaticText(wxTheApp->GetTopWindow(), wxID_ANY, ORIGINAL_LABEL)); DoTestLabel(gst.get()); } SECTION("wxCheckBox") { const std::unique_ptr<wxCheckBox> cb(new wxCheckBox(wxTheApp->GetTopWindow(), wxID_ANY, ORIGINAL_LABEL)); DoTestLabel(cb.get()); } } TEST_CASE("wxControl::RemoveMnemonics", "[wxControl][label][mnemonics]") { CHECK( "mnemonic" == wxControl::RemoveMnemonics("&mnemonic") ); CHECK( "&mnemonic" == wxControl::RemoveMnemonics("&&mnemonic") ); CHECK( "&mnemonic" == wxControl::RemoveMnemonics("&&&mnemonic") ); } TEST_CASE("wxControl::FindAccelIndex", "[wxControl][label][mnemonics]") { CHECK( wxControl::FindAccelIndex("foo") == wxNOT_FOUND ); CHECK( wxControl::FindAccelIndex("&foo") == 0 ); CHECK( wxControl::FindAccelIndex("f&oo") == 1 ); CHECK( wxControl::FindAccelIndex("foo && bar") == wxNOT_FOUND ); CHECK( wxControl::FindAccelIndex("foo && &bar") == 6 ); }
[ "vadim@wxwidgets.org" ]
vadim@wxwidgets.org
0bf35a3309571dc08ae5046cac8d461bb538371b
372ad9c2f0db8709f5b7074acf601874e32266b6
/Shared/StackTrace.cpp
92037d024d8287eb7c346b7f86bffe2ca8257f59
[ "LicenseRef-scancode-generic-cla", "Apache-2.0" ]
permissive
Likes123/omniscidb
f69894656e8ae9e7b724e06d84a5fa28f097958c
1e4904c0622bcef67dbe7a95ef9cb64f9d505d80
refs/heads/master
2020-08-31T14:21:26.728671
2019-10-29T05:56:57
2019-10-30T17:12:55
218,709,632
1
0
Apache-2.0
2019-10-31T07:34:52
2019-10-31T07:34:51
null
UTF-8
C++
false
false
2,412
cpp
/* * Copyright 2019 OmniSci, 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 <Shared/StackTrace.h> #define BOOST_STACKTRACE_GNU_SOURCE_NOT_REQUIRED 1 #include <boost/algorithm/string.hpp> #include <boost/stacktrace.hpp> std::string getCurrentStackTrace(uint32_t num_frames_to_skip, const char* stop_at_this_frame, bool skip_void_and_stl_frames) { std::string stack_trace; uint32_t frame_skip_count = num_frames_to_skip; // get the entire stacktrace auto st = boost::stacktrace::stacktrace(); // process frames for (auto& frame : st) { // skip frame? if (frame_skip_count > 0) { frame_skip_count--; continue; } // get function name for this frame std::string frame_string = frame.name(); // trim to plain function or template name size_t open_paren_or_angle = frame_string.find_first_of("(<"); if (open_paren_or_angle != std::string::npos) { frame_string.erase(open_paren_or_angle, std::string::npos); } // skip stuff that we usually don't want if (skip_void_and_stl_frames) { if (boost::istarts_with(frame_string, "void")) { continue; } if (boost::istarts_with(frame_string, "std::")) { continue; } } // stop when we hit a particular function? if (stop_at_this_frame) { if (boost::starts_with(frame_string, stop_at_this_frame)) { break; } } // stop at main anyway if (boost::starts_with(frame_string, "main")) { break; } // add file and line? (if we can get them) if (frame.source_file().size()) { frame_string += " (" + frame.source_file() + ":" + std::to_string(frame.source_line()) + ")"; } // add to string stack_trace += frame_string + std::string("\n"); } // done return stack_trace; }
[ "dev@aas.io" ]
dev@aas.io
d49c84d09b97b3bac8ae09b2edb2d51f06aa29be
f8b34daec10ecbfa302afa4d7841f3ee25026c3a
/2.3/nocows_4.cc
1cc754c25f4ee97139b5be12bcfd122716273ec1
[]
no_license
bunneyster/usaco
804673b12070c1365d5dced0d811304376fc89c6
20c18ef2051d3c20c3be8773c7bcb3a4a3dac968
refs/heads/master
2023-05-13T23:00:04.553239
2018-10-10T17:19:24
2018-10-10T17:19:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,195
cc
/* ID: stapark1 LANG: C++14 TASK: nocows */ #include <array> #include <fstream> std::ifstream input("nocows.in"); std::ofstream output("nocows.out"); int main() { int numCows, treeHeight; input >> numCows >> treeHeight; if (numCows % 2 == 0) { output << 0 << std::endl; return 0; } // [i][j] = # ways to make tree with i nodes and height j. std::array<std::array<int, 100>, 200> dp {}; std::array<std::array<int, 100>, 200> cumulative {}; // i nodes, heights 0..j dp[1][1] = 1; // 1 way to make tree with 1 node of height 1. cumulative[1][1] = 1; for (int i = 1; i <= numCows; i += 2) { for (int j = 1; j <= treeHeight; ++j) { cumulative[i][j] = cumulative[i][j - 1]; for (int tallTreeCount = 1; tallTreeCount < i; tallTreeCount += 2) { int smallTreeCount = i - tallTreeCount - 1; dp[i][j] += (dp[tallTreeCount][j - 1] * cumulative[smallTreeCount][j - 2] * 2) % 9901; dp[i][j] += (dp[tallTreeCount][j - 1] * dp[smallTreeCount][j - 1]) % 9901; dp[i][j] %= 9901; } cumulative[i][j] += dp[i][j]; cumulative[i][j] %= 9901; } } output << dp[numCows][treeHeight] << std::endl; return 0; }
[ "stapark008@gmail.com" ]
stapark008@gmail.com
403d301747f9a0daf4b124403bfbb47f0c1685ba
46d1cb7fd44d0c770f0ada83fb5638df7a79602f
/U2004_05_01_Sword3/Intermediate/Build/Win64/UE4Editor/Inc/U2004_05_Combat/IWeapon.gen.cpp
974754d30845968e6fbc5b62be4327f0b3f1fe31
[]
no_license
brightface/UnrealEngineCode
7c0ddc07374b6d767d00938aa2865ae7508a4419
d0bb064a98e1a8f6d054cd33d6f73de7b3a7f0ad
refs/heads/main
2023-01-19T03:26:06.645390
2020-11-23T15:10:04
2020-11-23T15:10:04
315,271,225
0
0
null
null
null
null
UTF-8
C++
false
false
3,070
cpp
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ===========================================================================*/ #include "UObject/GeneratedCppIncludes.h" #include "U2004_05_Combat/Interfaces/IWeapon.h" #ifdef _MSC_VER #pragma warning (push) #pragma warning (disable : 4883) #endif PRAGMA_DISABLE_DEPRECATION_WARNINGS void EmptyLinkFunctionForGeneratedCodeIWeapon() {} // Cross Module References U2004_05_COMBAT_API UClass* Z_Construct_UClass_UIWeapon_NoRegister(); U2004_05_COMBAT_API UClass* Z_Construct_UClass_UIWeapon(); COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); UPackage* Z_Construct_UPackage__Script_U2004_05_Combat(); // End Cross Module References void UIWeapon::StaticRegisterNativesUIWeapon() { } UClass* Z_Construct_UClass_UIWeapon_NoRegister() { return UIWeapon::StaticClass(); } struct Z_Construct_UClass_UIWeapon_Statics { static UObject* (*const DependentSingletons[])(); #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam Class_MetaDataParams[]; #endif static const FCppClassTypeInfoStatic StaticCppClassTypeInfo; static const UE4CodeGen_Private::FClassParams ClassParams; }; UObject* (*const Z_Construct_UClass_UIWeapon_Statics::DependentSingletons[])() = { (UObject* (*)())Z_Construct_UClass_UInterface, (UObject* (*)())Z_Construct_UPackage__Script_U2004_05_Combat, }; #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_UIWeapon_Statics::Class_MetaDataParams[] = { { "BlueprintType", "true" }, { "ModuleRelativePath", "Interfaces/IWeapon.h" }, }; #endif const FCppClassTypeInfoStatic Z_Construct_UClass_UIWeapon_Statics::StaticCppClassTypeInfo = { TCppClassTypeTraits<IIWeapon>::IsAbstract, }; const UE4CodeGen_Private::FClassParams Z_Construct_UClass_UIWeapon_Statics::ClassParams = { &UIWeapon::StaticClass, nullptr, &StaticCppClassTypeInfo, DependentSingletons, nullptr, nullptr, nullptr, ARRAY_COUNT(DependentSingletons), 0, 0, 0, 0x000840A1u, METADATA_PARAMS(Z_Construct_UClass_UIWeapon_Statics::Class_MetaDataParams, ARRAY_COUNT(Z_Construct_UClass_UIWeapon_Statics::Class_MetaDataParams)) }; UClass* Z_Construct_UClass_UIWeapon() { static UClass* OuterClass = nullptr; if (!OuterClass) { UE4CodeGen_Private::ConstructUClass(OuterClass, Z_Construct_UClass_UIWeapon_Statics::ClassParams); } return OuterClass; } IMPLEMENT_CLASS(UIWeapon, 1632838430); template<> U2004_05_COMBAT_API UClass* StaticClass<UIWeapon>() { return UIWeapon::StaticClass(); } static FCompiledInDefer Z_CompiledInDefer_UClass_UIWeapon(Z_Construct_UClass_UIWeapon, &UIWeapon::StaticClass, TEXT("/Script/U2004_05_Combat"), TEXT("UIWeapon"), false, nullptr, nullptr, nullptr); DEFINE_VTABLE_PTR_HELPER_CTOR(UIWeapon); PRAGMA_ENABLE_DEPRECATION_WARNINGS #ifdef _MSC_VER #pragma warning (pop) #endif
[ "brightface@hanmail.net" ]
brightface@hanmail.net
e31945af934f5a77a4d153b03328e6d291c33dd6
df3562b194ad2728a9aeebbdfd6b5d3117b37456
/Src/Lib/Loggers/ConsoleLogger/Includes/Logger.h
e046777ddfcd110393586d36454f8b4cd18a9f54
[ "MIT" ]
permissive
ericyao2013/UAV-Drona
f96a749ea9cfadb946c3691e0d93ee77e9fd52a2
1877b3d658401b9d65d4b5cf52b96e7efa479d6a
refs/heads/master
2020-03-18T17:18:12.162654
2018-04-10T18:35:09
2018-04-10T18:35:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,035
h
#ifndef LOGGER_H #define LOGGER_H #include<pthread.h> #include<stdio.h> #include<string> #include <iostream> #include <stdlib.h> #include <fcntl.h> #include <string.h> #include <unistd.h> #include <iostream> #include <sstream> #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> using namespace std; #define LOG(msg) InfoLogger->LogMessage(msg) #define ERROR(msg) ErrorLogger->LogError(msg) #define MAVLOG(msg) MavlinkLogger->LogMessage(msg); #define PLOG(msg) PLogger->LogMessage(msg); #define PERROR(msg) PLogger->LogError(msg); class Logger { pthread_mutex_t lock; FILE* logconsole; void InitLogger(); public: Logger() { pthread_mutex_init(&lock, NULL); InitLogger(); } //print error message void LogError(string msg); void LogMessage(string msg); }; extern Logger* ErrorLogger; extern Logger* InfoLogger; extern Logger* MavlinkLogger; extern Logger* PLogger; extern void InitializeLogger(); #endif
[ "ankushdesai@gmail.com" ]
ankushdesai@gmail.com
535bb1031f280f2d6dcec0f58151c424f77629cd
229d946bfe9082b965b82b3e6a0aea5496888359
/Vector.cpp
93a9d8aab83b932234f54f2fa4bb55201f371e0f
[]
no_license
olevare/Reparateur-mesh
dd9be10087d67dfd2dd8e3578823c548cfc38a8a
b8ce1ecad0cc819e4b82c630c5991daea26b7fc8
refs/heads/master
2021-07-25T20:54:38.928317
2017-11-08T02:46:00
2017-11-08T02:46:00
109,918,830
0
0
null
null
null
null
UTF-8
C++
false
false
1,674
cpp
#include "Vector.h" #include <math.h> Vector::Vector(){} Vector::Vector(double X, double Y, double Z){ x=X; y=Y; z=Z; _norme = sqrt(x*x+y*y+z*z); } Vector::Vector(const Vector &p){ x = p.x; y = p.y; z = p.z; _norme = sqrt(x*x+y*y+z*z); } Vector::Vector(Point p1,Point p2) { x = p2.getX()-p1.getX(); y = p2.getY()-p1.getY(); z = p2.getZ()-p1.getZ(); _norme = sqrt(x*x+y*y+z*z); } double Vector::norme(){ return _norme; } void Vector::normalize(){ x = x/_norme; y = y/_norme; z = z/_norme; } double Vector::scalar(Vector vector2){ return x*vector2.x + y*vector2.y + z*vector2.z; } Vector Vector::vectoriel(Vector vector2){ return Vector(y*vector2.getZ()-z*vector2.getY(), z*vector2.getX()-x*vector2.getZ(), x*vector2.getY()-y*vector2.getX()); } double Vector::angle(Vector vector2){ return acos( scalar(vector2) / (norme()*vector2.norme()) ); } double Vector::getX(){ return x; } double Vector::getY(){ return y; } double Vector::getZ(){ return z; } void Vector::setX(double X){ x = X; } void Vector::setY(double Y){ y = Y; } void Vector::setZ(double Z){ z = Z; } Vector Vector::operator+(const Vector& v) { return Vector(x + v.x,y + v.y,z + v.z); } Vector Vector::operator-(const Vector& v) { return Vector(x - v.x,y - v.y,z - v.z); } Vector Vector::operator*(double n) { return Vector(x*n,y*n,z*n); } Vector Vector::operator=(const Vector& v) { x = v.x; y = v.y; z = v.z; return *this; } Vector Vector::operator=(Point v) { x = v.getX(); y = v.getY(); z = v.getZ(); return *this; } Vector Vector::operator+(Point v) { return Vector(x + v.getX(),y + v.getY(),z + v.getZ()); }
[ "olevare@gmail.com" ]
olevare@gmail.com
06ede7a3efb5b71a1780bec9c002231e8e40fa8b
fcc6404169d4a92ef2f1523d854b8268e7d2d725
/MainMenu.cpp
475acab04e7229fbeb748755e9f52687f8446fa6
[]
no_license
elizers/Laba3
e050b86200339227483a2c6c9ca4e0a9402ca28e
514ccad3512228bccd93701d9148e390694b0705
refs/heads/master
2022-09-22T10:54:42.162996
2020-06-06T13:04:58
2020-06-06T13:05:27
266,886,487
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
9,427
cpp
#include "MainMenu.h" #include "Accounts.h" #include "AccountStructure.h" #include "Utils.h" #include <Windows.h> #include <cstdio> #include <string> #include <list> #include <iostream> const std::string CONTAINER = "Container.txt"; // печать пунктов меню для изменения записи счёта void print_change_menu() { std::cout << std::endl << "Выберите один из пунктов записи, который необходимо изменить:" << "\n" << "1 - название фирмы" << "\n" << "2 - вид работ" << "\n" << "3 - единица измерения" << "\n" << "4 - стоимость единицы выполненной работы" << "\n" << "5 - дата исполнения" << "\n" << "6 - объем работ" << "\n" << "0 - ничего не нужно изменять" << "\n" << std::endl; } // печать пунктов главного меню в зависимости от наличия элементов в списке int print_main_menu(bool ContainerIsEmpty = false) { int stop_item = 2; std::cout << std::endl << "Выберите один из пунктов меню:" << std::endl << "1 - добавить запись" << std::endl; if (!ContainerIsEmpty) { std::cout << "2 - изменить запись" << std::endl << "3 - удалить запись" << std::endl << "4 - очистить контейнер" << std::endl << "5 - вывести записи в консоль" << std::endl << "6 - напечатать записи в новый файл" << std::endl << "7 - создать контейнер из записей по заданному критерию" << std::endl << "8 - сохранить записи в контейнере" << std::endl; stop_item = 8; } std::cout << "0 - выйти из программы" << std::endl; std::cout << std::endl; return stop_item; } // проверка имени файла на несовпадение с файлом "Container.txt" bool check_equal(std::string name_file) { return (name_file == CONTAINER); } // главное меню для программы void main_menu() { SetConsoleCP(1251); SetConsoleOutputCP(1251); std::cout << "Программа демонстрирует виртуальную смету работ." << std::endl; int stop_item, cur_item = 1; Accounts<AccountStructure> controller; controller.fill_container(CONTAINER); while (cur_item != 0) { stop_item = print_main_menu(controller.empty()); cur_item = get_num("Ваш выбор - ", "Ошибка! Такой пункт отсутствует в меню. Повторите ввод: ", 0, stop_item); switch (cur_item) { case 1: { controller.add_elem(); break; } case 2: { controller.change_elem([](AccountStructure& br) -> void { int cur_change_item = 1; while (cur_change_item != 0) { int tmp_int; float tmp_float; std::string tmp_str; Date tmp_date; print_change_menu(); cur_change_item = get_num("Ваш выбор - ", "Ошибка! Такой пункт отсутствует в меню. Повторите ввод: ", 0, 6); if (cur_change_item != 0) { std::cout << std::endl << "Введите новое значение для выбранного пункта: "; switch (cur_change_item) { case 1: { getline(std::cin, tmp_str); br.set_name_of_firm(tmp_str); break; } case 2: { getline(std::cin, tmp_str); br.set_type_of_work(tmp_str); break; } case 3: { getline(std::cin, tmp_str); br.set_unit(tmp_str); break; } case 4: { std::cin >> tmp_int; br.set_cost_per_unit(tmp_int); break; } case 5: { input_date(tmp_date); br.set_date_of_execution(tmp_date); break; } case 6: { std::cin >> tmp_float; br.set_scope_of_work(tmp_float); break; } } } } } ); break; } case 3: { controller.delete_elem(); break; } case 4: { controller.clear(); std::cout << std::endl << "Контейнер очищен." << std::endl; break; } case 5: { controller.print_container(); break; } case 6: { std::string name = get_string(check_equal, "Введите имя текстового файла: ", "Недоступное имя файла! Введите другое имя текстового файла: "); controller.fill_file_from_container(name, "Файл успешно создан и заполнен."); break; } case 7: { std::list<AccountStructure> result; AccountStructure tmp; int search_element = get_num("По какому элементу будет осуществляться поиск?\n1 - название фирмы\n2 - вид работ\n3 - дата исполнения\nВаш выбор - ", "\nОшибка, повторите ввод!\n", 1, 3); switch (search_element) { case 1: { std::string firm; std::cout << "Введите название фирмы: "; getline(std::cin, firm); auto check = [firm](const AccountStructure& br) { return br.get_name_of_firm() == firm; }; if (get_num("Какой алгоритм поиска нужно использовать: 1 - линейный, 2 - бинарный?\nВаш выбор - ", "\nОшибка, повторите ввод!\n", 1, 2) == 1) { result = controller.linear_search_elements(check); } else { tmp.set_name_of_firm(firm); result = controller.binary_search_elements(tmp, [](const AccountStructure& rec1, const AccountStructure& rec2) -> bool { return rec1.get_name_of_firm() < rec2.get_name_of_firm(); }); } break; } case 2: { std::string type_of_work; std::cout << "Введите вид работы: "; getline(std::cin, type_of_work); auto check = [type_of_work](const AccountStructure& br) { return br.get_type_of_work() == type_of_work; }; if (get_num("Какой алгоритм поиска нужно использовать: 1 - линейный, 2 - бинарный?\nВаш выбор - ", "\nОшибка, повторите ввод!\n", 1, 2) == 1) { result = controller.linear_search_elements(check); } else { tmp.set_type_of_work(type_of_work); result = controller.binary_search_elements(tmp, [](const AccountStructure& rec1, const AccountStructure& rec2) -> bool { return rec1.get_type_of_work() < rec2.get_type_of_work(); }); } break; } case 3: { Date date; std::cout << "Введите дату исполнения: "; input_date(date); auto check = [date](const AccountStructure& br) { return br.get_date_of_execution() == date; }; if (get_num("Какой алгоритм поиска нужно использовать: 1 - линейный, 2 - бинарный?\nВаш выбор - ", "\nОшибка, повторите ввод!\n", 1, 2) == 1) { result = controller.linear_search_elements(check); } else { tmp.set_date_of_execution(date); result = controller.binary_search_elements(tmp, [](const AccountStructure& rec1, const AccountStructure& rec2) -> bool { return (rec1.get_date_of_execution() < rec2.get_date_of_execution()); }); } break; } } if (result.empty()) { std::cout << std::endl << "Записи с заданным критерием отсутствуют!" << std::endl; } else { std::cout << std::endl << "По заданному критерию сформирован контейнер из " << result.size() << " записи(-ей)." << std::endl; print(result); if (get_num("Хотите записать данный контейнер в файл? 1 - да, 2 - нет.\nВаш выбор - ", "\nОшибка, повторите ввод!\n", 1, 2) == 1) { std::string name = get_string(check_equal, "Введите имя текстового файла: ", "Недоступное имя файла! Введите другое имя текстового файла: "); fill_file(result, name, "Файл успешно создан и заполнен."); } } break; } case 8: { controller.fill_file_from_container(CONTAINER, "Записи успешно сохранены в контейнере"); break; } case 0: { if (get_num("Хотите сохранить записи в контейнере? 1 - да, 2 - нет.\nВаш выбор - ", "\nОшибка, повторите ввод!\n", 1, 2) == 1) { controller.fill_file_from_container(CONTAINER, "Записи успешно сохранены в контейнере"); } else { break; } } } } }
[ "elizers@mail.ru" ]
elizers@mail.ru
2c9d9a21eeba512a8e9dbe359bd31fc525fd6460
d6fb7a6a8721b316becbf89201946f81ea04d2d4
/habitare2017.ino
0070f80aee1257de0d2d11071b8a174d700cf07a
[]
no_license
liinumaria/habitare2017
702c966a930814667953f9517ac8c376236f1c90
5b435284d5e18e7fae5b451f63df5f53d1159dc0
refs/heads/master
2021-01-20T06:15:12.248122
2017-09-03T12:06:32
2017-09-03T12:06:32
101,495,949
0
0
null
null
null
null
UTF-8
C++
false
false
8,332
ino
#include <SPI.h> // SPI library #include <SdFat.h> // SDFat Library #include <SFEMP3Shield.h> // Mp3 Shield Library SdFat sd; // Create object to handle SD functions SFEMP3Shield MP3player; // Create Mp3 library object // These variables are used in the MP3 initialization to set up // some stereo options: const uint8_t VOLUME = 10; // MP3 Player volume 0=max, 255=lowest (off) const uint8_t SILENT = 254; // MP3 Player volume 0=max, 255=lowest (off) const uint16_t monoMode = 1; // Mono setting 0=off, 3=max // Pins const int ledPin = 5; const int pirPins[] = {A0, A1, A2, A3}; const int PIR_SENSOR_COUNT = 4; const int MOVEMENT_THRESHOLD = 1; // How many pirPins need to be HIGH to signal movement // States const int STATE_OFF = 0; const int STATE_STARTING = 1; const int STATE_ON = 2; const int STATE_STOPPING = 3; const unsigned long STARTING_TIMEOUT = 10 * 1000LU; // Duration of STARTING state: 10 seconds const unsigned long ON_TIMEOUT = 5 * 60 * 1000LU; // Max duration of ON state: 5 minutes const unsigned long NO_MOVEMENT_TIMEOUT = 1*60*1000LU; // ON state ends in this time if no movement: 1 minute const unsigned long STOPPING_TIMEOUT = 15 * 1000LU; // Duration of STOPPING state: 15 seconds const unsigned long CALIBRATION_TIME = 30 * 1000LU; // Time to wait in the beginning int state = STATE_OFF; int subState = 0; unsigned long stateStartTime = 0; unsigned long elapsed = 0; unsigned long lastMovementSeenAt = 0; int currentTrack = 1; void setup() { Serial.begin(115200); pinMode(LED_BUILTIN, OUTPUT); pinMode(ledPin, OUTPUT); for (int i=0; i < PIR_SENSOR_COUNT; i++) { pinMode(pirPins[i], INPUT); } Serial.println("Initializing SD card and MP3 player..."); initSD(); // Initialize the SD card initMP3Player(); // Initialize the MP3 Shield // PIR calibration period for (int i=0; i<CALIBRATION_TIME; i+=1000) { leds((i/1000 % 2) * 255); delay(1000); } } // initSD() initializes the SD card and checks for an error. void initSD() { //Initialize the SdCard. if(!sd.begin(SD_SEL, SPI_FULL_SPEED)) // was: SPI_HALF_SPEED sd.initErrorHalt(); if(!sd.chdir("/")) sd.errorHalt("sd.chdir"); } // initMP3Player() sets up all of the initialization for the // MP3 Player Shield. It runs the begin() function, checks // for errors, applies a patch if found, and sets the volume/ // stero mode. void initMP3Player() { uint8_t result = MP3player.begin(); // init the mp3 player shield if(result != 0 && result != 6) // check result, see readme for error codes. { Serial.print("Error calling MP3player.begin(): "); Serial.println(result); } MP3player.setVolume(VOLUME, VOLUME); MP3player.setMonoMode(monoMode); } boolean isMovement() { int count = 0; for (int i=0; i < PIR_SENSOR_COUNT; i++) { if (digitalRead(pirPins[i]) == HIGH) { Serial.print(pirPins[i]); Serial.print(", "); count++; } } if (count > 0) { Serial.println(""); } return count >= MOVEMENT_THRESHOLD; } boolean movementReported = false; void loop() { boolean movement = isMovement(); unsigned long now = millis(); elapsed = now - stateStartTime; if (movement) { lastMovementSeenAt = now; // Wait for no movement before printing the message again if (!movementReported) { Serial.println("Movement!"); movementReported = true; } } else if (movementReported) { movementReported = false; } // State transitions if (state == STATE_OFF && movement) { setState(STATE_STARTING, now); } else if (state == STATE_STARTING && elapsed > STARTING_TIMEOUT) { // Little silent period before going full ON MP3player.stopTrack(); leds(0); delay(2000); now = millis(); toTrack(3); setState(STATE_ON, now); startAnimation(VOLUME, VOLUME, 0, 255, 5000, now); lastMovementSeenAt = now; } else if (state == STATE_ON && (elapsed > ON_TIMEOUT || now - lastMovementSeenAt > NO_MOVEMENT_TIMEOUT)) { if (now - lastMovementSeenAt > NO_MOVEMENT_TIMEOUT) { Serial.println("No movement seen in a while, stopping..."); } else { Serial.println("Reached timeout for ON state, stopping..."); } setState(STATE_STOPPING, now); } else if (state == STATE_STOPPING && elapsed > STOPPING_TIMEOUT) { toTrack(1); setState(STATE_OFF, now); } // LED effects if (state == STATE_OFF) { toTrack(1); if (subState == 0 && isAnimationFinished(now)) { startAnimation(VOLUME, VOLUME, 0, 0, random(15 * 1000), now); subState = 1; } else if (subState == 1 && isAnimationFinished(now)) { int power = random(10, 127); startAnimation(VOLUME, VOLUME, power, power, random(50, 200), now); subState = 0; } } else if (state == STATE_STARTING) { if (subState == 0) { // Fade out sound startAnimation(VOLUME, SILENT, 0, 0, 2000, now); subState = 1; } else if (subState == 1 && isAnimationFinished(now)) { // Silence a few seconds MP3player.stopTrack(); toTrack(2); delay(500); now = millis(); subState = 2; } else if (subState == 2 && isAnimationFinished(now)) { double at = ((double) elapsed) / STARTING_TIMEOUT; int maxTime = 2000 - (int)(at*2000); startAnimation(SILENT, SILENT, 0, 0, random(maxTime), now); subState = 3; } else if (subState == 3 && isAnimationFinished(now)) { startAnimation(VOLUME, VOLUME, 255, 255, random(50, 200), now); subState = 2; } } else if (state == STATE_ON) { toTrack(3); // Make sure the leds are set to full power in the end of animation if (isAnimationFinished(now)) { leds(255); } } else if (state == STATE_STOPPING) { if (subState == 0 && isAnimationFinished(now)) { double at = ((double) elapsed) / STARTING_TIMEOUT; int maxTime = 3000 - (int)(at*3000); startAnimation(VOLUME, VOLUME, 255, 255, random(maxTime), now); subState = 1; } else if (subState == 1 && isAnimationFinished(now)) { startAnimation(VOLUME, VOLUME, 0, 0, random(50, 200), now); subState = 0; } } animate(now); } void setState(int newState, unsigned long now) { state = newState; subState = 0; stateStartTime = now; elapsed = 0; stopAnimation(); } void toTrack(int number) { if (currentTrack != number || !MP3player.isPlaying()) { MP3player.stopTrack(); /* Use the playTrack function to play a numbered track: */ currentTrack = number; uint8_t result = MP3player.playTrack(currentTrack); if (result == 0) // playTrack() returns 0 on success { Serial.print("Playing track "); Serial.println(currentTrack); } else // Otherwise there's an error, check the code { Serial.print("Error playing track: "); Serial.println(result); } } } void leds(int amount) { analogWrite(ledPin, amount); digitalWrite(LED_BUILTIN, amount > 127 ? 1 : 0); } // State variables for the animation unsigned long animationStartTime = 0; unsigned long animationEndTime = 0; unsigned long animationDuration = 0; int animationVolumeStart; int animationVolumeDelta; int animationLedStart; int animationLedDelta; void startAnimation(int volumeStart, int volumeEnd, int ledStart, int ledEnd, unsigned long duration, unsigned long startTime) { animationVolumeStart = volumeStart; animationVolumeDelta = volumeEnd - volumeStart; animationLedStart = ledStart; animationLedDelta = ledEnd - ledStart; animationDuration = duration; animationStartTime = startTime; animationEndTime = startTime + duration; } void stopAnimation() { animationEndTime = 0; } void animate(unsigned long now) { if (!isAnimationFinished(now)) { double atRatio = ((double)(now - animationStartTime))/(double)animationDuration; int vol = animationVolumeStart + (int)(atRatio * animationVolumeDelta); int light = animationLedStart + (int)(atRatio * animationLedDelta); MP3player.setVolume(vol, vol); leds(light); /* Serial.print("Animation is at "); Serial.print(atRatio); Serial.print(", volume: "); Serial.print(vol); Serial.print(", leds: "); Serial.println(light); */ } } boolean isAnimationFinished(unsigned long now) { return now > animationEndTime; }
[ "henri.pihkala@unifina.com" ]
henri.pihkala@unifina.com
037612a50690aaa2b7c56abfe9fa1b5cccbb9182
54bf1dfa8185ae1d55856492fe288d29edc58230
/src/DetectorConstruction.h
63095781a16126cae8c8c051b28de5a818e79835
[]
no_license
jmalbos/G4Basic
a1f1dc91a1720a2337c786ec343425102c41ac02
eefa9b2f72f36f26b01d0f9356b9e4a73e4fd59d
refs/heads/master
2020-07-04T22:09:00.161765
2020-04-11T17:14:48
2020-04-11T17:14:48
202,435,590
0
3
null
null
null
null
UTF-8
C++
false
false
567
h
// ----------------------------------------------------------------------------- // G4Basic | DetectorConstruction.h // // // ----------------------------------------------------------------------------- #ifndef DETECTOR_CONSTRUCTION_H #define DETECTOR_CONSTRUCTION_H #include <G4VUserDetectorConstruction.hh> class G4Material; class DetectorConstruction: public G4VUserDetectorConstruction { public: DetectorConstruction(); virtual ~DetectorConstruction(); virtual G4VPhysicalVolume* Construct(); private: G4Material* EnrichedXenon() const; }; #endif
[ "jmalbos@users.noreply.github.com" ]
jmalbos@users.noreply.github.com