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
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 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
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
384b245b1a5b61c64c7b0716d95fe57df9f8d0be
74e202b00ad51b91ebf7170ad442f9e3c6ad2f47
/Classes/AuthScene.cpp
14bbfc713d49352f7d53d5adc212dbc453bf3232
[ "MIT" ]
permissive
anlianglu/cocos2dx_3x
c0239646c39923e38a3d5999ce3e99478cf41e6d
6390672493fa204f36bcefebc8839c06da61cb4a
refs/heads/master
2021-12-29T12:56:50.117531
2016-11-30T03:21:38
2016-11-30T03:21:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,457
cpp
// // AuthScene.cpp // UmengGame // // Created by wangfei on 16/4/6. // // #include "AuthScene.h" #include "Entrance.h" #include <iostream> #include <vector> #include <map> #include <string> #include "Cocos2dx/Common/CCUMSocialSDK.h" USING_NS_CC; USING_NS_UM_SOCIAL; // 环境变量PATH在windows下和linux下的分割符定义 #ifdef _WIN32 #define PATH_SEPARATOR ';' #else #define PATH_SEPARATOR ':' #endif int labelTag = 456; int layerTag = 123; Scene* Auth::scene() { // 'scene' is an autorelease object Scene *scene = Scene::create(); Auth *layer = Auth::create(); layer->setTag(layerTag); // add layer as a child to scene scene->addChild(layer); // return the scene return scene; } // on "init" you need to initialize your instance bool Auth::init() { ////////////////////////////// // 1. super init first if ( !Layer::init() ) { return false; } Size visibleSize = Director::getInstance()->getVisibleSize(); Point origin = Director::getInstance()->getVisibleOrigin(); auto pLabel = Label::createWithSystemFont("授权界面","Arial", 18); // position the label on the center of the screen pLabel->setPosition(Vec2(origin.x + visibleSize.width/2, origin.y + visibleSize.height - pLabel->getContentSize().height)); // add the label as a child to this layer this->addChild(pLabel, 1); int width = 50; MenuItemFont *qqButton = MenuItemFont::create("qq授权", CC_CALLBACK_1(Auth::qqAuth, this)); qqButton->setPosition(Vec2(visibleSize.width/2-width, 240)); qqButton->setFontSizeObj(12); // 底层API分享 MenuItemFont *sinaButton = MenuItemFont::create("新浪授权", CC_CALLBACK_1(Auth::sinaAuth, this)); sinaButton->setPosition(Vec2(visibleSize.width/2-width, 210)); sinaButton->setFontSizeObj(12); // 授权某平台 MenuItemFont *wxButton = MenuItemFont::create("微信授权", CC_CALLBACK_1(Auth::wxAuth, this)); wxButton->setPosition(Vec2(visibleSize.width/2-width,180)); wxButton->setFontSizeObj(12); MenuItemFont *fbButton = MenuItemFont::create("facebook授权", CC_CALLBACK_1(Auth::facebookAuth, this)); fbButton->setPosition(Vec2(visibleSize.width/2-width, 150)); fbButton->setFontSizeObj(12); MenuItemFont *twitterButton = MenuItemFont::create("twitter授权", CC_CALLBACK_1(Auth::twitterAuth, this)); twitterButton->setPosition(Vec2(visibleSize.width/2-width, 125)); twitterButton->setFontSizeObj(12); MenuItemFont *delqqButton = MenuItemFont::create("qq删除授权", CC_CALLBACK_1(Auth::qqAuthDel, this)); delqqButton->setPosition(Vec2(visibleSize.width/2+width, 240)); delqqButton->setFontSizeObj(12); // 底层API分享 MenuItemFont *delsinaButton = MenuItemFont::create("新浪删除授权", CC_CALLBACK_1(Auth::sinaAuthDel, this)); delsinaButton->setPosition(Vec2(visibleSize.width/2+width, 210)); delsinaButton->setFontSizeObj(12); // 授权某平台 MenuItemFont *delwxButton = MenuItemFont::create("微信删除授权", CC_CALLBACK_1(Auth::wxAuthDel, this)); delwxButton->setPosition(Vec2(visibleSize.width/2+width, 180)); delwxButton->setFontSizeObj(12); MenuItemFont *delfacebookButton = MenuItemFont::create("facebook删除授权", CC_CALLBACK_1(Auth::doubanAuthDel, this)); delfacebookButton->setPosition(Vec2(visibleSize.width/2+width, 150)); delfacebookButton->setFontSizeObj(12); MenuItemFont *deltwitterButton = MenuItemFont::create("twitter删除授权", CC_CALLBACK_1(Auth::renrenAuthDel, this)); deltwitterButton->setPosition(Vec2(visibleSize.width/2+width, 125)); deltwitterButton->setFontSizeObj(12); MenuItemImage *pCloseItem = MenuItemImage::create( "CloseNormal.png", "CloseSelected.png", CC_CALLBACK_1(Auth::menuCloseCallback, this)); pCloseItem->setPosition(Vec2(origin.x + visibleSize.width - pCloseItem->getContentSize().width/2 , origin.y + pCloseItem->getContentSize().height/2)); Menu* pMenu = Menu::create(); pMenu->addChild(qqButton, 1); pMenu->addChild(pCloseItem, 1); pMenu->addChild(sinaButton, 1); pMenu->addChild(wxButton, 1); pMenu->addChild(delqqButton, 1); pMenu->addChild(delsinaButton, 1); pMenu->addChild(delwxButton, 1); pMenu->addChild(fbButton, 1); pMenu->addChild(twitterButton, 1); pMenu->addChild(delfacebookButton, 1); pMenu->addChild(deltwitterButton, 1); pMenu->setPosition(Size::ZERO); this->addChild(pMenu, 1); auto authlabel = Label::createWithSystemFont("回调结果", "Arial", 18); authlabel->setTag(labelTag); // position the label on the center of the screen authlabel->setPosition( Vec2(origin.x + visibleSize.width / 2, 40)); // add the label as a child to this layer this->addChild(authlabel, 1); return true; } /* *授权回调 * @param platform 要授权的平台 * @param stCode 返回码, 200代表授权成功, 100代表开始授权, 0代表授权出错, -1代表取消授权 * @param data 授权时返回的数据 */ void authCallback(int platform, int stCode, map<string, string>& data) { log("#### 授权回调"); Auth* hwLayer =(Auth*) Director::getInstance()->getRunningScene()->getChildByTag( layerTag); Label* item = (Label*) hwLayer->getChildByTag(labelTag); string result = ""; if (stCode == 200) { log("#### 授权完成"); result = "授权完成"; map<string, string>::iterator it = data.begin(); for (; it != data.end(); ++it) { log("#### data %s -> %s.", it->first.c_str(), it->second.c_str()); } // item->setString("auth or delete success"); } else if (stCode == 0) { // item->setString("auth or delete fail"); result = "授权出错"; log("#### 授权出错"); } else if (stCode == -1) { // item->setString("auth or delete cancel"); result = "取消授权"; log("#### 取消授权"); }else { log("#### 未知类型"); } item->setString(result.c_str()); // map<string, string>::iterator it = data.begin(); // for (; it != data.end(); ++it) { // log("#### data %s -> %s.", it->first.c_str(), it->second.c_str()); // } } //void authCallBack(int platform, int stCode, const char* usid, // const char *token) { // printf("%d %d %s %s", platform, stCode, usid, token); //} void Auth::qqAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(QQ, auth_selector(authCallback)); } void Auth::sinaAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(SINA, auth_selector(authCallback)); } void Auth::wxAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(WEIXIN, auth_selector(authCallback)); } void Auth::qqAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(QQ, auth_selector(authCallback)); } void Auth::sinaAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(SINA, auth_selector(authCallback)); } void Auth::wxAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(WEIXIN, auth_selector(authCallback)); } void Auth::doubanAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(DOUBAN, auth_selector(authCallback)); } void Auth::renrenAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(RENREN, auth_selector(authCallback)); } void Auth::facebookAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(FACEBOOK, auth_selector(authCallback)); } void Auth::doubanAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(DOUBAN, auth_selector(authCallback)); } void Auth::renrenAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(RENREN, auth_selector(authCallback)); } void Auth::facebookAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(FACEBOOK, auth_selector(authCallback)); } void Auth::twitterAuth(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("授权"); sdk->authorize(TWITTER, auth_selector(authCallback)); } void Auth::twitterAuthDel(Ref* pSender) { CCUMSocialSDK *sdk = CCUMSocialSDK::create( ); log("删除授权"); sdk->deleteAuthorization(TWITTER, auth_selector(authCallback)); } void Auth::menuCloseCallback(Ref* pSender) { TransitionScene * reScene = NULL; Scene * s = Entrance::scene(); float t = 1.2f; reScene = TransitionJumpZoom ::create(t , s); Director::getInstance()->replaceScene(reScene); }
[ "wf90163@alibaba-inc.com" ]
wf90163@alibaba-inc.com
681fe8205c525964d7a06bfbc6c496f25ba4be58
2548f34e2ad49d5f5ddde5ccbab0990709de08ab
/Il2CppOutputProject/Source/il2cppOutput/Generics12.cpp
5e5c7a66f45a3fcc786a8e856fe2cc0840c46fec
[]
no_license
yutaosong2020/Hololens2_Tutorials
2e97b6242b6e44447f6ae21848f52dc6e3296804
2cef83823642f0c995926b82f7bafb0e604096e2
refs/heads/master
2023-04-28T08:00:49.381240
2021-05-24T02:54:59
2021-05-24T02:54:59
370,210,304
0
0
null
null
null
null
UTF-8
C++
false
false
2,094,714
cpp
#include "pch-cpp.hpp" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <limits> #include <stdint.h> // System.Collections.Generic.Dictionary`2<System.Int32,System.Boolean> struct Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1; // System.Collections.Generic.Dictionary`2<System.Int32,System.Char> struct Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23; // System.Collections.Generic.Dictionary`2<System.Int32,System.Int32> struct Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08; // System.Collections.Generic.Dictionary`2<System.Int32,System.Int64> struct Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F; // System.Collections.Generic.Dictionary`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object> struct Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single> struct Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E; // System.Collections.Generic.Dictionary`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3; // System.Collections.Generic.Dictionary`2<System.Int64,System.Object> struct Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26; // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94; // System.Collections.Generic.Dictionary`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47; // System.Collections.Generic.Dictionary`2<System.Object,System.UInt32> struct Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C; // System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Vector3> struct Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E; // System.Collections.Generic.Dictionary`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Boolean> struct Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Int32> struct Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Object> struct Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75; // System.Collections.Generic.IEqualityComparer`1<System.Int32> struct IEqualityComparer_1_t62010156673DE1460AB1D1CEBE5DCD48665E1A38; // System.Collections.Generic.IEqualityComparer`1<System.Int32Enum> struct IEqualityComparer_1_t7AA149E6B89D540CAA0C0E63998D86FFAF7B9FAC; // System.Collections.Generic.IEqualityComparer`1<System.Int64> struct IEqualityComparer_1_tBD7EB381E8B25356EF3AED6C41B65AECA6B91A19; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_t1A386BEF1855064FD5CC71F340A68881A52B4932; // System.Collections.Generic.IEqualityComparer`1<System.UInt32> struct IEqualityComparer_1_t75C3361D3BE51E9742B0BBFA0F3998120E7CB6CE; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Boolean> struct KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Char> struct KeyCollection_tB6DA7BD3F3255AFC2FAD2CA9A291FBA43E5CD4B1; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int32> struct KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Int64> struct KeyCollection_t6C75FA39C169AFB913CD046927B28E95AA96C54A; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object> struct KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct KeyCollection_t6B33C4CD2C41DFB404528DC9467BFC2A8460CBE8; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Object> struct KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,System.Single> struct KeyCollection_t282A033A4B816C4981A4DB989A4D7878489B643E; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct KeyCollection_t1515277A64E5290A2A03C473DBF87C147F6A3A56; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int64,System.Object> struct KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Boolean> struct KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Int32> struct KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object> struct KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Resources.ResourceLocator> struct KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct KeyCollection_t5DF1C54EFB6B63884924EC1C260606BEF35F210D; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.UInt32> struct KeyCollection_t40F2484EFDE906551AF8D1C9EF3EB6B4BAD79337; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,UnityEngine.Vector3> struct KeyCollection_t6E0F02F5A9288E450C7C8478D982A074010EBA4A; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct KeyCollection_t6F870BF5CEDDFEB13959730E1D35AF53F95D1153; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt32,System.Boolean> struct KeyCollection_t5E19BCCAA3252D2FB5D8BD2D4172859F38CF90C8; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt32,System.Int32> struct KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt32,System.Object> struct KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F; // System.Collections.Generic.List`1<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> struct List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeProperty> struct List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeStateProperty> struct List_1_t2496D96CE063836FAF596CF99739372B64DE8397; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Boolean> struct ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Char> struct ValueCollection_tDEA922C20FE7390F1063807C7F0EAE8B2C022A7B; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int32> struct ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Int64> struct ValueCollection_tDD2C80682AF4CF18883668E136B1980110C79D95; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object> struct ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct ValueCollection_t35B217278C526310A4452FC95797832328E69020; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Object> struct ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,System.Single> struct ValueCollection_t78B4CCB83CCA558C4CED402E68D660195E4922C9; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct ValueCollection_t219CB5D53EF8DDC9893DB9D9959FF349D09696DE; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int64,System.Object> struct ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Boolean> struct ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32> struct ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator> struct ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct ValueCollection_t1C7740FCE400FAD1C9E1F5A6765854A6AC02A6A6; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.UInt32> struct ValueCollection_tAC2C503F26A9650718719E18E28C3ED2671B7D15; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,UnityEngine.Vector3> struct ValueCollection_t97743688E0D534B9EF892DADA76F3E886767E198; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct ValueCollection_tEA48E4B6DFB033F98ED189470457D6134F7C7AA9; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt32,System.Boolean> struct ValueCollection_t5D63D5C68A57724C67478239FF67E2C1995CD922; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt32,System.Int32> struct ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt32,System.Object> struct ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>[] struct EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>[] struct EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>[] struct EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>[] struct EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>[] struct EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>[] struct EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>[] struct EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>[] struct EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>[] struct EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB; // System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>[] struct EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>[] struct EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>[] struct EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[] struct EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412; // System.Collections.Generic.Dictionary`2/Entry<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>[] struct EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt32>[] struct EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98; // System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Vector3>[] struct EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>[] struct EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Boolean>[] struct EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>[] struct EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>[] struct EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // Microsoft.MixedReality.Toolkit.Utilities.Easing struct Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // System.String struct String_t; // System.Type struct Type_t; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97; IL2CPP_EXTERN_C String_t* _stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_RuntimeMethod_var; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5; struct EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20; struct EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1; struct EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44; struct EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E; struct EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6; struct EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A; struct EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1; struct EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB; struct EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45; struct EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F; struct EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A; struct EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7; struct EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412; struct EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA; struct EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98; struct EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4; struct EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85; struct EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA; struct EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734; struct EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // System.Collections.Generic.Dictionary`2<System.Int32,System.Boolean> struct Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___entries_1)); } inline EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___keys_7)); } inline KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E * get_keys_7() const { return ___keys_7; } inline KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t1A4234C2733AA679CBD9BA87755956535D81647E * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ___values_8)); } inline ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * get_values_8() const { return ___values_8; } inline ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tAC9371FC72C759652E224BBBE13669CD7F4FC7EC * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.Char> struct Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tB6DA7BD3F3255AFC2FAD2CA9A291FBA43E5CD4B1 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tDEA922C20FE7390F1063807C7F0EAE8B2C022A7B * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___entries_1)); } inline EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___keys_7)); } inline KeyCollection_tB6DA7BD3F3255AFC2FAD2CA9A291FBA43E5CD4B1 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tB6DA7BD3F3255AFC2FAD2CA9A291FBA43E5CD4B1 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tB6DA7BD3F3255AFC2FAD2CA9A291FBA43E5CD4B1 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ___values_8)); } inline ValueCollection_tDEA922C20FE7390F1063807C7F0EAE8B2C022A7B * get_values_8() const { return ___values_8; } inline ValueCollection_tDEA922C20FE7390F1063807C7F0EAE8B2C022A7B ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tDEA922C20FE7390F1063807C7F0EAE8B2C022A7B * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.Int32> struct Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___entries_1)); } inline EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___keys_7)); } inline KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tDB6919EBDF36E83E708A483A6C4CF8065F62D1E0 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ___values_8)); } inline ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * get_values_8() const { return ___values_8; } inline ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8738745D8513A557A82E6E097DF4D4E70D5253C2 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.Int64> struct Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t6C75FA39C169AFB913CD046927B28E95AA96C54A * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tDD2C80682AF4CF18883668E136B1980110C79D95 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___entries_1)); } inline EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___keys_7)); } inline KeyCollection_t6C75FA39C169AFB913CD046927B28E95AA96C54A * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6C75FA39C169AFB913CD046927B28E95AA96C54A ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6C75FA39C169AFB913CD046927B28E95AA96C54A * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ___values_8)); } inline ValueCollection_tDD2C80682AF4CF18883668E136B1980110C79D95 * get_values_8() const { return ___values_8; } inline ValueCollection_tDD2C80682AF4CF18883668E136B1980110C79D95 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tDD2C80682AF4CF18883668E136B1980110C79D95 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___entries_1)); } inline EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___keys_7)); } inline KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tBAE0EBE1B8D4A3690FCB3ADC3EF79DF8654B6A36 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ___values_8)); } inline ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * get_values_8() const { return ___values_8; } inline ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tBBFF5FCCEA64DACDC4DFAB67787E57F5B92377EF * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t6B33C4CD2C41DFB404528DC9467BFC2A8460CBE8 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t35B217278C526310A4452FC95797832328E69020 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___entries_1)); } inline EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___keys_7)); } inline KeyCollection_t6B33C4CD2C41DFB404528DC9467BFC2A8460CBE8 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6B33C4CD2C41DFB404528DC9467BFC2A8460CBE8 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6B33C4CD2C41DFB404528DC9467BFC2A8460CBE8 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ___values_8)); } inline ValueCollection_t35B217278C526310A4452FC95797832328E69020 * get_values_8() const { return ___values_8; } inline ValueCollection_t35B217278C526310A4452FC95797832328E69020 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t35B217278C526310A4452FC95797832328E69020 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object> struct Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___entries_1)); } inline EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___keys_7)); } inline KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D * get_keys_7() const { return ___keys_7; } inline KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t9EE4F9D0A4F83EC4D31ABD4E20E68B4DD148ED6D * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ___values_8)); } inline ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * get_values_8() const { return ___values_8; } inline ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5373BD128F5AE1EA1689DBC1D1B58C837368E16A * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Single> struct Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t282A033A4B816C4981A4DB989A4D7878489B643E * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t78B4CCB83CCA558C4CED402E68D660195E4922C9 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___entries_1)); } inline EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___keys_7)); } inline KeyCollection_t282A033A4B816C4981A4DB989A4D7878489B643E * get_keys_7() const { return ___keys_7; } inline KeyCollection_t282A033A4B816C4981A4DB989A4D7878489B643E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t282A033A4B816C4981A4DB989A4D7878489B643E * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ___values_8)); } inline ValueCollection_t78B4CCB83CCA558C4CED402E68D660195E4922C9 * get_values_8() const { return ___values_8; } inline ValueCollection_t78B4CCB83CCA558C4CED402E68D660195E4922C9 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t78B4CCB83CCA558C4CED402E68D660195E4922C9 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t1515277A64E5290A2A03C473DBF87C147F6A3A56 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t219CB5D53EF8DDC9893DB9D9959FF349D09696DE * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___entries_1)); } inline EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___keys_7)); } inline KeyCollection_t1515277A64E5290A2A03C473DBF87C147F6A3A56 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t1515277A64E5290A2A03C473DBF87C147F6A3A56 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t1515277A64E5290A2A03C473DBF87C147F6A3A56 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ___values_8)); } inline ValueCollection_t219CB5D53EF8DDC9893DB9D9959FF349D09696DE * get_values_8() const { return ___values_8; } inline ValueCollection_t219CB5D53EF8DDC9893DB9D9959FF349D09696DE ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t219CB5D53EF8DDC9893DB9D9959FF349D09696DE * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int64,System.Object> struct Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___entries_1)); } inline EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___keys_7)); } inline KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E * get_keys_7() const { return ___keys_7; } inline KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t16FDDD229F402DEF0A0B7629138ED4056009E52E * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ___values_8)); } inline ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * get_values_8() const { return ___values_8; } inline ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tE16ED6DFB218FE1E5E8729436D481A5AD1D82C10 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Boolean> struct Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___entries_1)); } inline EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___keys_7)); } inline KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tDDBF91ADF5EAEC9FBF36BEFC713992099C729969 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ___values_8)); } inline ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * get_values_8() const { return ___values_8; } inline ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t6C1B96ED115EA2070FCB4FC68D38D122EF125009 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___entries_1)); } inline EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___keys_7)); } inline KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t0C2A6470B0D42D7A87AADBEADCF3DD1DDDD08956 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ___values_8)); } inline ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * get_values_8() const { return ___values_8; } inline ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tC88EAA780CBFDC83B1E62A4418478872C1CAE848 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___entries_1)); } inline EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___keys_7)); } inline KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tCA4820F8266AF4059CC5A14888D8195F0D797499 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ___values_8)); } inline ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * get_values_8() const { return ___values_8; } inline ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0ACCC25930444F15B1857D00E9FB6021E5842852 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator> struct Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___entries_1)); } inline EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___keys_7)); } inline KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tB86914AB06A108AEE25721CFAAAC460538F6DAE7 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ___values_8)); } inline ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * get_values_8() const { return ___values_8; } inline ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t801673EF9238D6284F9D0027C8B1420DC72FFDAC * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t5DF1C54EFB6B63884924EC1C260606BEF35F210D * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t1C7740FCE400FAD1C9E1F5A6765854A6AC02A6A6 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___entries_1)); } inline EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___keys_7)); } inline KeyCollection_t5DF1C54EFB6B63884924EC1C260606BEF35F210D * get_keys_7() const { return ___keys_7; } inline KeyCollection_t5DF1C54EFB6B63884924EC1C260606BEF35F210D ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t5DF1C54EFB6B63884924EC1C260606BEF35F210D * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ___values_8)); } inline ValueCollection_t1C7740FCE400FAD1C9E1F5A6765854A6AC02A6A6 * get_values_8() const { return ___values_8; } inline ValueCollection_t1C7740FCE400FAD1C9E1F5A6765854A6AC02A6A6 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t1C7740FCE400FAD1C9E1F5A6765854A6AC02A6A6 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.UInt32> struct Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t40F2484EFDE906551AF8D1C9EF3EB6B4BAD79337 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tAC2C503F26A9650718719E18E28C3ED2671B7D15 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___entries_1)); } inline EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___keys_7)); } inline KeyCollection_t40F2484EFDE906551AF8D1C9EF3EB6B4BAD79337 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t40F2484EFDE906551AF8D1C9EF3EB6B4BAD79337 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t40F2484EFDE906551AF8D1C9EF3EB6B4BAD79337 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ___values_8)); } inline ValueCollection_tAC2C503F26A9650718719E18E28C3ED2671B7D15 * get_values_8() const { return ___values_8; } inline ValueCollection_tAC2C503F26A9650718719E18E28C3ED2671B7D15 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tAC2C503F26A9650718719E18E28C3ED2671B7D15 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.Vector3> struct Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t6E0F02F5A9288E450C7C8478D982A074010EBA4A * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t97743688E0D534B9EF892DADA76F3E886767E198 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___entries_1)); } inline EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___keys_7)); } inline KeyCollection_t6E0F02F5A9288E450C7C8478D982A074010EBA4A * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6E0F02F5A9288E450C7C8478D982A074010EBA4A ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6E0F02F5A9288E450C7C8478D982A074010EBA4A * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ___values_8)); } inline ValueCollection_t97743688E0D534B9EF892DADA76F3E886767E198 * get_values_8() const { return ___values_8; } inline ValueCollection_t97743688E0D534B9EF892DADA76F3E886767E198 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t97743688E0D534B9EF892DADA76F3E886767E198 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t6F870BF5CEDDFEB13959730E1D35AF53F95D1153 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tEA48E4B6DFB033F98ED189470457D6134F7C7AA9 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739, ___entries_1)); } inline EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739, ___keys_7)); } inline KeyCollection_t6F870BF5CEDDFEB13959730E1D35AF53F95D1153 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t6F870BF5CEDDFEB13959730E1D35AF53F95D1153 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t6F870BF5CEDDFEB13959730E1D35AF53F95D1153 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739, ___values_8)); } inline ValueCollection_tEA48E4B6DFB033F98ED189470457D6134F7C7AA9 * get_values_8() const { return ___values_8; } inline ValueCollection_tEA48E4B6DFB033F98ED189470457D6134F7C7AA9 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tEA48E4B6DFB033F98ED189470457D6134F7C7AA9 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Boolean> struct Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t5E19BCCAA3252D2FB5D8BD2D4172859F38CF90C8 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t5D63D5C68A57724C67478239FF67E2C1995CD922 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA, ___entries_1)); } inline EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA, ___keys_7)); } inline KeyCollection_t5E19BCCAA3252D2FB5D8BD2D4172859F38CF90C8 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t5E19BCCAA3252D2FB5D8BD2D4172859F38CF90C8 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t5E19BCCAA3252D2FB5D8BD2D4172859F38CF90C8 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA, ___values_8)); } inline ValueCollection_t5D63D5C68A57724C67478239FF67E2C1995CD922 * get_values_8() const { return ___values_8; } inline ValueCollection_t5D63D5C68A57724C67478239FF67E2C1995CD922 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5D63D5C68A57724C67478239FF67E2C1995CD922 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Int32> struct Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___entries_1)); } inline EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___keys_7)); } inline KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t19748CBB6EA73F4F3CD39D92D3C0F67BDC5275E1 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ___values_8)); } inline ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * get_values_8() const { return ___values_8; } inline ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5021005DA85ABB38062E53F64AC0587152FDBBDB * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.UInt32,System.Object> struct Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___entries_1)); } inline EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___keys_7)); } inline KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F * get_keys_7() const { return ___keys_7; } inline KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t1A5CA3D16BAB9F0EFB6C4D76C45A677E77CAC98F * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ___values_8)); } inline ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * get_values_8() const { return ___values_8; } inline ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8324CFCE2467C0D2309B723020650799D278951C * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean> struct Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___value_3)); } inline bool get_value_3() const { return ___value_3; } inline bool* get_address_of_value_3() { return &___value_3; } inline void set_value_3(bool value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char> struct Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value Il2CppChar ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___value_3)); } inline Il2CppChar get_value_3() const { return ___value_3; } inline Il2CppChar* get_address_of_value_3() { return &___value_3; } inline void set_value_3(Il2CppChar value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32> struct Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64> struct Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int64_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___value_3)); } inline int64_t get_value_3() const { return ___value_3; } inline int64_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int64_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object> struct Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object> struct Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int64_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___key_2)); } inline int64_t get_key_2() const { return ___key_2; } inline int64_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int64_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean> struct Entry_tE032650534234E8BCC41BF224A68F799EB231216 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tE032650534234E8BCC41BF224A68F799EB231216, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tE032650534234E8BCC41BF224A68F799EB231216, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tE032650534234E8BCC41BF224A68F799EB231216, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tE032650534234E8BCC41BF224A68F799EB231216, ___value_3)); } inline bool get_value_3() const { return ___value_3; } inline bool* get_address_of_value_3() { return &___value_3; } inline void set_value_3(bool value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32> struct Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object> struct Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt32> struct Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value uint32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E, ___value_3)); } inline uint32_t get_value_3() const { return ___value_3; } inline uint32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(uint32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Boolean> struct Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key uint32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value bool ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C, ___key_2)); } inline uint32_t get_key_2() const { return ___key_2; } inline uint32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(uint32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C, ___value_3)); } inline bool get_value_3() const { return ___value_3; } inline bool* get_address_of_value_3() { return &___value_3; } inline void set_value_3(bool value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32> struct Entry_t208639F3F4F37C945E22645BD356EDD28167B721 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key uint32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value int32_t ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t208639F3F4F37C945E22645BD356EDD28167B721, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t208639F3F4F37C945E22645BD356EDD28167B721, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t208639F3F4F37C945E22645BD356EDD28167B721, ___key_2)); } inline uint32_t get_key_2() const { return ___key_2; } inline uint32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(uint32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t208639F3F4F37C945E22645BD356EDD28167B721, ___value_3)); } inline int32_t get_value_3() const { return ___value_3; } inline int32_t* get_address_of_value_3() { return &___value_3; } inline void set_value_3(int32_t value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object> struct Entry_t03A87BF6367938D67497088665C733ED14E14AC9 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key uint32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t03A87BF6367938D67497088665C733ED14E14AC9, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t03A87BF6367938D67497088665C733ED14E14AC9, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t03A87BF6367938D67497088665C733ED14E14AC9, ___key_2)); } inline uint32_t get_key_2() const { return ___key_2; } inline uint32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(uint32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t03A87BF6367938D67497088665C733ED14E14AC9, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean> struct Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632, ___dictionary_0)); } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean> struct Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue bool ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8, ___dictionary_0)); } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8, ___currentValue_3)); } inline bool get_currentValue_3() const { return ___currentValue_3; } inline bool* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(bool value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char> struct Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39, ___dictionary_0)); } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char> struct Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue Il2CppChar ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA, ___dictionary_0)); } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA, ___currentValue_3)); } inline Il2CppChar get_currentValue_3() const { return ___currentValue_3; } inline Il2CppChar* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(Il2CppChar value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32> struct Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E, ___dictionary_0)); } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32> struct Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue int32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23, ___dictionary_0)); } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23, ___currentValue_3)); } inline int32_t get_currentValue_3() const { return ___currentValue_3; } inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int32_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64> struct Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1, ___dictionary_0)); } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64> struct Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue int64_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F, ___dictionary_0)); } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F, ___currentValue_3)); } inline int64_t get_currentValue_3() const { return ___currentValue_3; } inline int64_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int64_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object> struct Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA, ___dictionary_0)); } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object> struct Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___dictionary_0)); } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object> struct Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___dictionary_0)); } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single> struct Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue float ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tB45DC159229260FD18B642727B0E422805D986A9, ___dictionary_0)); } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB45DC159229260FD18B642727B0E422805D986A9, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB45DC159229260FD18B642727B0E422805D986A9, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tB45DC159229260FD18B642727B0E422805D986A9, ___currentValue_3)); } inline float get_currentValue_3() const { return ___currentValue_3; } inline float* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(float value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object> struct Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int64_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F, ___dictionary_0)); } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F, ___currentKey_3)); } inline int64_t get_currentKey_3() const { return ___currentKey_3; } inline int64_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int64_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object> struct Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___dictionary_0)); } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean> struct Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638, ___dictionary_0)); } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean> struct Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue bool ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___dictionary_0)); } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C, ___currentValue_3)); } inline bool get_currentValue_3() const { return ___currentValue_3; } inline bool* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(bool value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32> struct Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713, ___dictionary_0)); } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32> struct Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue int32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___dictionary_0)); } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712, ___currentValue_3)); } inline int32_t get_currentValue_3() const { return ___currentValue_3; } inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int32_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object> struct Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031, ___dictionary_0)); } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object> struct Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___dictionary_0)); } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191, ___dictionary_0)); } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B, ___dictionary_0)); } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32> struct Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F, ___dictionary_0)); } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32> struct Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue uint32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99, ___dictionary_0)); } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99, ___currentValue_3)); } inline uint32_t get_currentValue_3() const { return ___currentValue_3; } inline uint32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(uint32_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3> struct Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65, ___dictionary_0)); } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey RuntimeObject * ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2, ___dictionary_0)); } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2, ___currentKey_3)); } inline RuntimeObject * get_currentKey_3() const { return ___currentKey_3; } inline RuntimeObject ** get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(RuntimeObject * value) { ___currentKey_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean> struct Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey uint32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6, ___dictionary_0)); } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6, ___currentKey_3)); } inline uint32_t get_currentKey_3() const { return ___currentKey_3; } inline uint32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(uint32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean> struct Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue bool ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F, ___dictionary_0)); } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F, ___currentValue_3)); } inline bool get_currentValue_3() const { return ___currentValue_3; } inline bool* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(bool value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32> struct Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey uint32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F, ___dictionary_0)); } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F, ___currentKey_3)); } inline uint32_t get_currentKey_3() const { return ___currentKey_3; } inline uint32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(uint32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32> struct Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue int32_t ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___dictionary_0)); } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D, ___currentValue_3)); } inline int32_t get_currentValue_3() const { return ___currentValue_3; } inline int32_t* get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(int32_t value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object> struct Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey uint32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69, ___dictionary_0)); } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69, ___currentKey_3)); } inline uint32_t get_currentKey_3() const { return ___currentKey_3; } inline uint32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(uint32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object> struct Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___dictionary_0)); } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char> struct KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value Il2CppChar ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265, ___value_1)); } inline Il2CppChar get_value_1() const { return ___value_1; } inline Il2CppChar* get_address_of_value_1() { return &___value_1; } inline void set_value_1(Il2CppChar value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32> struct KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64> struct KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int64_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28, ___value_1)); } inline int64_t get_value_1() const { return ___value_1; } inline int64_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int64_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object> struct KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object> struct KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int64_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2, ___key_0)); } inline int64_t get_key_0() const { return ___key_0; } inline int64_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int64_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean> struct KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value bool ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A, ___value_1)); } inline bool get_value_1() const { return ___value_1; } inline bool* get_address_of_value_1() { return &___value_1; } inline void set_value_1(bool value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32> struct KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> struct KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32> struct KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value uint32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700, ___value_1)); } inline uint32_t get_value_1() const { return ___value_1; } inline uint32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(uint32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean> struct KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value bool ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93, ___key_0)); } inline uint32_t get_key_0() const { return ___key_0; } inline uint32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(uint32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93, ___value_1)); } inline bool get_value_1() const { return ___value_1; } inline bool* get_address_of_value_1() { return &___value_1; } inline void set_value_1(bool value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32> struct KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value int32_t ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329, ___key_0)); } inline uint32_t get_key_0() const { return ___key_0; } inline uint32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(uint32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329, ___value_1)); } inline int32_t get_value_1() const { return ___value_1; } inline int32_t* get_address_of_value_1() { return &___value_1; } inline void set_value_1(int32_t value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object> struct KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA { public: // TKey System.Collections.Generic.KeyValuePair`2::key uint32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA, ___key_0)); } inline uint32_t get_key_0() const { return ___key_0; } inline uint32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(uint32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value); } inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken struct EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 { public: // System.UInt64 System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // UnityEngine.Quaternion struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___identityQuaternion_4 = value; } }; // System.Resources.ResourceLocator struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 { public: // System.Object System.Resources.ResourceLocator::_value RuntimeObject * ____value_0; // System.Int32 System.Resources.ResourceLocator::_dataPos int32_t ____dataPos_1; public: inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____value_0)); } inline RuntimeObject * get__value_0() const { return ____value_0; } inline RuntimeObject ** get_address_of__value_0() { return &____value_0; } inline void set__value_0(RuntimeObject * value) { ____value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value); } inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____dataPos_1)); } inline int32_t get__dataPos_1() const { return ____dataPos_1; } inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; } inline void set__dataPos_1(int32_t value) { ____dataPos_1 = value; } }; // Native definition for P/Invoke marshalling of System.Resources.ResourceLocator struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_pinvoke { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // Native definition for COM marshalling of System.Resources.ResourceLocator struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_com { Il2CppIUnknown* ____value_0; int32_t ____dataPos_1; }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // Microsoft.MixedReality.Toolkit.UI.ThemeDefinition struct ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A { public: // System.Type Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::Type Type_t * ___Type_0; // System.String Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::ClassName String_t* ___ClassName_1; // System.String Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::AssemblyQualifiedName String_t* ___AssemblyQualifiedName_2; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeStateProperty> Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::stateProperties List_1_t2496D96CE063836FAF596CF99739372B64DE8397 * ___stateProperties_3; // System.Collections.Generic.List`1<Microsoft.MixedReality.Toolkit.UI.ThemeProperty> Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::customProperties List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A * ___customProperties_4; // Microsoft.MixedReality.Toolkit.Utilities.Easing Microsoft.MixedReality.Toolkit.UI.ThemeDefinition::easing Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 * ___easing_5; public: inline static int32_t get_offset_of_Type_0() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___Type_0)); } inline Type_t * get_Type_0() const { return ___Type_0; } inline Type_t ** get_address_of_Type_0() { return &___Type_0; } inline void set_Type_0(Type_t * value) { ___Type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Type_0), (void*)value); } inline static int32_t get_offset_of_ClassName_1() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___ClassName_1)); } inline String_t* get_ClassName_1() const { return ___ClassName_1; } inline String_t** get_address_of_ClassName_1() { return &___ClassName_1; } inline void set_ClassName_1(String_t* value) { ___ClassName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassName_1), (void*)value); } inline static int32_t get_offset_of_AssemblyQualifiedName_2() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___AssemblyQualifiedName_2)); } inline String_t* get_AssemblyQualifiedName_2() const { return ___AssemblyQualifiedName_2; } inline String_t** get_address_of_AssemblyQualifiedName_2() { return &___AssemblyQualifiedName_2; } inline void set_AssemblyQualifiedName_2(String_t* value) { ___AssemblyQualifiedName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___AssemblyQualifiedName_2), (void*)value); } inline static int32_t get_offset_of_stateProperties_3() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___stateProperties_3)); } inline List_1_t2496D96CE063836FAF596CF99739372B64DE8397 * get_stateProperties_3() const { return ___stateProperties_3; } inline List_1_t2496D96CE063836FAF596CF99739372B64DE8397 ** get_address_of_stateProperties_3() { return &___stateProperties_3; } inline void set_stateProperties_3(List_1_t2496D96CE063836FAF596CF99739372B64DE8397 * value) { ___stateProperties_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___stateProperties_3), (void*)value); } inline static int32_t get_offset_of_customProperties_4() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___customProperties_4)); } inline List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A * get_customProperties_4() const { return ___customProperties_4; } inline List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A ** get_address_of_customProperties_4() { return &___customProperties_4; } inline void set_customProperties_4(List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A * value) { ___customProperties_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___customProperties_4), (void*)value); } inline static int32_t get_offset_of_easing_5() { return static_cast<int32_t>(offsetof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A, ___easing_5)); } inline Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 * get_easing_5() const { return ___easing_5; } inline Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 ** get_address_of_easing_5() { return &___easing_5; } inline void set_easing_5(Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 * value) { ___easing_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___easing_5), (void*)value); } }; // Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.UI.ThemeDefinition struct ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A_marshaled_pinvoke { Type_t * ___Type_0; char* ___ClassName_1; char* ___AssemblyQualifiedName_2; List_1_t2496D96CE063836FAF596CF99739372B64DE8397 * ___stateProperties_3; List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A * ___customProperties_4; Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 * ___easing_5; }; // Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.UI.ThemeDefinition struct ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A_marshaled_com { Type_t * ___Type_0; Il2CppChar* ___ClassName_1; Il2CppChar* ___AssemblyQualifiedName_2; List_1_t2496D96CE063836FAF596CF99739372B64DE8397 * ___stateProperties_3; List_1_t731069DD2284EA9607A9E3AC5C0EC55CB3C3A12A * ___customProperties_4; Easing_t1CD4B2FCFCB30095BDB31E8DAA292ABAF82E5D03 * ___easing_5; }; // System.UInt32 struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // UnityEngine.Vector3 struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E { public: // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; public: inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); } inline float get_x_2() const { return ___x_2; } inline float* get_address_of_x_2() { return &___x_2; } inline void set_x_2(float value) { ___x_2 = value; } inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); } inline float get_y_3() const { return ___y_3; } inline float* get_address_of_y_3() { return &___y_3; } inline void set_y_3(float value) { ___y_3 = value; } inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); } inline float get_z_4() const { return ___z_4; } inline float* get_address_of_z_4() { return &___z_4; } inline void set_z_4(float value) { ___z_4 = value; } }; struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___negativeInfinityVector_14 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings struct AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 { public: // System.Single Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings::<LowPassCutoff>k__BackingField float ___U3CLowPassCutoffU3Ek__BackingField_0; // System.Single Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings::<HighPassCutoff>k__BackingField float ___U3CHighPassCutoffU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CLowPassCutoffU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0, ___U3CLowPassCutoffU3Ek__BackingField_0)); } inline float get_U3CLowPassCutoffU3Ek__BackingField_0() const { return ___U3CLowPassCutoffU3Ek__BackingField_0; } inline float* get_address_of_U3CLowPassCutoffU3Ek__BackingField_0() { return &___U3CLowPassCutoffU3Ek__BackingField_0; } inline void set_U3CLowPassCutoffU3Ek__BackingField_0(float value) { ___U3CLowPassCutoffU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CHighPassCutoffU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0, ___U3CHighPassCutoffU3Ek__BackingField_1)); } inline float get_U3CHighPassCutoffU3Ek__BackingField_1() const { return ___U3CHighPassCutoffU3Ek__BackingField_1; } inline float* get_address_of_U3CHighPassCutoffU3Ek__BackingField_1() { return &___U3CHighPassCutoffU3Ek__BackingField_1; } inline void set_U3CHighPassCutoffU3Ek__BackingField_1(float value) { ___U3CHighPassCutoffU3Ek__BackingField_1 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator> struct Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___value_3)); } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 get_value_3() const { return ___value_3; } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->____value_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C, ___value_3)); } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A get_value_3() const { return ___value_3; } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * get_address_of_value_3() { return &___value_3; } inline void set_value_3(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___Type_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___easing_5), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Vector3> struct Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4, ___value_3)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_value_3() const { return ___value_3; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_value_3() { return &___value_3; } inline void set_value_3(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char> struct Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4, ___dictionary_0)); } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4, ___current_3)); } inline KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32> struct Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC, ___dictionary_0)); } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC, ___current_3)); } inline KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB get_current_3() const { return ___current_3; } inline KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64> struct Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4, ___dictionary_0)); } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4, ___current_3)); } inline KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object> struct Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C, ___dictionary_0)); } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C, ___current_3)); } inline KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67, ___dictionary_0)); } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67, ___currentValue_3)); } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 get_currentValue_3() const { return ___currentValue_3; } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object> struct Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD, ___dictionary_0)); } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD, ___current_3)); } inline KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean> struct Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851, ___dictionary_0)); } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851, ___current_3)); } inline KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A get_current_3() const { return ___current_3; } inline KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32> struct Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2, ___dictionary_0)); } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2, ___current_3)); } inline KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object> struct Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___dictionary_0)); } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___current_3)); } inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___dictionary_0)); } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8, ___currentValue_3)); } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 get_currentValue_3() const { return ___currentValue_3; } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->____value_0), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610, ___dictionary_0)); } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610, ___currentValue_3)); } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A get_currentValue_3() const { return ___currentValue_3; } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___Type_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___easing_5), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32> struct Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810, ___dictionary_0)); } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810, ___current_3)); } inline KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3> struct Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB, ___dictionary_0)); } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB, ___currentValue_3)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_currentValue_3() const { return ___currentValue_3; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean> struct Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A, ___dictionary_0)); } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A, ___current_3)); } inline KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32> struct Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F, ___dictionary_0)); } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F, ___current_3)); } inline KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object> struct Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___dictionary_0)); } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___current_3)); } inline KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA get_current_3() const { return ___current_3; } inline KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator> struct KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF, ___value_1)); } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 get_value_1() const { return ___value_1; } inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->____value_0), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37, ___value_1)); } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A get_value_1() const { return ___value_1; } inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * get_address_of_value_1() { return &___value_1; } inline void set_value_1(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___Type_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___easing_5), (void*)NULL); #endif } }; // System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3> struct KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823, ___value_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_value_1() const { return ___value_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_value_1() { return &___value_1; } inline void set_value_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___value_1 = value; } }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.Int32Enum struct Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C { public: // System.Int32 System.Int32Enum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose struct MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 { public: // UnityEngine.Vector3 Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::position Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_1; // UnityEngine.Quaternion Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::rotation Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_2; public: inline static int32_t get_offset_of_position_1() { return static_cast<int32_t>(offsetof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99, ___position_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_1() const { return ___position_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_1() { return &___position_1; } inline void set_position_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___position_1 = value; } inline static int32_t get_offset_of_rotation_2() { return static_cast<int32_t>(offsetof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99, ___rotation_2)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rotation_2() const { return ___rotation_2; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rotation_2() { return &___rotation_2; } inline void set_rotation_2(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___rotation_2 = value; } }; struct MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99_StaticFields { public: // Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose::<ZeroIdentity>k__BackingField MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___U3CZeroIdentityU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CZeroIdentityU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99_StaticFields, ___U3CZeroIdentityU3Ek__BackingField_0)); } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 get_U3CZeroIdentityU3Ek__BackingField_0() const { return ___U3CZeroIdentityU3Ek__BackingField_0; } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * get_address_of_U3CZeroIdentityU3Ek__BackingField_0() { return &___U3CZeroIdentityU3Ek__BackingField_0; } inline void set_U3CZeroIdentityU3Ek__BackingField_0(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 value) { ___U3CZeroIdentityU3Ek__BackingField_0 = value; } }; // System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList struct EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 { public: // System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList::firstToken EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 ___firstToken_0; // System.Collections.Generic.List`1<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList::restTokens List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 * ___restTokens_1; public: inline static int32_t get_offset_of_firstToken_0() { return static_cast<int32_t>(offsetof(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128, ___firstToken_0)); } inline EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 get_firstToken_0() const { return ___firstToken_0; } inline EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 * get_address_of_firstToken_0() { return &___firstToken_0; } inline void set_firstToken_0(EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 value) { ___firstToken_0 = value; } inline static int32_t get_offset_of_restTokens_1() { return static_cast<int32_t>(offsetof(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128, ___restTokens_1)); } inline List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 * get_restTokens_1() const { return ___restTokens_1; } inline List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 ** get_address_of_restTokens_1() { return &___restTokens_1; } inline void set_restTokens_1(List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 * value) { ___restTokens_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___restTokens_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList struct EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128_marshaled_pinvoke { EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 ___firstToken_0; List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 * ___restTokens_1; }; // Native definition for COM marshalling of System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList struct EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128_marshaled_com { EventRegistrationToken_t5460ED02F1A6B74B604DFD634E8D5429857E9830 ___firstToken_0; List_1_t01F23063BEF9E4FDEA5BD7414739DB35870B9ED9 * ___restTokens_1; }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289, ___value_3)); } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 get_value_3() const { return ___value_3; } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object> struct Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value RuntimeObject * ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___value_3)); } inline RuntimeObject * get_value_3() const { return ___value_3; } inline RuntimeObject ** get_address_of_value_3() { return &___value_3; } inline void set_value_3(RuntimeObject * value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single> struct Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value float ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092, ___value_3)); } inline float get_value_3() const { return ___value_3; } inline float* get_address_of_value_3() { return &___value_3; } inline void set_value_3(float value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key int32_t ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB, ___key_2)); } inline int32_t get_key_2() const { return ___key_2; } inline int32_t* get_address_of_key_2() { return &___key_2; } inline void set_key_2(int32_t value) { ___key_2 = value; } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB, ___value_3)); } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 get_value_3() const { return ___value_3; } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 value) { ___value_3 = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B { public: // System.Int32 System.Collections.Generic.Dictionary`2/Entry::hashCode int32_t ___hashCode_0; // System.Int32 System.Collections.Generic.Dictionary`2/Entry::next int32_t ___next_1; // TKey System.Collections.Generic.Dictionary`2/Entry::key RuntimeObject * ___key_2; // TValue System.Collections.Generic.Dictionary`2/Entry::value EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 ___value_3; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B, ___hashCode_0)); } inline int32_t get_hashCode_0() const { return ___hashCode_0; } inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; } inline void set_hashCode_0(int32_t value) { ___hashCode_0 = value; } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B, ___key_2)); } inline RuntimeObject * get_key_2() const { return ___key_2; } inline RuntimeObject ** get_address_of_key_2() { return &___key_2; } inline void set_key_2(RuntimeObject * value) { ___key_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value); } inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B, ___value_3)); } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 get_value_3() const { return ___value_3; } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * get_address_of_value_3() { return &___value_3; } inline void set_value_3(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 value) { ___value_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___restTokens_1), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E, ___dictionary_0)); } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111, ___dictionary_0)); } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111, ___currentValue_3)); } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 get_currentValue_3() const { return ___currentValue_3; } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 value) { ___currentValue_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object> struct Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5, ___dictionary_0)); } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single> struct Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B, ___dictionary_0)); } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::dictionary Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::version int32_t ___version_2; // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator::currentKey int32_t ___currentKey_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D, ___dictionary_0)); } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentKey_3() { return static_cast<int32_t>(offsetof(Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D, ___currentKey_3)); } inline int32_t get_currentKey_3() const { return ___currentKey_3; } inline int32_t* get_address_of_currentKey_3() { return &___currentKey_3; } inline void set_currentKey_3(int32_t value) { ___currentKey_3 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator> struct Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D, ___dictionary_0)); } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D, ___current_3)); } inline KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF get_current_3() const { return ___current_3; } inline KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->____value_0), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition> struct Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891, ___dictionary_0)); } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891, ___current_3)); } inline KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___Type_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___easing_5), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3> struct Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B, ___dictionary_0)); } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B, ___current_3)); } inline KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::dictionary Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::currentValue EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1, ___dictionary_0)); } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1, ___currentValue_3)); } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 get_currentValue_3() const { return ___currentValue_3; } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentValue_3))->___restTokens_1), (void*)NULL); } }; // System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB, ___value_1)); } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 get_value_1() const { return ___value_1; } inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object> struct KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single> struct KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value float ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA, ___value_1)); } inline float get_value_1() const { return ___value_1; } inline float* get_address_of_value_1() { return &___value_1; } inline void set_value_1(float value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 { public: // TKey System.Collections.Generic.KeyValuePair`2::key int32_t ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8, ___key_0)); } inline int32_t get_key_0() const { return ___key_0; } inline int32_t* get_address_of_key_0() { return &___key_0; } inline void set_key_0(int32_t value) { ___key_0 = value; } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8, ___value_1)); } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 get_value_1() const { return ___value_1; } inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 value) { ___value_1 = value; } }; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA, ___value_1)); } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 get_value_1() const { return ___value_1; } inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * get_address_of_value_1() { return &___value_1; } inline void set_value_1(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___restTokens_1), (void*)NULL); } }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose> struct Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4, ___dictionary_0)); } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4, ___current_3)); } inline KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB get_current_3() const { return ___current_3; } inline KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object> struct Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3, ___dictionary_0)); } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3, ___current_3)); } inline KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single> struct Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777, ___dictionary_0)); } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777, ___current_3)); } inline KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA get_current_3() const { return ___current_3; } inline KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings> struct Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F, ___dictionary_0)); } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F, ___current_3)); } inline KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList> struct Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F, ___dictionary_0)); } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F, ___current_3)); } inline KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA get_current_3() const { return ___current_3; } inline KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___current_3))->___value_1))->___restTokens_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>[] struct EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 m_Items[1]; public: inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>[] struct EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 m_Items[1]; public: inline Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>[] struct EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 m_Items[1]; public: inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>[] struct EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E m_Items[1]; public: inline Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>[] struct EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 m_Items[1]; public: inline Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>[] struct EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 m_Items[1]; public: inline Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tEEB6B8FB88F9CD0959D317B86FE6B584F9977289 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>[] struct EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B m_Items[1]; public: inline Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Single>[] struct EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 m_Items[1]; public: inline Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t8D7CEE3CA2B9DF7A486A43D23C223A50523D7092 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>[] struct EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB m_Items[1]; public: inline Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t1F99496AA3C0F089C1988897F63AFAD167D4C1AB value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>[] struct EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A m_Items[1]; public: inline Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>[] struct EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tE032650534234E8BCC41BF224A68F799EB231216 m_Items[1]; public: inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tE032650534234E8BCC41BF224A68F799EB231216 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tE032650534234E8BCC41BF224A68F799EB231216 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tE032650534234E8BCC41BF224A68F799EB231216 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>[] struct EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A m_Items[1]; public: inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[] struct EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE m_Items[1]; public: inline Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } inline Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[] struct EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 m_Items[1]; public: inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL); #endif } inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>[] struct EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C m_Items[1]; public: inline Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___Type_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___easing_5), (void*)NULL); #endif } inline Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tD249FC5F239C257FAE235E483F9ADFD29571488C value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___Type_0), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___ClassName_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___AssemblyQualifiedName_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___stateProperties_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___customProperties_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___easing_5), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.UInt32>[] struct EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E m_Items[1]; public: inline Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tDFCAB2DEA911C70DA17E39DC221CB557D90B5A5E value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,UnityEngine.Vector3>[] struct EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 m_Items[1]; public: inline Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } inline Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tDB3929F7FE02F2BF204FDACE8C3C1AA15936DED4 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); } }; // System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>[] struct EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B m_Items[1]; public: inline Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___restTokens_1), (void*)NULL); #endif } inline Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t0FA60CC592AC26D609DABEE7DCF54F0507A3422B value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->___restTokens_1), (void*)NULL); #endif } }; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Boolean>[] struct EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA : public RuntimeArray { public: ALIGN_FIELD (8) Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C m_Items[1]; public: inline Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tAA4545460428FDA10694CB1D5111BFBCAB7F1C2C value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>[] struct EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t208639F3F4F37C945E22645BD356EDD28167B721 m_Items[1]; public: inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t208639F3F4F37C945E22645BD356EDD28167B721 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t208639F3F4F37C945E22645BD356EDD28167B721 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t208639F3F4F37C945E22645BD356EDD28167B721 value) { m_Items[index] = value; } }; // System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>[] struct EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0 : public RuntimeArray { public: ALIGN_FIELD (8) Entry_t03A87BF6367938D67497088665C733ED14E14AC9 m_Items[1]; public: inline Entry_t03A87BF6367938D67497088665C733ED14E14AC9 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t03A87BF6367938D67497088665C733ED14E14AC9 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Entry_t03A87BF6367938D67497088665C733ED14E14AC9 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } inline Entry_t03A87BF6367938D67497088665C733ED14E14AC9 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t03A87BF6367938D67497088665C733ED14E14AC9 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t03A87BF6367938D67497088665C733ED14E14AC9 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL); } }; // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_gshared_inline (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_gshared_inline (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mF864B52139911725CC0C755551A59D18C33A56A0_gshared (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, int32_t ___key0, Il2CppChar ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_gshared_inline (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_gshared_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_gshared_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_gshared_inline (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_gshared_inline (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mAC437FAF19B6F21DD90D59C629BA8F7967971E56_gshared (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_gshared_inline (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_gshared_inline (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_gshared_inline (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m21E26AC2126D29C234A767F4E8DE291245F4BB0F_gshared (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, int32_t ___key0, int64_t ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_gshared_inline (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_gshared_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_gshared_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_gshared_inline (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_gshared_inline (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m38685BA70A8C37D1ABABB4A73A97A7F5ED0AC270_gshared (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_gshared_inline (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_gshared_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_gshared_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_gshared_inline (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_gshared_inline (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mFA57F2CB360A42046974B412857909EEE8B625DB_gshared (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, int32_t ___key0, MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_gshared_inline (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_gshared_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_gshared_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_gshared_inline (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_gshared_inline (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m723E5869627BAE32A27DFCAA1D70A915718E7CA6_gshared (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_gshared_inline (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_gshared_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_gshared_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_gshared_inline (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_gshared_inline (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m758E73CC5CA8EE6E4A5D763AE69F06BC5C446F0B_gshared (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, int32_t ___key0, float ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_gshared_inline (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_gshared_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_gshared_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_gshared_inline (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_gshared_inline (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m5B4622619C59AD30AE58B4752E9512722BB0CCFA_gshared (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, int32_t ___key0, AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_gshared_inline (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_gshared_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_gshared_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_gshared_inline (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_gshared_inline (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m5B93107CD78CFF39793DCC1FB37344B266FAD40E_gshared (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, int64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_gshared_inline (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_gshared_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_gshared_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_gshared_inline (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_gshared_inline (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mAAE1742C0DCAAF1A9590BD39EE111DBF2AA545A6_gshared (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_gshared_inline (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_gshared_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_gshared_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_gshared_inline (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_gshared_inline (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m88F692B7F78A3FCE5E88BD2B2514997F17CB45A8_gshared (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_gshared_inline (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_gshared_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_gshared_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_gshared_inline (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_gshared_inline (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E_gshared (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_gshared_inline (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_gshared_inline (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_gshared_inline (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m235C2ECB676FBEBE3C67752ED2214DB926749C44_gshared (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, RuntimeObject * ___key0, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_gshared_inline (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_gshared_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_gshared_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_gshared_inline (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_gshared_inline (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m627A613C1DE1B3DC393153C092E58CF88F9BBC54_gshared (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, RuntimeObject * ___key0, ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_gshared_inline (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_gshared_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_gshared_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_gshared_inline (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_gshared_inline (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m5C21180640F7DD2BE827925D9A18894E5A38D96B_gshared (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, RuntimeObject * ___key0, uint32_t ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_gshared_inline (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_gshared_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_gshared_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_gshared_inline (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_gshared_inline (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m2AFEF5F0895AE2696C7AE320C252E2E86A007120_gshared (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, RuntimeObject * ___key0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_gshared_inline (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_gshared_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_gshared_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_gshared_inline (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_gshared_inline (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mD5BC97814CCB81E39128F4234C528B058EF662BD_gshared (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, RuntimeObject * ___key0, EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_gshared_inline (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_gshared_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_gshared_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_gshared_inline (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_gshared_inline (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m40934BD848E891E1117DEA852B5B2BF11ECDDB91_gshared (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, uint32_t ___key0, bool ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_gshared_inline (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_gshared_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_gshared_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_gshared_inline (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_gshared_inline (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mD6FF304CCBF59175C212FA30D5C7E0C6A0E758B9_gshared (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, uint32_t ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_gshared_inline (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_gshared_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_gshared_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_gshared_inline (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_gshared_inline (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m76DA9A6BA5B7BD564ECE8478952E9BD7565E3D5E_gshared (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_gshared_inline (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_gshared_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_gshared_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method); // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_gshared_inline (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_gshared_inline (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412 (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *, const RuntimeMethod*))Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::Dispose() inline void Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, const RuntimeMethod*))Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF_gshared)(__this, method); } // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373 (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, const RuntimeMethod*))Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::get_Current() inline int32_t Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_inline (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, const RuntimeMethod*))Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958 (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52 (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *, const RuntimeMethod*))Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::Dispose() inline void Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4 (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, const RuntimeMethod*))Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692 (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, const RuntimeMethod*))Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::get_Current() inline bool Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_inline (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, const RuntimeMethod*))Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04 (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mF864B52139911725CC0C755551A59D18C33A56A0 (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, int32_t ___key0, Il2CppChar ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *, int32_t, Il2CppChar, const RuntimeMethod*))KeyValuePair_2__ctor_mF864B52139911725CC0C755551A59D18C33A56A0_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::MoveNext() inline bool Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::get_Current() inline KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_inline (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::Dispose() inline void Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44 (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::get_Key() inline int32_t KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>::get_Value() inline Il2CppChar KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method) { return (( Il2CppChar (*) (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_gshared_inline)(__this, method); } // System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4 (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0 (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362 (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *, const RuntimeMethod*))Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::Dispose() inline void Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, const RuntimeMethod*))Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::MoveNext() inline bool Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, const RuntimeMethod*))Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::get_Current() inline int32_t Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_inline (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, const RuntimeMethod*))Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024 (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33 (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *, const RuntimeMethod*))Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::Dispose() inline void Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30 (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, const RuntimeMethod*))Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::MoveNext() inline bool Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74 (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, const RuntimeMethod*))Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::get_Current() inline Il2CppChar Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_inline (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { return (( Il2CppChar (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, const RuntimeMethod*))Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42 (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mAC437FAF19B6F21DD90D59C629BA8F7967971E56 (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, int32_t ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *, int32_t, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_mAC437FAF19B6F21DD90D59C629BA8F7967971E56_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::get_Current() inline KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_inline (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::Dispose() inline void Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975 (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Key() inline int32_t KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *, const RuntimeMethod*))KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Value() inline int32_t KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *, const RuntimeMethod*))KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6 (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286 (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5 (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, const RuntimeMethod*))Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::Dispose() inline void Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0 (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, const RuntimeMethod*))Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270 (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, const RuntimeMethod*))Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::get_Current() inline int32_t Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_inline (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, const RuntimeMethod*))Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12 (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156 (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *, const RuntimeMethod*))Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::Dispose() inline void Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96 (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, const RuntimeMethod*))Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, const RuntimeMethod*))Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::get_Current() inline int32_t Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_inline (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, const RuntimeMethod*))Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94 (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m21E26AC2126D29C234A767F4E8DE291245F4BB0F (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, int32_t ___key0, int64_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *, int32_t, int64_t, const RuntimeMethod*))KeyValuePair_2__ctor_m21E26AC2126D29C234A767F4E8DE291245F4BB0F_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::MoveNext() inline bool Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4 (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::get_Current() inline KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_inline (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::Dispose() inline void Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297 (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::get_Key() inline int32_t KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>::get_Value() inline int64_t KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method) { return (( int64_t (*) (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919 (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72 (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4 (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *, const RuntimeMethod*))Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::Dispose() inline void Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1 (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, const RuntimeMethod*))Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::MoveNext() inline bool Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95 (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, const RuntimeMethod*))Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::get_Current() inline int32_t Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_inline (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, const RuntimeMethod*))Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603 (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1 (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *, const RuntimeMethod*))Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::Dispose() inline void Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04 (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, const RuntimeMethod*))Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::MoveNext() inline bool Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83 (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, const RuntimeMethod*))Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::get_Current() inline int64_t Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_inline (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { return (( int64_t (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, const RuntimeMethod*))Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715 (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7 (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *, int32_t, const RuntimeMethod*))Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m38685BA70A8C37D1ABABB4A73A97A7F5ED0AC270 (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *, int32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m38685BA70A8C37D1ABABB4A73A97A7F5ED0AC270_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current() inline KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_inline (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose() inline void Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Key() inline int32_t KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38 (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21 (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *, const RuntimeMethod*))Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::Dispose() inline void Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40 (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, const RuntimeMethod*))Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33 (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, const RuntimeMethod*))Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::get_Current() inline int32_t Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_inline (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, const RuntimeMethod*))Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95 (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *, const RuntimeMethod*))Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose() inline void Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, const RuntimeMethod*))Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4 (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, const RuntimeMethod*))Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_inline (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, const RuntimeMethod*))Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16 (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mFA57F2CB360A42046974B412857909EEE8B625DB (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, int32_t ___key0, MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *, int32_t, MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 , const RuntimeMethod*))KeyValuePair_2__ctor_mFA57F2CB360A42046974B412857909EEE8B625DB_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() inline bool Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1 (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() inline KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_inline (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() inline void Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Key() inline int32_t KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *, const RuntimeMethod*))KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Value() inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method) { return (( MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 (*) (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *, const RuntimeMethod*))KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39 (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374 (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1 (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49 (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *, const RuntimeMethod*))Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() inline void Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, const RuntimeMethod*))Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() inline bool Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754 (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, const RuntimeMethod*))Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() inline int32_t Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_inline (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, const RuntimeMethod*))Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2 (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74 (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *, const RuntimeMethod*))Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() inline void Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764 (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, const RuntimeMethod*))Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() inline bool Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, const RuntimeMethod*))Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() inline MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_inline (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { return (( MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, const RuntimeMethod*))Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m723E5869627BAE32A27DFCAA1D70A915718E7CA6 (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *, int32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m723E5869627BAE32A27DFCAA1D70A915718E7CA6_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8 (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::get_Current() inline KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_inline (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::Dispose() inline void Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::get_Key() inline int32_t KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3 (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75 (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *, const RuntimeMethod*))Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() inline void Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1 (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, const RuntimeMethod*))Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3 (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, const RuntimeMethod*))Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() inline int32_t Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_inline (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, const RuntimeMethod*))Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *, const RuntimeMethod*))Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() inline void Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, const RuntimeMethod*))Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830 (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, const RuntimeMethod*))Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_inline (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, const RuntimeMethod*))Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3 (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444 (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *, int32_t, const RuntimeMethod*))Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m758E73CC5CA8EE6E4A5D763AE69F06BC5C446F0B (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, int32_t ___key0, float ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *, int32_t, float, const RuntimeMethod*))KeyValuePair_2__ctor_m758E73CC5CA8EE6E4A5D763AE69F06BC5C446F0B_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::MoveNext() inline bool Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::get_Current() inline KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_inline (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::Dispose() inline void Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::get_Key() inline int32_t KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *, const RuntimeMethod*))KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Single>::get_Value() inline float KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method) { return (( float (*) (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *, const RuntimeMethod*))KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53 (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *, const RuntimeMethod*))Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() inline void Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4 (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, const RuntimeMethod*))Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() inline bool Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, const RuntimeMethod*))Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() inline int32_t Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_inline (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, const RuntimeMethod*))Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4 (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808 (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9 (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *, const RuntimeMethod*))Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() inline void Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118 (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, const RuntimeMethod*))Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() inline bool Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7 (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, const RuntimeMethod*))Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() inline float Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_inline (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { return (( float (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, const RuntimeMethod*))Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42 (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m5B4622619C59AD30AE58B4752E9512722BB0CCFA (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, int32_t ___key0, AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *, int32_t, AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 , const RuntimeMethod*))KeyValuePair_2__ctor_m5B4622619C59AD30AE58B4752E9512722BB0CCFA_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() inline bool Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() inline KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_inline (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() inline void Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Key() inline int32_t KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Value() inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method) { return (( AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 (*) (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3 (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4 (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *, const RuntimeMethod*))Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() inline void Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, const RuntimeMethod*))Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() inline bool Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, const RuntimeMethod*))Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() inline int32_t Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_inline (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, const RuntimeMethod*))Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0 (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91 (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *, const RuntimeMethod*))Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() inline void Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082 (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, const RuntimeMethod*))Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() inline bool Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, const RuntimeMethod*))Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() inline AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_inline (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { return (( AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, const RuntimeMethod*))Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0 (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m5B93107CD78CFF39793DCC1FB37344B266FAD40E (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, int64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *, int64_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m5B93107CD78CFF39793DCC1FB37344B266FAD40E_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25 (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::get_Current() inline KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_inline (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::Dispose() inline void Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1 (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Key() inline int64_t KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method) { return (( int64_t (*) (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7 (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *, const RuntimeMethod*))Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::Dispose() inline void Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, const RuntimeMethod*))Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8 (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, const RuntimeMethod*))Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::get_Current() inline int64_t Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_inline (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { return (( int64_t (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, const RuntimeMethod*))Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1 (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0 (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *, const RuntimeMethod*))Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::Dispose() inline void Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, const RuntimeMethod*))Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, const RuntimeMethod*))Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_inline (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, const RuntimeMethod*))Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516 (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mAAE1742C0DCAAF1A9590BD39EE111DBF2AA545A6 (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, RuntimeObject * ___key0, bool ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *, RuntimeObject *, bool, const RuntimeMethod*))KeyValuePair_2__ctor_mAAE1742C0DCAAF1A9590BD39EE111DBF2AA545A6_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_Current() inline KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_inline (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Dispose() inline void Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *, const RuntimeMethod*))KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>::get_Value() inline bool KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method) { return (( bool (*) (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *, const RuntimeMethod*))KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23 (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629 (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *, const RuntimeMethod*))Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::Dispose() inline void Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8 (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, const RuntimeMethod*))Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063 (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, const RuntimeMethod*))Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::get_Current() inline RuntimeObject * Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_inline (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, const RuntimeMethod*))Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9 (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633 (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *, const RuntimeMethod*))Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::Dispose() inline void Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6 (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, const RuntimeMethod*))Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12 (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, const RuntimeMethod*))Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::get_Current() inline bool Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_inline (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, const RuntimeMethod*))Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063 (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m88F692B7F78A3FCE5E88BD2B2514997F17CB45A8 (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *, RuntimeObject *, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m88F692B7F78A3FCE5E88BD2B2514997F17CB45A8_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current() inline KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_inline (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose() inline void Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>::get_Value() inline int32_t KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784 (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074 (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, const RuntimeMethod*))Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::Dispose() inline void Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, const RuntimeMethod*))Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, const RuntimeMethod*))Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::get_Current() inline RuntimeObject * Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_inline (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, const RuntimeMethod*))Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030 (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84 (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475 (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *, const RuntimeMethod*))Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose() inline void Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2 (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, const RuntimeMethod*))Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322 (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, const RuntimeMethod*))Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current() inline int32_t Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_inline (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, const RuntimeMethod*))Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551 (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82 (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952 (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, int32_t, const RuntimeMethod*))Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() inline bool Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0 (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_inline (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() inline void Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279 (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408 (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3 (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, const RuntimeMethod*))Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::Dispose() inline void Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98 (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, const RuntimeMethod*))Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6 (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, const RuntimeMethod*))Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_inline (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, const RuntimeMethod*))Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519 (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91 (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *, const RuntimeMethod*))Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() inline void Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6 (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, const RuntimeMethod*))Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() inline bool Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68 (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, const RuntimeMethod*))Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_inline (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, const RuntimeMethod*))Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932 (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8 (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, int32_t, const RuntimeMethod*))Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m235C2ECB676FBEBE3C67752ED2214DB926749C44 (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, RuntimeObject * ___key0, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *, RuntimeObject *, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 , const RuntimeMethod*))KeyValuePair_2__ctor_m235C2ECB676FBEBE3C67752ED2214DB926749C44_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() inline bool Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() inline KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_inline (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() inline void Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *, const RuntimeMethod*))KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>::get_Value() inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method) { return (( ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 (*) (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *, const RuntimeMethod*))KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457 (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7 (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, const RuntimeMethod*))Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() inline void Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59 (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, const RuntimeMethod*))Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() inline bool Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, const RuntimeMethod*))Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() inline RuntimeObject * Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_inline (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, const RuntimeMethod*))Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307 (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24 (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7 (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *, const RuntimeMethod*))Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() inline void Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461 (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, const RuntimeMethod*))Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() inline bool Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, const RuntimeMethod*))Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_inline (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { return (( ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, const RuntimeMethod*))Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7 (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847 (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m627A613C1DE1B3DC393153C092E58CF88F9BBC54 (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, RuntimeObject * ___key0, ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *, RuntimeObject *, ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A , const RuntimeMethod*))KeyValuePair_2__ctor_m627A613C1DE1B3DC393153C092E58CF88F9BBC54_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() inline bool Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() inline KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_inline (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() inline void Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Value() inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method) { return (( ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A (*) (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348 (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8 (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *, const RuntimeMethod*))Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() inline void Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295 (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, const RuntimeMethod*))Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() inline bool Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889 (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, const RuntimeMethod*))Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() inline RuntimeObject * Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_inline (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, const RuntimeMethod*))Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813 (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956 (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *, const RuntimeMethod*))Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() inline void Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, const RuntimeMethod*))Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() inline bool Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7 (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, const RuntimeMethod*))Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() inline ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_inline (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { return (( ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, const RuntimeMethod*))Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1 (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3 (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *, int32_t, const RuntimeMethod*))Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m5C21180640F7DD2BE827925D9A18894E5A38D96B (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, RuntimeObject * ___key0, uint32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *, RuntimeObject *, uint32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m5C21180640F7DD2BE827925D9A18894E5A38D96B_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::MoveNext() inline bool Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::get_Current() inline KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_inline (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::Dispose() inline void Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7 (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.UInt32>::get_Value() inline uint32_t KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6 (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30 (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74 (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7 (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *, const RuntimeMethod*))Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::Dispose() inline void Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, const RuntimeMethod*))Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::MoveNext() inline bool Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, const RuntimeMethod*))Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::get_Current() inline RuntimeObject * Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_inline (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, const RuntimeMethod*))Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7 (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32 (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *, const RuntimeMethod*))Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::Dispose() inline void Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, const RuntimeMethod*))Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::MoveNext() inline bool Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4 (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, const RuntimeMethod*))Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::get_Current() inline uint32_t Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_inline (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, const RuntimeMethod*))Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *, int32_t, const RuntimeMethod*))Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m2AFEF5F0895AE2696C7AE320C252E2E86A007120 (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, RuntimeObject * ___key0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *, RuntimeObject *, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , const RuntimeMethod*))KeyValuePair_2__ctor_m2AFEF5F0895AE2696C7AE320C252E2E86A007120_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() inline bool Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() inline KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_inline (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() inline void Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,UnityEngine.Vector3>::get_Value() inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method) { return (( Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E (*) (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905 (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *, const RuntimeMethod*))Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() inline void Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168 (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, const RuntimeMethod*))Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() inline bool Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, const RuntimeMethod*))Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() inline RuntimeObject * Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_inline (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, const RuntimeMethod*))Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1 (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858 (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016 (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *, const RuntimeMethod*))Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() inline void Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, const RuntimeMethod*))Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() inline bool Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, const RuntimeMethod*))Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_inline (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { return (( Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, const RuntimeMethod*))Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560 (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80 (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6 (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mD5BC97814CCB81E39128F4234C528B058EF662BD (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, RuntimeObject * ___key0, EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *, RuntimeObject *, EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 , const RuntimeMethod*))KeyValuePair_2__ctor_mD5BC97814CCB81E39128F4234C528B058EF662BD_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() inline bool Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() inline KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_inline (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() inline void Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Key() inline RuntimeObject * KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *, const RuntimeMethod*))KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Value() inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method) { return (( EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 (*) (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *, const RuntimeMethod*))KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5 (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743 (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6 (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *, const RuntimeMethod*))Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() inline void Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1 (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, const RuntimeMethod*))Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() inline bool Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, const RuntimeMethod*))Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() inline RuntimeObject * Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_inline (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, const RuntimeMethod*))Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684 (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2 (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *, const RuntimeMethod*))Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() inline void Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579 (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, const RuntimeMethod*))Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() inline bool Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, const RuntimeMethod*))Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() inline EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_inline (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { return (( EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, const RuntimeMethod*))Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483 (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *, int32_t, const RuntimeMethod*))Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m40934BD848E891E1117DEA852B5B2BF11ECDDB91 (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, uint32_t ___key0, bool ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *, uint32_t, bool, const RuntimeMethod*))KeyValuePair_2__ctor_m40934BD848E891E1117DEA852B5B2BF11ECDDB91_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105 (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::get_Current() inline KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_inline (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::Dispose() inline void Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5 (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::get_Key() inline uint32_t KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Boolean>::get_Value() inline bool KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method) { return (( bool (*) (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6 (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795 (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986 (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9 (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *, const RuntimeMethod*))Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() inline void Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6 (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, const RuntimeMethod*))Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59 (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, const RuntimeMethod*))Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() inline uint32_t Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_inline (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, const RuntimeMethod*))Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1 (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0 (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6 (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *, const RuntimeMethod*))Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() inline void Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, const RuntimeMethod*))Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() inline bool Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84 (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, const RuntimeMethod*))Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() inline bool Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_inline (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, const RuntimeMethod*))Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35 (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852 (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_mD6FF304CCBF59175C212FA30D5C7E0C6A0E758B9 (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, uint32_t ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *, uint32_t, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_mD6FF304CCBF59175C212FA30D5C7E0C6A0E758B9_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::get_Current() inline KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_inline (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::Dispose() inline void Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3 (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::get_Key() inline uint32_t KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>::get_Value() inline int32_t KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749 (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *, const RuntimeMethod*))Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::Dispose() inline void Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, const RuntimeMethod*))Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71 (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, const RuntimeMethod*))Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::get_Current() inline uint32_t Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_inline (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { return (( uint32_t (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, const RuntimeMethod*))Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7 (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770 (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *, const RuntimeMethod*))Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::Dispose() inline void Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, const RuntimeMethod*))Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62 (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, const RuntimeMethod*))Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::get_Current() inline int32_t Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_inline (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, const RuntimeMethod*))Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985 (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) inline void Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75 (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { (( void (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *, int32_t, const RuntimeMethod*))Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75_gshared)(__this, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Void System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m76DA9A6BA5B7BD564ECE8478952E9BD7565E3D5E (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, uint32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *, uint32_t, RuntimeObject *, const RuntimeMethod*))KeyValuePair_2__ctor_m76DA9A6BA5B7BD564ECE8478952E9BD7565E3D5E_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620 (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::get_Current() inline KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_inline (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::Dispose() inline void Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B_gshared)(__this, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Key() inline uint32_t KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method) { return (( uint32_t (*) (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *, const RuntimeMethod*))KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>::get_Value() inline RuntimeObject * KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *, const RuntimeMethod*))KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_gshared)(__this, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() inline DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_gshared)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() inline RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6 (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *, const RuntimeMethod*))Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7 (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *, const RuntimeMethod*))Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::Dispose() inline void Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5 (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, const RuntimeMethod*))Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, const RuntimeMethod*))Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_gshared)(__this, method); } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::get_Current() inline uint32_t Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_inline (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { return (( uint32_t (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, const RuntimeMethod*))Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84 (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4 (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) inline void Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4 (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { (( void (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *, const RuntimeMethod*))Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4_gshared)(__this, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::Dispose() inline void Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690 (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, const RuntimeMethod*))Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::MoveNext() inline bool Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803 (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, const RuntimeMethod*))Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::get_Current() inline RuntimeObject * Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_inline (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, const RuntimeMethod*))Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_gshared_inline)(__this, method); } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() inline void Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_gshared)(__this, method); } #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); Enumerator__ctor_m418E4B722EF17435AC98831C65DFF8DD8EF95412(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); Enumerator_Dispose_m3CBE67D556826D526CB2F2F38E0AD7D9C156F6BF(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_4 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_5 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_8 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_9 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_15 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_17 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m3DD3AAB37414BA6B1BFFC0847CD20202669C5373(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_2 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC10974414AB6444DA82FC2C33F7E0314F8809958(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_gshared (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * _thisAdjusted = reinterpret_cast<Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m5ED8F6114E0BC5462120533C61D94886FB0F714B(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); bool* L_3 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); Enumerator__ctor_mE286CB7723F9376AE32B2A720F0EBEBB53837B52(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); Enumerator_Dispose_mD4C4C9820DDECC2ED4F9ED678CB28018D22773F4(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_4 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_5 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_8 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5* L_9 = (EntryU5BU5D_t7732497AB9D637A1BADCC6C2B28E6F66569559D5*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); bool L_11 = (bool)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_15 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_17 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); bool* L_19 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(bool)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m68945CFBB7D71C6E8C897DB03CFA2E95E699C692(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_2 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_RuntimeMethod_var))); } IL_0028: { bool L_5 = (bool)__this->get_currentValue_3(); bool L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m5BAF8E4086AE08105F4A6318E006E9A09DD1C3CF(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_gshared (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 * L_1 = (Dictionary_2_t446D8FCE66ED404E00855B46A520AB382A69EFF1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); bool* L_4 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * _thisAdjusted = reinterpret_cast<Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mBD76B4179C4102C6BC4EC54AC701FCA88F146EEB(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_4 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); Enumerator__ctor_m2FD3D34737E0A2D8E9C5F6A7250F9C07746E9E04(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_RuntimeMethod_var))); } IL_0021: { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_4 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_5 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_8 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_9 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_12 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_13 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); Il2CppChar L_15 = (Il2CppChar)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mF864B52139911725CC0C755551A59D18C33A56A0((&L_16), (int32_t)L_11, (Il2CppChar)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_20 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_22 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_24 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m3C84CB045A76E06254E5FC30903CECE15F8D644B(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_0 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )__this->get_current_3(); return (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 _returnValue; _returnValue = Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); Enumerator_Dispose_mBD2470FA28FF2A6F9B4E9CCEF1CBAF5B5ED77A44(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_6 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_10 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); Il2CppChar L_11; L_11 = KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Il2CppChar L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_17 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_19 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); Il2CppChar L_20; L_20 = KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_mF864B52139911725CC0C755551A59D18C33A56A0((&L_21), (int32_t)L_18, (Il2CppChar)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_22 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mB6B5FC459CFCBAABA4CA87AACB06B72363D39CC0(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_4 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mCBE2D4C335FE3A6B5A2E2C1F2A0C28BA07E07E8B(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_5 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_9 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); Il2CppChar L_10; L_10 = KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Il2CppChar L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB4D1167521ACC6149EB6C19E0A274ED499E2F362(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_5 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m0DDA41417D9619FBF48526F5B54C4A98A7631EAD(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Char>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_gshared (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * L_5 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)__this->get_address_of_current_3(); Il2CppChar L_6; L_6 = KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_inline((KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)(KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Il2CppChar L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * _thisAdjusted = reinterpret_cast<Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAE11B5260B8E5A0CB9E529A8E5ABD5932DF6527C(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); Enumerator__ctor_m69DD5524C09D51E4A047222D51E6C8661BF3E87F(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); Enumerator_Dispose_mCFEA57BF2F9A4627E1EC20F4981A0A7A16DB4E1F(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_4 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_5 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_8 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_9 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_15 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_17 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m374AE4574583D5672A3447A00E8EB4A2B1EFA24B(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mD5CD5CA5AF2F3D8423081D644B73D3594F7D4024(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_gshared (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * _thisAdjusted = reinterpret_cast<Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m6CB0F7DBD4C27B6EC0BF0F14467A63CFB5654F5F(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); Il2CppChar* L_3 = (Il2CppChar*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(Il2CppChar)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); Enumerator__ctor_m688BDB3301350B13FECBEB226015A335BFE70E33(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); Enumerator_Dispose_m5E702C25830DFA51DD6451D01A94C20316AE4E30(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_4 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_5 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_8 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20* L_9 = (EntryU5BU5D_tB85F10076BA2A751C87B4BDE98DF0468F760AD20*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); Il2CppChar L_11 = (Il2CppChar)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_15 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_17 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); Il2CppChar* L_19 = (Il2CppChar*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(Il2CppChar)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m5A320422081B4E623714143C7C4D691C473FCA74(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { Il2CppChar L_0 = (Il2CppChar)__this->get_currentValue_3(); return (Il2CppChar)L_0; } } IL2CPP_EXTERN_C Il2CppChar Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); Il2CppChar _returnValue; _returnValue = Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_2 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_RuntimeMethod_var))); } IL_0028: { Il2CppChar L_5 = (Il2CppChar)__this->get_currentValue_3(); Il2CppChar L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mBCFD651341D0DD9E0F059BEFCFE88C64707366DA(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Char>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_gshared (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 * L_1 = (Dictionary_2_tB8FA8FEFBC38630BF40B59A6B474816F30D29B23 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); Il2CppChar* L_4 = (Il2CppChar*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(Il2CppChar)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * _thisAdjusted = reinterpret_cast<Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m9DC1E90F8390C693CDBD5F165705B9A4C3BF6A42(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_4 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); Enumerator__ctor_mEC3B3949AF720BD8CC15C3079DF9A4B090FFAB6C(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_4 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_5 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_8 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_9 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_12 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_13 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mAC437FAF19B6F21DD90D59C629BA8F7967971E56((&L_16), (int32_t)L_11, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_20 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_22 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_24 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mD75F6C020DBA9AEC41D9AD2400B1B59CF4FB865A(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_0 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )__this->get_current_3(); return (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB _returnValue; _returnValue = Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); Enumerator_Dispose_mAB3849C30A786AA06BE075D2FE85FA65FB38D975(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_6 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_10 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_11; L_11 = KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_17 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_19 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_20; L_20 = KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_mAC437FAF19B6F21DD90D59C629BA8F7967971E56((&L_21), (int32_t)L_18, (int32_t)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_22 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m52A3B6230D7EFFF469131174F640D14FFDF9BEC6(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_4 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m27008AE0FADB62C0275DAF826E07065C2F3A83CB(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_5 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_9 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_10; L_10 = KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m78F34A36A8D8C7EF2BFA4B5B0A9617B36D8EA286(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_5 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m2A87CEEA79CFF5B14F4518D5509E1548E9C9DACF(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_gshared (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * L_5 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_inline((KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)(KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * _thisAdjusted = reinterpret_cast<Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB062CD9F2986024BF7E5D3D502B11F7A62FBE46B(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); Enumerator__ctor_m4841A4B7B7E4B083A85500F7C0FBAF8EF8F941F5(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); Enumerator_Dispose_mEB5AE551B088A6A914F7DBAEB800F47879CCE7F0(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_4 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_5 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_8 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_9 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_15 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_17 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m803B2AF3730A28E4E3E36DF040EE4EED4C272270(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mA52127A6CCC380A1BF2267E4BE87C3D4DC7CEC8F(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_gshared (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * _thisAdjusted = reinterpret_cast<Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mE3304562E34C7D2DB1784572262891E573913A12(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); Enumerator__ctor_m9175EF416D2D8DBE705B9399735A2B976D46C156(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); Enumerator_Dispose_m5E5073669F122A1858EB8A4786A77B4A38769A96(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_4 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_5 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_8 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1* L_9 = (EntryU5BU5D_tB55287EA11F7C665F930EF3A359F186CD3AE5EC1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_15 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_17 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mA41921E99CAF134280A02265C14A4A191B1045FB(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_2 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentValue_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m438EB5195F396931F06F8CCD7EFB3E6FBD31D84B(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_gshared (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 * L_1 = (Dictionary_2_t49CB072CAA9184D326107FA696BB354C43EB5E08 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * _thisAdjusted = reinterpret_cast<Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m7E548316E0AD768E1D18A0947CECB9549100EB94(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_4 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); Enumerator__ctor_m9FE014451C46A060A33CA7FEAD59053774D97A0A(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_4 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_5 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_8 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_9 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_12 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_13 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); int64_t L_15 = (int64_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m21E26AC2126D29C234A767F4E8DE291245F4BB0F((&L_16), (int32_t)L_11, (int64_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_20 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_22 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_24 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m636FD69973C2065059D4855BF93E3EEF5AE630F4(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_0 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )__this->get_current_3(); return (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 _returnValue; _returnValue = Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); Enumerator_Dispose_mD004C32DED36A622752979C52F3FFE3EE8339297(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_6 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_10 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int64_t L_11; L_11 = KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int64_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_17 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_19 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int64_t L_20; L_20 = KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_m21E26AC2126D29C234A767F4E8DE291245F4BB0F((&L_21), (int32_t)L_18, (int64_t)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_22 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6F3619DD6AF2E2724C97324CFD1773A4DE7815EF(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_4 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mBC8D38453961C86B21D52FFA6B105ACF1C9A2919(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_5 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_9 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int64_t L_10; L_10 = KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int64_t L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m790DF0037856FBA3CD009DB986FB98E40175FFAD(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_5 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6C7F3BEA9CD879B52BB6AC00E94451A1C6740D72(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Int64>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_gshared (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * L_5 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)__this->get_address_of_current_3(); int64_t L_6; L_6 = KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_inline((KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)(KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int64_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * _thisAdjusted = reinterpret_cast<Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mF2C2FC374708A90A67226005057BE6E31EE8E01D(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); Enumerator__ctor_m5F5F7F9156A9DFA10EBBB11543819C8B9CFB79F4(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); Enumerator_Dispose_mFF4680747D85F4C70F5C1845C65AC93B7130A3F1(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_4 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_5 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_8 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_9 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_15 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_17 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mE8561C4752E33E1D58CA3AC210D9B55793C3BD95(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m23926497E68957E3CF415EC16267F34925737F6C(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_gshared (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * _thisAdjusted = reinterpret_cast<Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m6A18EB84BF6A26717789AB7E76CB96DCC1724603(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int64_t* L_3 = (int64_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(int64_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); Enumerator__ctor_m615E2DC318A84EF68EC120CF3EC1BD562E7A79B1(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); Enumerator_Dispose_mCA3918ADE453A2263AA57D56CD33A680F59A6E04(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_4 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_5 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_8 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44* L_9 = (EntryU5BU5D_tB210152E9D3EBE4609E3432D20C529E7C1B65D44*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int64_t L_11 = (int64_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_15 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_17 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int64_t* L_19 = (int64_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(int64_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m92A76A3DFFDAA6A7830C8DE6C20F990CEDCA2D83(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_currentValue_3(); return (int64_t)L_0; } } IL2CPP_EXTERN_C int64_t Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); int64_t _returnValue; _returnValue = Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_2 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_RuntimeMethod_var))); } IL_0028: { int64_t L_5 = (int64_t)__this->get_currentValue_3(); int64_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m9E472994687B101566BDB84C10170AFF1F9CD715(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Int64>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_gshared (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 * L_1 = (Dictionary_2_t9AE0BA863BA88FABCBFC4CA835E0A6E00D948984 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int64_t* L_4 = (int64_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(int64_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * _thisAdjusted = reinterpret_cast<Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m79CC3D4E46945F0C0F79E8DFDCEE058AEEE4E6F7(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_4 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); Enumerator__ctor_m80D4708C5206E1F59BD44889792BAA9775679E96(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_RuntimeMethod_var))); } IL_0021: { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_4 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_5 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_8 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_9 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_12 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_13 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m38685BA70A8C37D1ABABB4A73A97A7F5ED0AC270((&L_16), (int32_t)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_20 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_22 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_24 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mEEAA9A380252BB2F9B2403853F4C00F2F643ADC4(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_0 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )__this->get_current_3(); return (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 _returnValue; _returnValue = Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); Enumerator_Dispose_m7567E65C01E35A09AD2AD4814D708A8E76469D31(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_6 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_10 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); RuntimeObject * L_11; L_11 = KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_15 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); int32_t L_16; L_16 = KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_17 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); RuntimeObject * L_18; L_18 = KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m38685BA70A8C37D1ABABB4A73A97A7F5ED0AC270((&L_19), (int32_t)L_16, (RuntimeObject *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_20 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mE31127DED41390ACECB2F7D11BFCD0508836D483(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_4 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mDC4CA770EF0C362C43E509306DCD5A153CAF677A(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_5 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_9 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); RuntimeObject * L_10; L_10 = KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mCA6962A611849247C8B37214CF32C7370E87F3B3(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_5 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC2E49BCD5B565E3C55CBEFEF9E80FBC6EBAF48BD(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_gshared (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * L_5 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_inline((KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)(KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * _thisAdjusted = reinterpret_cast<Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m0B59FBF64286678F16053F28D15E2D42100DAE38(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); Enumerator__ctor_mEA96571420EE81B516D0C72BA0DA6AB6DF9C3D21(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); Enumerator_Dispose_m18560771770B27164D929430D52691A8B91EED40(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_4 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_5 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_8 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_9 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_15 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_17 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mA2ED7DB9BD5A1F9A31392132DDE9FB0C0B46FC33(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m96D7DCA6540A7BA8D6F6FF5B25915AB946836D95(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_gshared (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * _thisAdjusted = reinterpret_cast<Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mEEC909B4A6CD638929C48E7D489A3952181EA32E(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); Enumerator__ctor_m0023AA61CB0CE57C4673F8E69FB53FDA6CFD901A(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); Enumerator_Dispose_m2FEEBA0F2315272E479E7EB8288DC2012D9A334A(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_4 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_5 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_8 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E* L_9 = (EntryU5BU5D_t5373F057B0634C286A365E78C66FE57DBBDAB86E*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_15 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_17 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m78AD7EE99253D01FE03BC9917F994D4E2014DAA4(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_2 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6C74908B69B3F887D96065A67581EA99F83F7C16(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_gshared (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F * L_1 = (Dictionary_2_tE1E5B6327FFA2C7AE34A69E0011815C914771C2F *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * _thisAdjusted = reinterpret_cast<Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m713158B72A8092916C6C32994D23EB6FEC86115F(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_4 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); Enumerator__ctor_m8B58C7773336DC21353FB93BE3CFDA4C0027028A(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_RuntimeMethod_var))); } IL_0021: { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_4 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_5 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_8 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_9 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_12 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_13 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_15 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mFA57F2CB360A42046974B412857909EEE8B625DB((&L_16), (int32_t)L_11, (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_20 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_22 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_24 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mE6313B811963B14BC6230C5AE4D6968C1D3A30D1(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB L_0 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )__this->get_current_3(); return (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB _returnValue; _returnValue = Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); Enumerator_Dispose_mC6A092726516A2B7AE930BBBD844848E0E66CE2A(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_6 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = (int32_t)L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_10 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_11; L_11 = KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_12 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_17 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_19 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_20; L_20 = KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_mFA57F2CB360A42046974B412857909EEE8B625DB((&L_21), (int32_t)L_18, (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB L_22 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mBBCFBFCDA48F98FF2D3B195D43FC94D08F9D054B(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_4 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC8C054C68A66A84C5C0280AFB7B8332F2EE9FA39(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_5 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_9 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_10; L_10 = KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_11 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6926549668010D8AABCDEDFBF8CB9A67E4A89374(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_5 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mBDA2E97EBE60C9EAC64C6BA460E04F991583A71E(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_gshared (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * L_5 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)__this->get_address_of_current_3(); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_6; L_6 = KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_inline((KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)(KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_7 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * _thisAdjusted = reinterpret_cast<Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA22057D69A691730E41C39C6D2ABE25CDCA1F6C1(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); Enumerator__ctor_mE39EBFDEE868F70F8196423EAFCBA2FA5D6B9D49(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); Enumerator_Dispose_m2C92CB530FD6D5D84AD1F5517EB99E537C6ECDDE(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_4 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_5 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_8 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_9 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_15 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_17 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mDD5DF4CC4CC089499F90CB867629EF3E4F9CC754(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = (int32_t)L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m63E7612783C0E98C72B7FC4718E800E4C3418FE2(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_gshared (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * _thisAdjusted = reinterpret_cast<Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC2D5961423459DA0385DB3C534CE95D16A9C977B(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * L_3 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); Enumerator__ctor_mE4EED62040364BFD2DAD47F046963959176F1E74(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); Enumerator_Dispose_m88EB9881511E6D3B08B633DF2F0DB7870027B764(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_4 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_5 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_8 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6* L_9 = (EntryU5BU5D_tF5355AB67C9B97B4B0BBCCD91188E3383BF82CD6*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_11 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_15 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_17 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * L_19 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m390052C2104A71A979639C42E9FC638FFDF5CB8E(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_0 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )__this->get_currentValue_3(); return (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_0; } } IL2CPP_EXTERN_C MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 _returnValue; _returnValue = Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_2 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_RuntimeMethod_var))); } IL_0028: { MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_5 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )__this->get_currentValue_3(); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_6 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC8E513A6FAFDC78D23655DF6721705CBAFB3505F(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Utilities.MixedRealityPose>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_gshared (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 * L_1 = (Dictionary_2_tAFEDE3C9AA32099A79643638296C906CB91D1ED1 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 * L_4 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * _thisAdjusted = reinterpret_cast<Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m66596D252316187A0ADB512BE861EEFEED56B26E(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_4 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); Enumerator__ctor_m56F92EB7D5487D2DC35606DE760ADBD255A98AAD(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_4 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_5 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_8 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_9 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_12 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_13 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m723E5869627BAE32A27DFCAA1D70A915718E7CA6((&L_16), (int32_t)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_20 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_22 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_24 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m80F3FF01D8D7F1984ECCCB4530C537211153F4C8(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_0 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )__this->get_current_3(); return (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 _returnValue; _returnValue = Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); Enumerator_Dispose_m8C287968D89FB1FF998FF96D1B2EF8C30B556B6F(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_6 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = (int32_t)L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_10 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); RuntimeObject * L_11; L_11 = KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_15 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); int32_t L_16; L_16 = KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_17 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); RuntimeObject * L_18; L_18 = KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m723E5869627BAE32A27DFCAA1D70A915718E7CA6((&L_19), (int32_t)L_16, (RuntimeObject *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_20 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m5BCF5E6BDB861A086803502F5D58530E2DB4D8CA(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_4 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m755D0F91E9764F485A3DBCB655E73EB3A82C7A6D(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_5 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_9 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); RuntimeObject * L_10; L_10 = KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6C94F49529E71D2A3C681FE5C2C10922821D8FDA(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_5 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4893B68861A9A1406F650F163F5040C33154BBE3(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_gshared (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * L_5 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_inline((KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)(KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * _thisAdjusted = reinterpret_cast<Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m62312FFD339EAF57616F8E06BD94151D26ADFC75(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); Enumerator__ctor_m873380F9F3B3E43EF01BCBB4AA052BFDFE12C73E(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); Enumerator_Dispose_m79E16F0209BDDD92F208DE1F039B0935D57135C1(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_4 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_5 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_8 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_9 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_15 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_17 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m48A8D06ED3FFA43F3D74538925FAD29EC1CB01C3(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = (int32_t)L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m2DD4DA7722B76C1AE0315FC3B151178FA2389A5E(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_gshared (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * _thisAdjusted = reinterpret_cast<Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m93A8324306262A8C3FEC3BC9C845489369EB847B(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); Enumerator__ctor_mD15ACB38C0BEE4F2E70827BC9264490BCBAA0A5D(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); Enumerator_Dispose_mD80EB4F34363556C0DB46455E0B72B89018A4F3C(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_4 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_5 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_8 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A* L_9 = (EntryU5BU5D_tF1930D9C70541EDABA95C6FA0CBA71DC49A99D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_15 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_17 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m591CCA2E5BC073733DB11EDEBC6523FF1188D830(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_2 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mCD53289BA91C96B4B27DF8D40B6E4273690E63D3(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_gshared (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 * L_1 = (Dictionary_2_t7E8D40B461AB586AEA5DD75D8354C4913EEB1337 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * _thisAdjusted = reinterpret_cast<Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m05F6BA06AD95BB99EFB6DB2D5CECA6C5962BD444(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_4 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); Enumerator__ctor_mC966434A2820A8C4535B79B3C7B502FC0459E5F2(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_4 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_5 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_8 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_9 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_12 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_13 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); float L_15 = (float)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m758E73CC5CA8EE6E4A5D763AE69F06BC5C446F0B((&L_16), (int32_t)L_11, (float)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_20 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_22 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_24 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m78129539AB94BFD3B525DC35270CFB09F90A5448(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA L_0 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )__this->get_current_3(); return (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA _returnValue; _returnValue = Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); Enumerator_Dispose_mD405528E5C0434179494D57FD4CB759220826616(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_6 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = (int32_t)L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_10 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); float L_11; L_11 = KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); float L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_17 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_19 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); float L_20; L_20 = KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_m758E73CC5CA8EE6E4A5D763AE69F06BC5C446F0B((&L_21), (int32_t)L_18, (float)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA L_22 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6A93CC215F0748D5F93249599F2ACAFCDE2B1445(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_4 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m9E2D6B6B55058C46C08DFA3E5EF2228DBB63FC59(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_5 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_9 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); float L_10; L_10 = KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); float L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m1BDC5FD082AE40E062B6C04BFA964DF9453C7522(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_5 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mC3A5D5923B5F18CC42A0599BE85A6447B678BD6B(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,System.Single>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_gshared (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * L_5 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)__this->get_address_of_current_3(); float L_6; L_6 = KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_inline((KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)(KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); float L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * _thisAdjusted = reinterpret_cast<Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mB3B84F046B0AC15EAA952450EC9160AB0262AD53(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); Enumerator__ctor_m78C42CCD21D04A1ADF81150E2BEFEF2D90BF065B(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); Enumerator_Dispose_m0673722C98AC4385EC6FAA1278C605783BF6F7B4(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_4 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_5 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_8 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_9 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_15 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_17 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m6F3D692B9F40AAB8D62FA87783BDC05D43D650EC(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = (int32_t)L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mAFDE957E80AEC71FF2D5284FE4377704ECCF4EC4(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_gshared (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * _thisAdjusted = reinterpret_cast<Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mD54A7B79F15BCDD8D17E87C2C28EA5E90B54F808(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); float* L_3 = (float*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(float)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); Enumerator__ctor_mFDA84507929E054DA81AE021C06D27964EDCAFA9(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); Enumerator_Dispose_mE6025F8A1400DE021F992DB139557FCC6CAE3118(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_4 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_5 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_8 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1* L_9 = (EntryU5BU5D_t7DA2F2CFC91EAE174A65BB90BA5021E16EEF39D1*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); float L_11 = (float)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_15 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_17 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); float* L_19 = (float*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(float)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m2637D34784BAB6F63F56998E835933E45FC8CBF7(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { float L_0 = (float)__this->get_currentValue_3(); return (float)L_0; } } IL2CPP_EXTERN_C float Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); float _returnValue; _returnValue = Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_2 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_RuntimeMethod_var))); } IL_0028: { float L_5 = (float)__this->get_currentValue_3(); float L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m681D7AF1D9B0D3681D2A4F27669B4CD1E593176A(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,System.Single>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_gshared (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E * L_1 = (Dictionary_2_t8D5BC3EE868F5A69127B67EF92B01E5681B0732E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); float* L_4 = (float*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(float)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * _thisAdjusted = reinterpret_cast<Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mEE109B9BF8C5D26A8A6221DA8E29B7B7C8BC5B42(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_4 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); Enumerator__ctor_mB1E926F845E3EEA68C6205398B470ED5FE95578D(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_4 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_5 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_8 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_9 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_12 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_13 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_15 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m5B4622619C59AD30AE58B4752E9512722BB0CCFA((&L_16), (int32_t)L_11, (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_20 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_22 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_24 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mDD33731CE6476AA3AADF143E4FD0240E45EFCAB7(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 L_0 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )__this->get_current_3(); return (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 _returnValue; _returnValue = Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); Enumerator_Dispose_m9DD01D7E246901ACA3215D3CF876A4F1F377CCF9(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_6 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); int32_t L_7; L_7 = KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = (int32_t)L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_10 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_11; L_11 = KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_12 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_17 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_19 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_20; L_20 = KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_m5B4622619C59AD30AE58B4752E9512722BB0CCFA((&L_21), (int32_t)L_18, (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 L_22 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mE772C38BC2EC3B813276E5D824D483F2074515BF(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_4 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m59FE40D18E86CD4F4AC878A23859C443358E2530(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_5 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_9 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_10; L_10 = KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_11 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m62423C49655DEA5701B818739538EDBA4907D9B4(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_5 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_7 = (int32_t)L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB2B3B74DEB58CEED0060D948448B07AB2A1FADD9(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_gshared (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * L_5 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)__this->get_address_of_current_3(); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_6; L_6 = KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_inline((KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)(KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_7 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * _thisAdjusted = reinterpret_cast<Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mDFF04EEA6044DBB9455C58F384D354F9C66AEEB3(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); Enumerator__ctor_m4C1F88F6CD6E517DD43233AE7B3C46E24C92B3D4(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); Enumerator_Dispose_m67751724C1316521F0FDE76AFC4908E3AA58C5EF(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_4 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_5 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_8 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_9 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_15 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_17 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mAE32C82F48C917D0780CA090C1E791FBC94C61CC(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentKey_3(); int32_t L_6 = (int32_t)L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m49A6B993927B977C8FA85BF555A8E4A6B05312C0(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_gshared (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * _thisAdjusted = reinterpret_cast<Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m11925351BE0795D24B88F2A7FD97D7B9EB191FDA(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * L_3 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); Enumerator__ctor_m1682E371F961F4B62257CA1CE50DAA8C88430D91(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); Enumerator_Dispose_m71A8DAC8811BD8BF3DB16964E694BA411BDA7082(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_4 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_5 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_8 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB* L_9 = (EntryU5BU5D_t2B2D2220F3FFACF9078FB5A8D19CCC2E3A3FBDBB*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_11 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_15 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_17 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * L_19 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m82776AF4CA37443F06D9995E968AA74A87AD8A8F(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_0 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )__this->get_currentValue_3(); return (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_0; } } IL2CPP_EXTERN_C AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 _returnValue; _returnValue = Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_2 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_RuntimeMethod_var))); } IL_0028: { AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_5 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )__this->get_currentValue_3(); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_6 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m76A9852C15D5012FA432AF81E3BE460BF63F305A(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32Enum,Microsoft.MixedReality.Toolkit.Audio.AudioLoFiEffect/AudioLoFiFilterSettings>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_gshared (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 * L_1 = (Dictionary_2_t59AB743D5DDEEDBEDE736742E5FF733A3F059BF3 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 * L_4 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * _thisAdjusted = reinterpret_cast<Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mBB104AB8144E9CB3F3F976DD4B256F67EF59B9D0(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_4 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); Enumerator__ctor_m069D16ABB093DB4DAFA67ED6031BDC13ABF13ABC(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_4 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_5 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_8 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_9 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); int64_t L_11 = (int64_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_12 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_13 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m5B93107CD78CFF39793DCC1FB37344B266FAD40E((&L_16), (int64_t)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_20 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_22 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_24 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m31BADE5F38320B5C842F509843F85760E1F96D25(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_0 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )__this->get_current_3(); return (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 _returnValue; _returnValue = Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); Enumerator_Dispose_mA09F57BFBA010D5CE0777F1E51F7D29ADCB525E1(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_6 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); int64_t L_7; L_7 = KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int64_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_10 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); RuntimeObject * L_11; L_11 = KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_15 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); int64_t L_16; L_16 = KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_17 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); RuntimeObject * L_18; L_18 = KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m5B93107CD78CFF39793DCC1FB37344B266FAD40E((&L_19), (int64_t)L_16, (RuntimeObject *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_20 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m8179857B7A1E68EA957233137E844CA4AFC1B3BF(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_4 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m95AFDCF4D8E6F813E03D3BFFF5F0D1F7BFB0742A(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_5 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); int64_t L_6; L_6 = KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int64_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_9 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); RuntimeObject * L_10; L_10 = KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mB65D1065175B5F82C094B21DF97FFD8714A04E3C(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_5 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); int64_t L_6; L_6 = KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int64_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mB87833CDF9A5A409CD9CECFF9171B09CB2DB6A6C(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Int64,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_gshared (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * L_5 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_inline((KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)(KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * _thisAdjusted = reinterpret_cast<Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m983F007BC93451CF674DA9A7999FE078A70CA8E7(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int64_t* L_3 = (int64_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(int64_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); Enumerator__ctor_m3DD4FD0B5C4CC982E8C25EFC8F9AEB74C430E5BB(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); Enumerator_Dispose_mE45B6E60FCAAB3BDB36DD849D6DBACA4D97F751D(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_4 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_5 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_8 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_9 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int64_t L_11 = (int64_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_15 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_17 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int64_t* L_19 = (int64_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(int64_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m19CE97C06341764BCE16E812AD163C42267E00B8(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_currentKey_3(); return (int64_t)L_0; } } IL2CPP_EXTERN_C int64_t Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); int64_t _returnValue; _returnValue = Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_RuntimeMethod_var))); } IL_0028: { int64_t L_5 = (int64_t)__this->get_currentKey_3(); int64_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mEA72357712BEDAC08223106F58143D40BA2E98A1(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_gshared (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int64_t* L_4 = (int64_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(int64_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * _thisAdjusted = reinterpret_cast<Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m492E8E7AEE24A270FF6B04940BEC3B59C9E790E0(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); Enumerator__ctor_mBFE66B9C413A3C3AF059E708AE48FE1FA757D90E(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); Enumerator_Dispose_m0033C49781433E4A06F66E631BF1F7378D1BFF7B(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_4 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_5 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_8 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45* L_9 = (EntryU5BU5D_t09DFC45FB52797A74E5223B0C57834458C443E45*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_15 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_17 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m80E734EE5F4BDB5BDEB07709FB0633FE5C275FEC(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_2 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m56DE961685793B379A7F8B55FF46BF9EC1462E2C(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int64,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_gshared (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 * L_1 = (Dictionary_2_t240BB5F785CC3B2A17B14447F3C0E0BB6AAB8E26 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * _thisAdjusted = reinterpret_cast<Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mFECAA3A465D12B667519D32139EE1B2EC2CFA516(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_4 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); Enumerator__ctor_m2E8653A4AE47CB8320FBCFDB0831F9D87AC2BB88(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_4 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_5 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_8 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_9 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_12 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_13 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); bool L_15 = (bool)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mAAE1742C0DCAAF1A9590BD39EE111DBF2AA545A6((&L_16), (RuntimeObject *)L_11, (bool)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_20 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_22 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_24 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mA7E6268589E54CC062050593BBB47F1073271207(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_0 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )__this->get_current_3(); return (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A _returnValue; _returnValue = Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); Enumerator_Dispose_m9286BC4CBE66DC783C782EC14D286D08DF8C9D60(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_6 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_8 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); bool L_9; L_9 = KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_15 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_17 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); bool L_18; L_18 = KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_mAAE1742C0DCAAF1A9590BD39EE111DBF2AA545A6((&L_19), (RuntimeObject *)L_16, (bool)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_20 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m4D899F0978C53CC4CB8470ABD46D373B3149422B(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_4 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mBE8B6A91DF1F86DB1DD0982E67A13C656ACA0BAA(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_5 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_7 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); bool L_8; L_8 = KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m11FF78FB19334FEEFED57CED48CA2C02B4001241(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_5 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m84F5123E94AC5830BCC01D62BE87AFAE601D5109(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_gshared (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * L_5 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)__this->get_address_of_current_3(); bool L_6; L_6 = KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_inline((KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * _thisAdjusted = reinterpret_cast<Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mAC08FA0ED664100994EC4973800BF144479C1D23(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); Enumerator__ctor_m2927973D232387F7744A92DB3FB50392ED608629(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); Enumerator_Dispose_mEEDC8B11EF1B23495FBB2C722A0697C9682C6CE8(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_4 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_5 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_8 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_9 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_15 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_17 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m96ADFEAB8791D4C22779AE125B3B19AF72E86063(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m8723A9E4D88714592AF62696784D5B5EBDDA72E9(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_gshared (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * _thisAdjusted = reinterpret_cast<Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mEBBF9CFC3B47562513D9AD4F841F5A7CB4208633(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); bool* L_3 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); Enumerator__ctor_m40082904CAD0A3503338D16B2CBFFF546598540D(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); Enumerator_Dispose_mA7FC096509D31551442BF0062DC964990A5D90A6(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_4 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_5 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_8 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F* L_9 = (EntryU5BU5D_t355EFA5B029C345215BF318ADE2D17FF4E01EF3F*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); bool L_11 = (bool)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_15 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_17 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); bool* L_19 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(bool)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mEAE56113FDBDD7BAC1D81D70F76173964B7DED12(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_2 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_RuntimeMethod_var))); } IL_0028: { bool L_5 = (bool)__this->get_currentValue_3(); bool L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mBC441D51A8FA671D3A6EA506BCD97CFF82792063(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_gshared (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 * L_1 = (Dictionary_2_t8A3F8777BEF075E009D085E3BC9B9ADB00F47345 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); bool* L_4 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * _thisAdjusted = reinterpret_cast<Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m6C181DBA6AC285080B30A5E082219CE19E45D53A(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_4 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); Enumerator__ctor_mA459ECC630B3F2742DB5C0E6369E91887CD127D0(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_4 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_5 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_8 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_9 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_12 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_13 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m88F692B7F78A3FCE5E88BD2B2514997F17CB45A8((&L_16), (RuntimeObject *)L_11, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_20 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_22 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_24 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m1ED9D5A12250292CC7E7E177B6E93A7BE75666D6(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_0 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )__this->get_current_3(); return (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 _returnValue; _returnValue = Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); Enumerator_Dispose_m95A52398C470C15FA5A0173470BD93A9750B0889(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_6 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_8 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); int32_t L_9; L_9 = KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_15 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_17 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); int32_t L_18; L_18 = KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m88F692B7F78A3FCE5E88BD2B2514997F17CB45A8((&L_19), (RuntimeObject *)L_16, (int32_t)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_20 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m9DCEC64B5383F91168DC00C9D1BCBA91805F6A34(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_4 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m6CCBFE8A3E1A838C6BEA1A71650480FE69025DA2(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_5 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_7 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); int32_t L_8; L_8 = KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mC3EC3EF6F817440BFD220B86A3A2272FE3191017(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_5 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mD58FCEF543C8C5FE793758AE615F0C85DE479433(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_gshared (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * L_5 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_inline((KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * _thisAdjusted = reinterpret_cast<Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3A6C7B5AF268790DD5DC326DC8BA5213DFE07784(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); Enumerator__ctor_m2AEF0177FCBA3AE0E51589784B5F3BC9976E2074(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); Enumerator_Dispose_mBF906D5B94336A92FED1A69E0EF666BBEAFF84AA(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_4 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_5 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_8 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_9 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_15 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_17 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mB380BB4BFD80C5A3080F2980B3BD52FB255FEC7A(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mD791E407730069EDF144A767A6D412A761044030(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_gshared (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * _thisAdjusted = reinterpret_cast<Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m9012229285E787379E88BAC1ECFEB4E2EDAA7A84(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); Enumerator__ctor_m923F611E2EFB07303EB41E434043CCC3048E0475(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); Enumerator_Dispose_m381A7EAF9815A5FE6471E41E908A3A56F52B89A2(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_4 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_5 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_8 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A* L_9 = (EntryU5BU5D_tBC4463B96C923135EDB5CFF91B7E15E4D1503D2A*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_15 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_17 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m5770100609CF1681B6F451464935B5FDC499D322(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_2 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentValue_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m4BBFE241A8170BD26FE2B97638F0AC2A0B681551(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_gshared (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * L_1 = (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * _thisAdjusted = reinterpret_cast<Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m81983F8FA044B09386E0E6F5CAAEA09339206A82(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_4 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); Enumerator__ctor_mB0BFDF5B476BD9C60F3059FD81550CDD90836952(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_RuntimeMethod_var))); } IL_0021: { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_4 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_5 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_8 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_9 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_12 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_13 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E((&L_16), (RuntimeObject *)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_20 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_22 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_24 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_0 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )__this->get_current_3(); return (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 _returnValue; _returnValue = Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_6 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_8 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_9; L_9 = KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_10; memset((&L_10), 0, sizeof(L_10)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_10), (RuntimeObject *)L_7, (RuntimeObject *)L_9, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_10; RuntimeObject * L_12 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_11); return (RuntimeObject *)L_12; } IL_005c: { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_13 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_14; L_14 = KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_15 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_17; memset((&L_17), 0, sizeof(L_17)); KeyValuePair_2__ctor_m74B9EB9E16A0CC0F80B0AB74B8E1E91C16E6998E((&L_17), (RuntimeObject *)L_14, (RuntimeObject *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_18 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_18); return (RuntimeObject *)L_19; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m8F52CBD1DABA0EA45EAF36A3303950A6D4AD3408(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_4 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m76316A729C4F22C6700823E31815F2039F2A6DA3(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_5 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_7 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_8; L_8 = KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_9; memset((&L_9), 0, sizeof(L_9)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_9), (RuntimeObject *)L_6, (RuntimeObject *)L_8, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_9; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m58CD8991EBEEEFF1143553B37DE9DDF1CC6D02FC(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_5 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m7B6C01690CAD385E1EC8C9C3155917060B550A9A(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_5 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_inline((KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * _thisAdjusted = reinterpret_cast<Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m7D87D3CA00A633E0B220F16101962976CC35419D(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); Enumerator__ctor_m67069A4D94B7899E0F3212BF8DDC5052BB18A54B(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); Enumerator_Dispose_m5440E65428351CA6F19B1804D172DCB5E9C59C98(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_4 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_5 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_8 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_9 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_15 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_17 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m3714ECE30727E77F475635710D707743B6D930E6(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m9D5734E51C34E8D349CDB8A667A80229F0437519(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_gshared (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * _thisAdjusted = reinterpret_cast<Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mF9ACC3A7CB89BB7AD33F2CFF22F95A360D09FE91(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); Enumerator__ctor_m3922E9CAEB4F1AD6B37B22B80500929D49025AFE(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); Enumerator_Dispose_m20B0D06631B9715D2C26F9F0D0665BF0092FF7A6(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_4 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_5 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_8 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7* L_9 = (EntryU5BU5D_tA11A27A435DD770DB701FA3C8559ACA8B4E445E7*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_15 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_17 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mAEC22D730EB290F4405C47EE9F330B3CD4E2DC68(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_2 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m18A1301FAF8FFA3FBE318A2B919C714B77EE9932(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_gshared (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * L_1 = (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * _thisAdjusted = reinterpret_cast<Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mE6B2E2E0EDD7723A19B718BD2F716D08CC4094E8(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_4 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); Enumerator__ctor_mF3A6121BE8EEA0CD765140BC467C180D15594A0A(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_4 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_5 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_8 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_9 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_12 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_13 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_15 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m235C2ECB676FBEBE3C67752ED2214DB926749C44((&L_16), (RuntimeObject *)L_11, (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_20 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_22 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_24 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mF37A243498EE71B862328F44BF79933E71025A82(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_0 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )__this->get_current_3(); return (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF _returnValue; _returnValue = Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); Enumerator_Dispose_mE16E4522A59B9515C262C4414C05C4121DB1B444(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_6 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_8 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_9; L_9 = KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_10 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_15 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_17 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_18; L_18 = KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m235C2ECB676FBEBE3C67752ED2214DB926749C44((&L_19), (RuntimeObject *)L_16, (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_20 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mA9396F4D9DF7406AB5686E98A4229A9E5F46B679(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_4 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mB7D639CE37CC9C10B0E693131384A644F9D10620(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_5 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_7 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_8; L_8 = KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_9 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mD26DF2BE5ABD327E34BEB576BDD8E6682FBF2178(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_5 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mDE6E88738BFF3DCC16A25E066B1741A98AF92457(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_gshared (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * L_5 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)__this->get_address_of_current_3(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_6; L_6 = KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_inline((KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_7 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * _thisAdjusted = reinterpret_cast<Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5DEFCDB279A48C5CB0A04C58DF198FA704435D8E(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); Enumerator__ctor_m69AFD566014BB49432C39817293634C31763E1B7(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); Enumerator_Dispose_m4A7808B5A860C0A2D2EB5547AB31B8D6F9774E59(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_4 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_5 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_8 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_9 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_15 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_17 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m4BD02A3B6F7E53515B43BD44C5426BD3EA526A5C(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m2BEAEA161111D6F2CB48174E4371C63684CD9307(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_gshared (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * _thisAdjusted = reinterpret_cast<Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC19852E42CEC0F26E9E2119426AF6D1530AA8C24(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * L_3 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); Enumerator__ctor_m52AF37DA766B7CEA33346D5C4EA61934F09912A7(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); Enumerator_Dispose_m7DCB867478439E5A826D1A9FE0E78D5A00C79461(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_4 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_5 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_8 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412* L_9 = (EntryU5BU5D_t8BD20A960516C19031455119CBAC8AF88A610412*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_11 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_15 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_17 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * L_19 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m46D6866509F10C28EEF5370CEB25904AF3758BDA(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_0 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )__this->get_currentValue_3(); return (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_0; } } IL2CPP_EXTERN_C ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 _returnValue; _returnValue = Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_2 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_RuntimeMethod_var))); } IL_0028: { ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_5 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )__this->get_currentValue_3(); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_6 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m87B25A514D8DC13E190EBD22F8D090A8C9017CF7(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_gshared (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 * L_1 = (Dictionary_2_t1A7031D56269D606C19F997EEDB8F24872DACD94 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * L_4 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * _thisAdjusted = reinterpret_cast<Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mA82722E3E3B6518AE5CAC25AB58AE20A8C5AB847(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_4 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); Enumerator__ctor_m90B9A914C35F28C5FF876A2FEBE2B46D4E0C562E(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_4 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_5 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_8 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_9 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_12 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_13 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_15 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m627A613C1DE1B3DC393153C092E58CF88F9BBC54((&L_16), (RuntimeObject *)L_11, (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_20 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_22 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_24 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mE4E7A197758F3D73DFC19E9C2A9A883EC69EC0A7(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 L_0 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )__this->get_current_3(); return (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 _returnValue; _returnValue = Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); Enumerator_Dispose_mBEE8B9E3BD6819A964DE7D6C0BB680796E267E61(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_6 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_8 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_9; L_9 = KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_10 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_15 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_17 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_18; L_18 = KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m627A613C1DE1B3DC393153C092E58CF88F9BBC54((&L_19), (RuntimeObject *)L_16, (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 L_20 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m91DAF1A8AA89F97DE16C17BB4761B48C2A5DACDE(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_4 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mDC3BE4DF79263D52A9DFE3D7475275014A68A427(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_5 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_7 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_8; L_8 = KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_9 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m6686C0E355E8126026416129C7B46E1816F80C85(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_5 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m93571C9FCDD84C879670355C81DBF278A9FF23A9(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_gshared (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * L_5 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)__this->get_address_of_current_3(); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_6; L_6 = KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_inline((KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)(KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_7 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * _thisAdjusted = reinterpret_cast<Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m25D2726739E16E400AEAFFF2643777DE32847348(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); Enumerator__ctor_m3831D653531CC287E4F9C0F5C15F4B26ED181AB8(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); Enumerator_Dispose_m6FBA5017EA055CFC9C9E6967A162D681AFD7E295(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_4 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_5 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_8 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_9 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_15 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_17 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m8966269FFFE609529C5212726E7DED526CE4E889(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mDD3CC15394CE7DF0D1404B67656EBDC543A3A5DD(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_gshared (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * _thisAdjusted = reinterpret_cast<Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mA3CFBED3FC8F7069546EE7162BAE487A0601C813(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * L_3 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); Enumerator__ctor_m988C7040151FF87CC91109F6B2705627B3334956(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); Enumerator_Dispose_mAB4620A14DFD72D2660325A2F40BF4F6EC988B4E(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_4 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_5 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_8 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA* L_9 = (EntryU5BU5D_tC5ACF0EEFCAA76DDD9E3FCB62C8A6859388F80EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_11 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_15 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_17 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * L_19 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mD887E83F312BB136A35677FA59583A306F9292E7(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_0 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )__this->get_currentValue_3(); return (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_0; } } IL2CPP_EXTERN_C ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A _returnValue; _returnValue = Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_2 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_RuntimeMethod_var))); } IL_0028: { ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_5 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )__this->get_currentValue_3(); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_6 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mFDCA9CDD3F63D904C3EC06019099A74D4BAB4CB1(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,Microsoft.MixedReality.Toolkit.UI.ThemeDefinition>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_gshared (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 * L_1 = (Dictionary_2_t45F4B5B758A7151D9AFF74BA1E0276C021CF7B47 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A * L_4 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * _thisAdjusted = reinterpret_cast<Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mA513BF19A5738FD53FA4CFB3CA5E4B87CED960E3(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_4 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); Enumerator__ctor_m386F23B5A9C7577B10E4F397AAE277D0C403750C(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_RuntimeMethod_var))); } IL_0021: { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_4 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_5 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_8 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_9 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_12 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_13 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); uint32_t L_15 = (uint32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m5C21180640F7DD2BE827925D9A18894E5A38D96B((&L_16), (RuntimeObject *)L_11, (uint32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_20 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_22 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_24 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m989CBAF6ABCEBF007A46C053197C36B0C9C3CCEF(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 L_0 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )__this->get_current_3(); return (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 _returnValue; _returnValue = Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); Enumerator_Dispose_m5A8BE2CE7726C1527D88DB1915801E564F68B5D7(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_6 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_8 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); uint32_t L_9; L_9 = KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); uint32_t L_10 = L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_15 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_17 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); uint32_t L_18; L_18 = KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m5C21180640F7DD2BE827925D9A18894E5A38D96B((&L_19), (RuntimeObject *)L_16, (uint32_t)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 L_20 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6D5FCC1A577A1F4A09F9AC0DA0B1715D1DDF3D1B(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_4 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mEAEF8FFF01AE194827FAF5A355D48B683168CE2A(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_5 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_7 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); uint32_t L_8; L_8 = KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); uint32_t L_9 = L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFE6CA72C6970800E02171C7A663E84498F9029D6(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_5 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mF0F578260504F558CD858D76E0A74C704E8E7A30(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.UInt32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_gshared (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * L_5 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_inline((KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)(KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * _thisAdjusted = reinterpret_cast<Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m5358300382BC82C805B358DFCA467B25F8ADCB74(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); Enumerator__ctor_m79917431B9F0ABF6BB440CF6F34A0180E6FC9FB7(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); Enumerator_Dispose_m5A0791BDB4B439C59B62CE186C892CCB08D53D7D(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_4 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_5 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_8 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_9 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_15 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_17 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mD7C2CB292912826431E0B44F18F41DC91ED6830D(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m5ECB69A2A9E48323F2DBE0A6DC5AB02265DEA1B7(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_gshared (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * _thisAdjusted = reinterpret_cast<Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mED3D550875AF0D80AEDB7EA05C4FE05C52FF2D32(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); uint32_t* L_3 = (uint32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E_AdjustorThunk (RuntimeObject * __this, Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); Enumerator__ctor_mC49CF53ACD91ABB9D5EA6F229BEAA34E94ADFD8E(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); Enumerator_Dispose_mCC287904D0715D49D9EE1C43554E739E93A1F04C(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_RuntimeMethod_var))); } IL_001e: { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_4 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_5 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_8 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98* L_9 = (EntryU5BU5D_tCB8F04091E11DA8A2136DD58B56F213EA6433E98*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_15 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_17 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); uint32_t* L_19 = (uint32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(uint32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m72BFA9A240F63F5434AD74696F68F2BE8EDF2BE4(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentValue_3(); return (uint32_t)L_0; } } IL2CPP_EXTERN_C uint32_t Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); uint32_t _returnValue; _returnValue = Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_2 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_RuntimeMethod_var))); } IL_0028: { uint32_t L_5 = (uint32_t)__this->get_currentValue_3(); uint32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m42E09EEEB1E1F7E338DCF28670F0AD82D0DC60FC(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.UInt32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_gshared (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C * L_1 = (Dictionary_2_tBEEF3EB2017566FA1434657E83F95365D9117E0C *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); uint32_t* L_4 = (uint32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * _thisAdjusted = reinterpret_cast<Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mF488F2FF78DD9F588E519959122F8E00B950618A(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_4 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); Enumerator__ctor_m6E3F95F00269F25C0A04486C8BDBA3C582193185(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_4 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_5 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_8 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_9 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_12 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_13 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_15 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m2AFEF5F0895AE2696C7AE320C252E2E86A007120((&L_16), (RuntimeObject *)L_11, (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_20 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_22 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_24 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m2016B077D818069FECDBC293655CDA3E6F80989A(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 L_0 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )__this->get_current_3(); return (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 _returnValue; _returnValue = Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); Enumerator_Dispose_m665F4E411D7480BAF102910F5BF5DE18260F27E1(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_6 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_8 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9; L_9 = KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_15 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_17 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_18; L_18 = KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m2AFEF5F0895AE2696C7AE320C252E2E86A007120((&L_19), (RuntimeObject *)L_16, (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 L_20 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6331C379C626D96523FC74113EBFFCD4AC023733(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_4 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC900136AFFCCAF17DB6B5012876883CADE9A64C5(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_5 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_7 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8; L_8 = KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mDFDEC9574EC7297BBEA612FA188444540C145E06(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_5 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9399749F671C87C75F04689DAEA7F663AA97A6CC(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_gshared (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * L_5 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)__this->get_address_of_current_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6; L_6 = KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_inline((KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)(KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * _thisAdjusted = reinterpret_cast<Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m21036B5926F2A21A9138AE09148B28317B564905(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); Enumerator__ctor_m28B4CC3059D0E4E2AD59132404165B3D11C197AC(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); Enumerator_Dispose_m7F964837BCBDEA0C37E123DC9DE2D1CD954D3168(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_4 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_5 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_8 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_9 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_15 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_17 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m0EF3C34128633190E188A7D553A8FE9854177A8B(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mA504467F03B83DA41FE24B50E7D932788FB134C1(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_gshared (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * _thisAdjusted = reinterpret_cast<Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m1EBFF81B93C37AB950B31B0337488056C0E53858(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_3 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); Enumerator__ctor_m81940AE72BE1A660589F51F1B13A8D057E584016(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); Enumerator_Dispose_mEEC933F4314065B97FEB3E090E93E73B2C906E1C(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_4 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_5 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_8 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4* L_9 = (EntryU5BU5D_t16D78CBFE7577E16EDC72FD9A6FFED2ECD5125E4*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_11 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_15 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_17 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_19 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m02B884CF3439BBBC10486824CB9E318EDA3CCA9E(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )__this->get_currentValue_3(); return (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_0; } } IL2CPP_EXTERN_C Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E _returnValue; _returnValue = Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_2 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_RuntimeMethod_var))); } IL_0028: { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )__this->get_currentValue_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mBB6DBA8A6356C6D71FDCC407CDA3DA323684E560(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,UnityEngine.Vector3>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_gshared (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E * L_1 = (Dictionary_2_t8FA0B295FD3BE52BCE4DD6A58CCCFF365D8F621E *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_4 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * _thisAdjusted = reinterpret_cast<Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC78A20C56EFAAD6F0255BB76EE3D778610A01A80(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_4 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); Enumerator__ctor_m02D99710D94542DF099E8F0A1BB6C8FDD49530B6(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_4 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_5 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_8 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_9 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_12 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_13 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_15 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mD5BC97814CCB81E39128F4234C528B058EF662BD((&L_16), (RuntimeObject *)L_11, (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_20 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_22 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_24 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m2973567B423219ECCB6EF0F755A90E495CADCDFF(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA L_0 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )__this->get_current_3(); return (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA _returnValue; _returnValue = Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); Enumerator_Dispose_m31DAB7E9DE056546BE5E6C42A25520C8D5D6A47F(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_6 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); RuntimeObject * L_7; L_7 = KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_8 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_9; L_9 = KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_10 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_9; RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_10); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_7, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_15 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); RuntimeObject * L_16; L_16 = KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_17 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_18; L_18 = KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_mD5BC97814CCB81E39128F4234C528B058EF662BD((&L_19), (RuntimeObject *)L_16, (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA L_20 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC4633CE95489A32FAF42BB65B96FFDE8858965B5(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_4 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mF2687C31887E1F5D3F5962A1264199CC15E8958B(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_5 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_7 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_8; L_8 = KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_9 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_8; RuntimeObject * L_10 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_9); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_6, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m42F0E804724F32169520548D97D0F30E6DC27C6F(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_5 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_mCDF131D958D1C69035995BBBBA5ED7E98F69B743(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_gshared (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * L_5 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)__this->get_address_of_current_3(); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_6; L_6 = KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_inline((KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)(KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_7 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * _thisAdjusted = reinterpret_cast<Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m1E45FE68355991AB037B26CCBA64C91125FAA1E6(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); Enumerator__ctor_mF09AC2B8FBEE66D6B8AE1A007B1C5273113A2A1A(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); Enumerator_Dispose_m5CABDCE300A4362FC160A47CBCBE5D21652754F1(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_4 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_5 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_8 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_9 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_15 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_17 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mD72E56585F0ED0A1E6FAC5A1ECF7AC5DE281961B(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC2FDC197C9E3D79F0032A5E24BBCA20629037684(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_gshared (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * _thisAdjusted = reinterpret_cast<Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m4ACD6DED97C76E9BD0573AA40EEF4A328E3D23D2(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * L_3 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); Enumerator__ctor_m51C28633414D1C277A3B375CF787B1B5590375FB(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); Enumerator_Dispose_m10243D1EF09B3F06D1CC0F26EFEBA3CE6845C579(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_4 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_5 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_8 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85* L_9 = (EntryU5BU5D_t8D607320BF96B9AF7102AD17E8A0C7173DB1AF85*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_11 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_15 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_17 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * L_19 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m9930E8982B0340B167C7C83B92186D3E41A06D3F(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_0 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )__this->get_currentValue_3(); return (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_0; } } IL2CPP_EXTERN_C EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 _returnValue; _returnValue = Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_2 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_RuntimeMethod_var))); } IL_0028: { EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_5 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )__this->get_currentValue_3(); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_6 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mA953B0FB85A8F27872FDA45FDED9314F5CE66E7F(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal/EventRegistrationTokenList>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_gshared (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 * L_1 = (Dictionary_2_t5BB631D653FC099355128DBC14DC44E27AD30739 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 * L_4 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 *)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * _thisAdjusted = reinterpret_cast<Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m7F1FD5AAA70E90E3AED8C86C72F3816B64AB5483(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_4 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); Enumerator__ctor_m83996E086ACA91EB9DA7EF08205952B08A46D9AA(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_4 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_5 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_8 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_9 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_12 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_13 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); bool L_15 = (bool)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m40934BD848E891E1117DEA852B5B2BF11ECDDB91((&L_16), (uint32_t)L_11, (bool)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_20 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_22 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_24 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m4035C7776822ACD1E3C5F684BA940391B17F0105(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 L_0 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )__this->get_current_3(); return (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 _returnValue; _returnValue = Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); Enumerator_Dispose_m4F60B75B4609FD1BCA25CA1C6500A1C748F55DA5(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_6 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); uint32_t L_7; L_7 = KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_10 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); bool L_11; L_11 = KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_17 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); uint32_t L_18; L_18 = KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_19 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); bool L_20; L_20 = KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_m40934BD848E891E1117DEA852B5B2BF11ECDDB91((&L_21), (uint32_t)L_18, (bool)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 L_22 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mFBC66DE55397FE85725A668280BE688F773539E6(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_4 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m27CC06442AAAEE1100A02B9E889BA3C5A6BC5795(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_5 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_9 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); bool L_10; L_10 = KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m9AE3C7C1281824E84DBC90B096D5430779142986(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_5 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m4E2903E7C46EE036B631B463E2447DF1B19E640A(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Boolean>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_gshared (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * L_5 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)__this->get_address_of_current_3(); bool L_6; L_6 = KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_inline((KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)(KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); bool L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * _thisAdjusted = reinterpret_cast<Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_m3CBE1A2C8A9F24A7637EB211B9839D2C1F4E39EE(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); uint32_t* L_3 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); Enumerator__ctor_m16AFC072FC7F01E2290B92F13994F61D23290EB9(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); Enumerator_Dispose_m637661CFB3780AEE611DC923C1A2ECAB15D866F6(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_4 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_5 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_8 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_9 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_15 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_17 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); uint32_t* L_19 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(uint32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mC3CD2BF9F7AEB553DA13A0A7F5B007D646C05C59(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_EXTERN_C uint32_t Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); uint32_t _returnValue; _returnValue = Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_RuntimeMethod_var))); } IL_0028: { uint32_t L_5 = (uint32_t)__this->get_currentKey_3(); uint32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m4B320E3F09E3E69FE523F398543120091131AAF1(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_gshared (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); uint32_t* L_4 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * _thisAdjusted = reinterpret_cast<Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mCFC66EFA3715452825672EBB6C3467CEF68EFAE0(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); bool* L_3 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); Enumerator__ctor_m4871FABEEBBDA8C9E7E5EC375B412415325726F6(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); Enumerator_Dispose_mD046DFE1B7E891AA1A124C586775B53B2140EDEF(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_4 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_5 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_8 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA* L_9 = (EntryU5BU5D_t2E25F4EB355A5A76A52FFBBB2850BB916A02C6EA*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); bool L_11 = (bool)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_15 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_17 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); bool* L_19 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(bool)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m887C4D67B63EB30F0367319D717BDB7052E8EE84(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_2 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_RuntimeMethod_var))); } IL_0028: { bool L_5 = (bool)__this->get_currentValue_3(); bool L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m27CFE05A6D918E4296569D7A4E574AD0CF8C4A35(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Boolean>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_gshared (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA * L_1 = (Dictionary_2_t727597657DBCDE8841E480361B4F6009E211BACA *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); bool* L_4 = (bool*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(bool)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * _thisAdjusted = reinterpret_cast<Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m886EC718FE1E88FA0E8B3142107F65E8A98EA852(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_4 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); Enumerator__ctor_m63DEBBE612BC5369EE62C826B38B25EB54795CFD(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_4 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_5 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_8 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_9 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_12 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_13 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); int32_t L_15 = (int32_t)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_mD6FF304CCBF59175C212FA30D5C7E0C6A0E758B9((&L_16), (uint32_t)L_11, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_20 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_22 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_24 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mE187876C3EBADE9190F94916E9D7AF390CFC58BF(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_0 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )__this->get_current_3(); return (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 _returnValue; _returnValue = Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); Enumerator_Dispose_m5FDE420B16250BC9BF2A60FE0B6AF99251F538D3(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_6 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); uint32_t L_7; L_7 = KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_10 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); int32_t L_11; L_11 = KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_12); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_14; memset((&L_14), 0, sizeof(L_14)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_14), (RuntimeObject *)L_9, (RuntimeObject *)L_13, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_15 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_14; RuntimeObject * L_16 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_15); return (RuntimeObject *)L_16; } IL_005c: { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_17 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); uint32_t L_18; L_18 = KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_19 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); int32_t L_20; L_20 = KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_21; memset((&L_21), 0, sizeof(L_21)); KeyValuePair_2__ctor_mD6FF304CCBF59175C212FA30D5C7E0C6A0E758B9((&L_21), (uint32_t)L_18, (int32_t)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_22 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )L_21; RuntimeObject * L_23 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_22); return (RuntimeObject *)L_23; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mD892D18060F21B29F011E4B8D627EBEDFACC019C(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_4 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m4E3403578532AFA83F976FCF2524C0D2C5D0C749(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_5 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_9 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); int32_t L_10; L_10 = KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_11 = L_10; RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_11); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13; memset((&L_13), 0, sizeof(L_13)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_13), (RuntimeObject *)L_8, (RuntimeObject *)L_12, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_13; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_mFDDC1F8183481108320858F2C390D70CB16357EE(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_5 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m6A85A80FD60AD64EF8D44D9912ACC0C18D40B20F(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Int32>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_gshared (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * L_5 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)__this->get_address_of_current_3(); int32_t L_6; L_6 = KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_inline((KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); int32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 5), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * _thisAdjusted = reinterpret_cast<Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mE61B86C3444A0228A6C11ED2DD07A8505052ECCF(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); uint32_t* L_3 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); Enumerator__ctor_m2050F1F4151522ECCC61038E956980D7C65B150E(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); Enumerator_Dispose_mF644CB9E7C78504DC746373D2D33DF55D8E5A79D(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_4 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_5 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_8 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_9 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_15 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_17 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); uint32_t* L_19 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(uint32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m6AF3CFD77F3E36B7D2CA2B63646DC9C7409BEF71(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_EXTERN_C uint32_t Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); uint32_t _returnValue; _returnValue = Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_RuntimeMethod_var))); } IL_0028: { uint32_t L_5 = (uint32_t)__this->get_currentKey_3(); uint32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6054E1C1F98C73B6C18C33E4E3BF5DCDEF4EF8E7(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_gshared (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); uint32_t* L_4 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * _thisAdjusted = reinterpret_cast<Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mB3EEE1C7A62006E001FDC145BEAA3DE2ABB2207E(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); int32_t* L_3 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); Enumerator__ctor_m62F84F2B08591904DA0D589121DF423CD547E770(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); Enumerator_Dispose_mC2AAD0728805D40DE76C45C61CE986EA98E0A7AF(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_4 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_5 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_8 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734* L_9 = (EntryU5BU5D_tC50D8F28F6587BCDF43C9B72744CAD4892BE7734*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_15 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_17 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); int32_t* L_19 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(int32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m3B974C10CCE804B504042EE3E17D982A8AE57F62(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); int32_t _returnValue; _returnValue = Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_2 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_currentValue_3(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m898E150235EF309DDA65F4E8F5FFDAF45FD0F985(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Int32>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_gshared (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 * L_1 = (Dictionary_2_t613970F5DB840DE525998C9C40E993772B7B7F60 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); int32_t* L_4 = (int32_t*)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(int32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * _thisAdjusted = reinterpret_cast<Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m10E3FBE494101CB5185EA9F71C4857390E9F049A(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_1(L_2); __this->set_index_2(0); int32_t L_3 = ___getEnumeratorRetType1; __this->set_getEnumeratorRetType_4(L_3); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_4 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, int32_t ___getEnumeratorRetType1, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); Enumerator__ctor_m750DD6B57059079B11F8361F3063B40C487A5A75(_thisAdjusted, ___dictionary0, ___getEnumeratorRetType1, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_009e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_RuntimeMethod_var))); } IL_0021: { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_4 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_5 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_2(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_0090; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_8 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_9 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_2(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_12 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_12); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_13 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_12->get_entries_1(); int32_t L_14 = (int32_t)__this->get_index_2(); NullCheck(L_13); RuntimeObject * L_15 = (RuntimeObject *)((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_value_3(); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_16; memset((&L_16), 0, sizeof(L_16)); KeyValuePair_2__ctor_m76DA9A6BA5B7BD564ECE8478952E9BD7565E3D5E((&L_16), (uint32_t)L_11, (RuntimeObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_current_3(L_16); int32_t L_17 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return (bool)1; } IL_0090: { int32_t L_18 = (int32_t)__this->get_index_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); } IL_009e: { int32_t L_19 = (int32_t)__this->get_index_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_20 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_20); int32_t L_21 = (int32_t)L_20->get_count_2(); if ((!(((uint32_t)L_19) >= ((uint32_t)L_21)))) { goto IL_0021; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_22 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_22); int32_t L_23 = (int32_t)L_22->get_count_2(); __this->set_index_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_24 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_24, sizeof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_mAFF30CB774FB26F281E26BE9388A280BCF899620(_thisAdjusted, method); return _returnValue; } // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_0 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )__this->get_current_3(); return (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )L_0; } } IL2CPP_EXTERN_C KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA _returnValue; _returnValue = Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_inline(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); Enumerator_Dispose_mD9C02EBE3F85F5E980980C57F80839645F78169B(_thisAdjusted, method); } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_RuntimeMethod_var))); } IL_0028: { int32_t L_5 = (int32_t)__this->get_getEnumeratorRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_005c; } } { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_6 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); uint32_t L_7; L_7 = KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_8 = L_7; RuntimeObject * L_9 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_8); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_10 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); RuntimeObject * L_11; L_11 = KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_12; memset((&L_12), 0, sizeof(L_12)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_12), (RuntimeObject *)L_9, (RuntimeObject *)L_11, /*hidden argument*/NULL); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_13 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_12; RuntimeObject * L_14 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_13); return (RuntimeObject *)L_14; } IL_005c: { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_15 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); uint32_t L_16; L_16 = KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_17 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); RuntimeObject * L_18; L_18 = KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_19; memset((&L_19), 0, sizeof(L_19)); KeyValuePair_2__ctor_m76DA9A6BA5B7BD564ECE8478952E9BD7565E3D5E((&L_19), (uint32_t)L_16, (RuntimeObject *)L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_20 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )L_19; RuntimeObject * L_21 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_20); return (RuntimeObject *)L_21; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC25454CC63B861B9CD7B9C028A0B7BEA865750CE(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_RuntimeMethod_var))); } IL_001e: { __this->set_index_2(0); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_4 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); il2cpp_codegen_initobj(L_4, sizeof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mB90D83762353A0F2D350E4FF8E1CF31A26CFD2AE(_thisAdjusted, method); } // System.Collections.DictionaryEntry System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_5 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_9 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); RuntimeObject * L_10; L_10 = KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_11; memset((&L_11), 0, sizeof(L_11)); DictionaryEntry__ctor_mF383FECC02E6A6FA003D609E63697A9FC010BCB4((&L_11), (RuntimeObject *)L_8, (RuntimeObject *)L_10, /*hidden argument*/NULL); return (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_11; } } IL2CPP_EXTERN_C DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Entry_m72059C952692B8B4EA091A10FF5C00AA4C0BB2DD(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_5 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); uint32_t L_6; L_6 = KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); uint32_t L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_7); return (RuntimeObject *)L_8; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Key_m9FB0083A5AF8056D073EDE2ACE34355C7D71CFBC(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/Enumerator<System.UInt32,System.Object>::System.Collections.IDictionaryEnumerator.get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_gshared (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_2(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_RuntimeMethod_var))); } IL_0028: { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * L_5 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)__this->get_address_of_current_3(); RuntimeObject * L_6; L_6 = KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_inline((KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); return (RuntimeObject *)L_6; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * _thisAdjusted = reinterpret_cast<Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IDictionaryEnumerator_get_Value_mA1FDAFBA33BE800D9DA34F818650717B3F297DB6(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); uint32_t* L_3 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_3, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); Enumerator__ctor_m0096D6C2242507E47BD050D074DF72B39AB95DE7(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); Enumerator_Dispose_mEC99B95308150A12001471B7A8ECBE4B4C0E14B5(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_4 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_5 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_8 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_9 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); uint32_t L_11 = (uint32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_2(); __this->set_currentKey_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_15 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_17 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); uint32_t* L_19 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_19, sizeof(uint32_t)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m529339A9A8AE41E4C5EDC9F19F34DC7E9AE0564D(_thisAdjusted, method); return _returnValue; } // TKey System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_EXTERN_C uint32_t Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); uint32_t _returnValue; _returnValue = Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_RuntimeMethod_var))); } IL_0028: { uint32_t L_5 = (uint32_t)__this->get_currentKey_3(); uint32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), &L_6); return (RuntimeObject *)L_7; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mF314B9EB8BBEDEA54EB9566F1D1777444198EE84(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_gshared (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); uint32_t* L_4 = (uint32_t*)__this->get_address_of_currentKey_3(); il2cpp_codegen_initobj(L_4, sizeof(uint32_t)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * _thisAdjusted = reinterpret_cast<Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_mC92767335D9BF0FEC2C7680F2F121BF68FD665F4(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::.ctor(System.Collections.Generic.Dictionary`2<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_0 = ___dictionary0; __this->set_dictionary_0(L_0); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = ___dictionary0; NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); __this->set_version_2(L_2); __this->set_index_1(0); RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * ___dictionary0, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); Enumerator__ctor_mA49758F5B6B4369AC85E618F7A25CBA727544CB4(_thisAdjusted, ___dictionary0, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { return; } } IL2CPP_EXTERN_C void Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); Enumerator_Dispose_mA32EC65C76D7D2EE04EB9CEAF5ED0589AEB1F690(_thisAdjusted, method); } // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_007b; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_RuntimeMethod_var))); } IL_001e: { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_4 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_4); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_5 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_4->get_entries_1(); int32_t L_6 = (int32_t)__this->get_index_1(); NullCheck(L_5); int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0(); if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_006d; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_8 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_8); EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0* L_9 = (EntryU5BU5D_t7EA822197054D9F86EFEC5F43775E887A9AC6AD0*)L_8->get_entries_1(); int32_t L_10 = (int32_t)__this->get_index_1(); NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_3(); __this->set_currentValue_3(L_11); int32_t L_12 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return (bool)1; } IL_006d: { int32_t L_13 = (int32_t)__this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_007b: { int32_t L_14 = (int32_t)__this->get_index_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_15 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_15); int32_t L_16 = (int32_t)L_15->get_count_2(); if ((!(((uint32_t)L_14) >= ((uint32_t)L_16)))) { goto IL_001e; } } { Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_17 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_17); int32_t L_18 = (int32_t)L_17->get_count_2(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *)); return (bool)0; } } IL2CPP_EXTERN_C bool Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); bool _returnValue; _returnValue = Enumerator_MoveNext_m96C84DAE2C4D93C85E192EA74296043897AB6803(_thisAdjusted, method); return _returnValue; } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_inline(_thisAdjusted, method); return _returnValue; } // System.Object System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_index_1(); if (!L_0) { goto IL_001d; } } { int32_t L_1 = (int32_t)__this->get_index_1(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_2 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_2); int32_t L_3 = (int32_t)L_2->get_count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)))))) { goto IL_0028; } } IL_001d: { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_RuntimeMethod_var))); } IL_0028: { RuntimeObject * L_5 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); RuntimeObject * _returnValue; _returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m19105352294F8E8A96F81034FD2FF8B0D3BC526D(_thisAdjusted, method); return _returnValue; } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.UInt32,System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_gshared (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_version_2(); Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * L_1 = (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 *)__this->get_dictionary_0(); NullCheck(L_1); int32_t L_2 = (int32_t)L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_001e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_RuntimeMethod_var))); } IL_001e: { __this->set_index_1(0); RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of_currentValue_3(); il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *)); return; } } IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * _thisAdjusted = reinterpret_cast<Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 *>(__this + _offset); Enumerator_System_Collections_IEnumerator_Reset_m0D244372A2D6FA61EA4C3EF81F2C7BBB915908EE(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE6D2CF01751CFE0EB934F99CF2B569B4541EBC5F_gshared_inline (Enumerator_t7E014E75C20E5B1BED04A1314E2A4D1E2B9D9632 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_mF7C67BF1ADCF87DA152F054AA761AB85F75EEB8D_gshared_inline (Enumerator_tE364715984977A2834C9CF8842C2AD71085075A8 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 Enumerator_get_Current_m77D670578EDBC167D4D8C85976BB8305D12FF9DD_gshared_inline (Enumerator_tD0C26E75ACAC7037AD5696DFB1079DD3F88957A4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_0 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )__this->get_current_3(); return (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m56CB8EE8272E6CA940939FCA757097A9FF78AC7C_gshared_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar KeyValuePair_2_get_Value_m91B4F412275D775F1614276762664B8289085C43_gshared_inline (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 * __this, const RuntimeMethod* method) { { Il2CppChar L_0 = (Il2CppChar)__this->get_value_1(); return (Il2CppChar)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m66EBD704CE475A61DC9901981F482447A686D120_gshared_inline (Enumerator_tB36BEEAB36379F99AB2A8DEDFB68EB1336B25B39 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m60940FD573C52F9014097DBAE995C66AA5328516_gshared_inline (Enumerator_t1BC50C19E6A2CA319C01C7B0341BAEB30817C9CA * __this, const RuntimeMethod* method) { { Il2CppChar L_0 = (Il2CppChar)__this->get_currentValue_3(); return (Il2CppChar)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB Enumerator_get_Current_mCCDEB62B9FB818006DAAAD7798C7D396D3472038_gshared_inline (Enumerator_t01C67709CE5D52660166662380B9C0851DA3F4DC * __this, const RuntimeMethod* method) { { KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_0 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )__this->get_current_3(); return (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mE3B72B1BB3B8DD41788D39A3AF38E6A94B241400_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m40417D9B18D29FD4A072DABC1449DACEF8009C6A_gshared_inline (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m06035E5D16D5681B554060B135E56CC434C14B0C_gshared_inline (Enumerator_t4945DBB515D6BC132360326DCDC16F6A72FD845E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mADEAD0F4A96F6399227342F3C128105A6C8C32AB_gshared_inline (Enumerator_t14F019BE91B99D807B381372BC77449E905F0B23 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 Enumerator_get_Current_m87526ACD6E629FEB05AB9553BBF137A42641FBD7_gshared_inline (Enumerator_tFFD8C3F128D79BB191A6C496B135B52C98D068B4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_0 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )__this->get_current_3(); return (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mB3ADE63CBC756E574B6E583906B3D415ECE2DF59_gshared_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Value_mE4D6C0B237BD91BF63DA21521277D83A5F9CB523_gshared_inline (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_value_1(); return (int64_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mFFE4BB59502921FC4589953BA35C3E1DC4653D41_gshared_inline (Enumerator_t09A29089F114CB5D60CB0FFF4E6E18234E08ECB1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mE1D4CC4ED092F5AE94E03D3B3A11CF0D8E4CB393_gshared_inline (Enumerator_t5B40201DFAEFBA5BE3FEEF31E632FAC0B3E9FC2F * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_currentValue_3(); return (int64_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 Enumerator_get_Current_mE5033FC555E7BC63DDC919B903A8A305C3AADBEB_gshared_inline (Enumerator_t1AD96AD2810CD9FF13D02CD49EC9D4D447C1485C * __this, const RuntimeMethod* method) { { KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_0 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )__this->get_current_3(); return (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mCA6E77030F4BE64105E6B3EFB3CBB8E6EC08CA0A_gshared_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_mC1E2EFCF98529D0550A547CF87C6EAB6821741BF_gshared_inline (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mEE9617C9ECD7EEA6CAA8FC1AE4F768FD45871932_gshared_inline (Enumerator_tFE456209A61959ABD64BFCC8CEF16DA82AAF7ECA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mC05D3D6AD41313CA564794A0750EB5BC5AA04948_gshared_inline (Enumerator_tC388053BE5235308C1C6087681EC24B2B659648F * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB Enumerator_get_Current_mB8ABE160881971ECF2F61EBE611F0298681FC3FF_gshared_inline (Enumerator_t01E44AD413AE18977DD154D3DE5F559FDFB61BE4 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB L_0 = (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )__this->get_current_3(); return (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m5320D93C31FB17BCB9B16ACF2492A9C9C2372568_gshared_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 KeyValuePair_2_get_Value_m873E68281EF6EED3026860D9606EDA445B47D2C6_gshared_inline (KeyValuePair_2_tEA6C46EFE1A7823B4D9605EA222AB3A9710385AB * __this, const RuntimeMethod* method) { { MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_0 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )__this->get_value_1(); return (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m8E20DCD4BDEB69F6F0B04927B8FCD96141775A58_gshared_inline (Enumerator_tADC531D25D9AD72B3A6D60A884B0DC55F620756E * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 Enumerator_get_Current_m76205D1A72707183BE93CE2D6144B51972AE6BBD_gshared_inline (Enumerator_t2A73F9D5A177B2A00109CC2EDB2EF33A3F144111 * __this, const RuntimeMethod* method) { { MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 L_0 = (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )__this->get_currentValue_3(); return (MixedRealityPose_tD9E4CD532EF579179E6440FDD469FDE05B136A99 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 Enumerator_get_Current_mD0DF1E75C7363071E8AABDD5675B9C6A01A3D163_gshared_inline (Enumerator_tE9365A698EB22A78CDB2D70C86BAB69BA9156ED3 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_0 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )__this->get_current_3(); return (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m552EF9E81C281CE4DD62C0903BF6DC9D272F476E_gshared_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_mB10BAC8935675641594C1F047A5125EC590EBEE1_gshared_inline (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mE31B6B24EAB30E4FD590E2729796FB76C19CD203_gshared_inline (Enumerator_t1C0300388DDBE93EBABCC5DE5CE20DE17928EDD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m6C2AF5B57480AE0440F937EF9A50D3803ED850EE_gshared_inline (Enumerator_tEA3EEAFB01FCAEC65CD249CE8B28073BA94302C2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA Enumerator_get_Current_m1AA5CF2CDEC40A5EB118067FB296FB14954AAB32_gshared_inline (Enumerator_tAEEE9BC3FED9BEB4C4BABBAF3F5F44086B78E777 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA L_0 = (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )__this->get_current_3(); return (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m68FF0C49A642FC675E95F2DCA3070C20E234537D_gshared_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float KeyValuePair_2_get_Value_mE55F90DDE9781A12E3877124E1B6AB6273FFE5EA_gshared_inline (KeyValuePair_2_t981AE20097B6314BF8A205CF34ECF3A7E18B66DA * __this, const RuntimeMethod* method) { { float L_0 = (float)__this->get_value_1(); return (float)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m127A8CCBA9844F7CEBDA82EAD6AD44D114EFF80F_gshared_inline (Enumerator_t5F463F2B4E0DE1A4D3086CD9E5277C096E11B51B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Enumerator_get_Current_m2C60D6B29AF11B4552C18FEA0B43E803569820E8_gshared_inline (Enumerator_tB45DC159229260FD18B642727B0E422805D986A9 * __this, const RuntimeMethod* method) { { float L_0 = (float)__this->get_currentValue_3(); return (float)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 Enumerator_get_Current_mDD1BACDCD92E2E5352E66CECB5C8A05491389332_gshared_inline (Enumerator_t973F51CB7C6A70C2874A7DDDE7D0E2888E6B4F9F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 L_0 = (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )__this->get_current_3(); return (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m5B9C7D8DCDDDF8D7F3D609A1EE204335250A007D_gshared_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_key_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 KeyValuePair_2_get_Value_mA9A36B93E5F3364AB757F847C1C5E9D3E1F25922_gshared_inline (KeyValuePair_2_t6135B924936D20EBA38AA5686925B2557F90B9A8 * __this, const RuntimeMethod* method) { { AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_0 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )__this->get_value_1(); return (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m049277074A33796A51AB7CFA26796405C303E271_gshared_inline (Enumerator_tA5358AF8155FFE750AC9B04E5B6A1627DDF35B7D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentKey_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 Enumerator_get_Current_m671DE41C9DA0EC85FE0185AEE4A91BEB68ADF2A8_gshared_inline (Enumerator_t40D190F6481C70C9E0296077FB24B7AB185D1C67 * __this, const RuntimeMethod* method) { { AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 L_0 = (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )__this->get_currentValue_3(); return (AudioLoFiFilterSettings_tDDF6744CE4F9591AC988C166BDED8FDAAAE5B8C0 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 Enumerator_get_Current_m6C135BE69D6A319DBF2D1C7CD7E68456A79784A9_gshared_inline (Enumerator_tC49F87FB1FC8726D1F73E7337286C759ADF328BD * __this, const RuntimeMethod* method) { { KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_0 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )__this->get_current_3(); return (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t KeyValuePair_2_get_Key_m8100BF3E3F64307412AF522908A74E48B8A7BDAD_gshared_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_key_0(); return (int64_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m9FB8CF0F4C684DF0F6CE4F9BE0E0F80216B06268_gshared_inline (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_mFF6BCB7AD8833EC037DAFB51C7B3CD9AD54C66F0_gshared_inline (Enumerator_t11DC5519507C7F4A86ADE22E6E7DA5753BF3994F * __this, const RuntimeMethod* method) { { int64_t L_0 = (int64_t)__this->get_currentKey_3(); return (int64_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8EA83E822D496B2BB2A7627A59B99EDECE63B32F_gshared_inline (Enumerator_tBF4B510D987FC9A6078D1010A51D9AC9F5611BC2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A Enumerator_get_Current_mC06AEC97C3323055E9676EB20ACBFBC31A1A8FE5_gshared_inline (Enumerator_t7CF1480E8063E004FE105D7E9D3A68CD5AC7D851 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_0 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )__this->get_current_3(); return (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mF390DA2A3078B58DD811566C1131DF2495F5052E_gshared_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m9F9DF6119C16A47CA183A11447C735B01FE006C8_gshared_inline (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_value_1(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mEA1BC4360C34C08C7D84A1E47D8A5C3D8799BD83_gshared_inline (Enumerator_t08891CBAFDC873651C4042C16B8EBFD30A577638 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m07D0D8882D5F0199FA1C7D92F1E3A386339DB149_gshared_inline (Enumerator_tDE31267CF996518F3F399CAA11D67EF5E36A370C * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 Enumerator_get_Current_m5279E034E5287E508D042888CCB92425D460E4D2_gshared_inline (Enumerator_t54367390A3FB0D43F31086A16C260B79BBB96DF2 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_0 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )__this->get_current_3(); return (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m1AEFA99ECEA20A9740DCFCE1622EB2F8B9184321_gshared_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mC6B953D39DE75B2143D5A5850CA81C6779532803_gshared_inline (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m2CCCCA8F2AC3C52BBFDE257E16189AC172B18AEF_gshared_inline (Enumerator_tC65CCC1226A8ADC61C1D0B645D6B48EDC74C7713 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m5FE6948B698A38954A4C7AB07F1E81ED2A7D0F9D_gshared_inline (Enumerator_tAB4C1E18CB59378941095470A59B0C0F817C1712 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m17E1C36ECBB09CC2AB892710866F8655D83A6048_gshared_inline (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_0 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )__this->get_current_3(); return (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mCAD7B121DB998D7C56EB0281215A860EFE9DCD95_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m622223593F7461E7812C581DDB145270016ED303_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF254C3BDEA9F0829958522BF88C75DE8BEC4961F_gshared_inline (Enumerator_t4F7151B1D8B03D97F931400ABBC97A08CE419031 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5EAB60888D4E661A01C7F32AD890D785F8B6225B_gshared_inline (Enumerator_t125181DA94FAAEC346371E0582D50084E0B602E2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF Enumerator_get_Current_m3FF92D1D03F59A936734AF737364FAFED2A140A7_gshared_inline (Enumerator_tE6852EAB8525A3899F3334A7A0A6EBD82F03FF7D * __this, const RuntimeMethod* method) { { KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_0 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )__this->get_current_3(); return (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mF539F04FBBFE3F3DA0D8C9CAA7514323B466E455_gshared_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 KeyValuePair_2_get_Value_mB1564B1CCE4C1408B3E3133E0ACBFAA40FBFC7E8_gshared_inline (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF * __this, const RuntimeMethod* method) { { ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_0 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )__this->get_value_1(); return (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mF5F76F44752EF5D12379CB45EB5DBF2E0F68DEC2_gshared_inline (Enumerator_t0D767D13FB8ECB62A59C802E131308FE57644191 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 Enumerator_get_Current_m4E38945CC33296FA2C5BF8DDC4717B0A688CAE51_gshared_inline (Enumerator_t86FD2B0CBDF5C9DD655CBFE02E5C8A805968A4B8 * __this, const RuntimeMethod* method) { { ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_0 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )__this->get_currentValue_3(); return (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 Enumerator_get_Current_mD7883354B22D332D84E6AFCB634C43FDDD90FD7F_gshared_inline (Enumerator_tEE5EF49CD48CA6B819FAE3F0AD024F6FAF43F891 * __this, const RuntimeMethod* method) { { KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 L_0 = (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )__this->get_current_3(); return (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m694368A2D3998F90B9D107E80C4255D5EC18A7F5_gshared_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A KeyValuePair_2_get_Value_m97AF464540547EF4AB23976D94DF15F975A6A925_gshared_inline (KeyValuePair_2_tAB1B086C0CFEF6A48A8C0AA00BC4CDB84F2E1D37 * __this, const RuntimeMethod* method) { { ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_0 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )__this->get_value_1(); return (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m4BC67444C1BBB38CA43B9FAF808079D5B6952D62_gshared_inline (Enumerator_tD8ECD624A8266951641AEF7630A54FD72AEA225B * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A Enumerator_get_Current_mBBFB4330FE3D505C36AE0EAC520341E11EA981F3_gshared_inline (Enumerator_tCF00D40DAC3470824E21140E49FA66A4C417C610 * __this, const RuntimeMethod* method) { { ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A L_0 = (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )__this->get_currentValue_3(); return (ThemeDefinition_t30ADA08BFE81836E0D771ADE4EEEB281A7402A6A )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 Enumerator_get_Current_m88A70EA9F973C91857DE0F5442FB0F2A2B62F14D_gshared_inline (Enumerator_tFF7C69DB9E5C792D87B10972CBD800650F967810 * __this, const RuntimeMethod* method) { { KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 L_0 = (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )__this->get_current_3(); return (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m7C7A6038E5C3D988C19D46C6B38D3C2AD7F10B42_gshared_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Value_m763D44F4EB12289B4B55607B9D848F784AE3F90B_gshared_inline (KeyValuePair_2_t0BDEBB7E26082FCC604A0CE9B29AB0FCE1140700 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_value_1(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7E7E8D27B0B48CF148F249ED3FFC7E80A2FE5D78_gshared_inline (Enumerator_tCECDBBD19536E3DF1D9D1E9FB933448B69B7C14F * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mE27D725920D2D55431A55F847F70069368AAD50E_gshared_inline (Enumerator_t20CD4B3065031A5CA4EF343BB34F787E73572C99 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentValue_3(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 Enumerator_get_Current_m8BEA95C32B08630834570100EAE928A89AE554D1_gshared_inline (Enumerator_t21DD40C30AE43BBB01293D0D6725BB3D1C6E5E6B * __this, const RuntimeMethod* method) { { KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 L_0 = (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )__this->get_current_3(); return (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m50E842F72FFB4AD8F2058A131F25EA9E2182B959_gshared_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E KeyValuePair_2_get_Value_m2A3F1A5B046AB35344E738BF8A7D088C9C850F47_gshared_inline (KeyValuePair_2_t08B9657641C90B74353E46A763B776CE57CCE823 * __this, const RuntimeMethod* method) { { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )__this->get_value_1(); return (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m5D9B0C733C826804FC550C54192E5D1EC7BDA7E3_gshared_inline (Enumerator_t3201F5E025C7AC84FB895E33CF60ACB16ED3FA65 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Enumerator_get_Current_mC1C15E7EA784AB1293018929D623D497D4449D86_gshared_inline (Enumerator_t5DE3C4798385180CB30395DD2FE4FE9C6D495EBB * __this, const RuntimeMethod* method) { { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )__this->get_currentValue_3(); return (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA Enumerator_get_Current_mF460068EC96DA502DB2CFCDB1DBD9A73B9B6826B_gshared_inline (Enumerator_tA92CB01957958F56792112F58B02E7B12914BD3F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA L_0 = (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )__this->get_current_3(); return (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m5DA18E19A89E403640FD5D001CEDF86C48C3C80B_gshared_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 KeyValuePair_2_get_Value_m9982943D9D6E5D43134B31ABD61E9A903A004497_gshared_inline (KeyValuePair_2_t5CBC152D864EEAB4D482CE171E23F4405F6D6FAA * __this, const RuntimeMethod* method) { { EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_0 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )__this->get_value_1(); return (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m0AFA639D83B520DDC62869CA8F77DED1448CBD58_gshared_inline (Enumerator_t98B55D6E1FB1C42BDB40FEA12D4109FE20F4CFB2 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentKey_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 Enumerator_get_Current_mA58228C246138855C56CF55A4252DBE35E62EE5B_gshared_inline (Enumerator_t6703B9BCF8CFC2ADFD07F1A57D120C64FE0A1EB1 * __this, const RuntimeMethod* method) { { EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 L_0 = (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )__this->get_currentValue_3(); return (EventRegistrationTokenList_t0B8EB3E0DA8A305BFCD313936266A15F50B4B128 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 Enumerator_get_Current_m9572170B2C82F5380A821B3DC038FCF9CAEC6489_gshared_inline (Enumerator_t49C2AF0BDC7DB3B208B18B190EF466D258DF656A * __this, const RuntimeMethod* method) { { KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 L_0 = (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )__this->get_current_3(); return (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_m7B0329CC196C620FED4D675C27C6E0B80A157712_gshared_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_key_0(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_m31910B14E8F8F5D4847FDB09A2C7C8B6E7E267E3_gshared_inline (KeyValuePair_2_t504EC26DD47F99A8C06286072D44FAA1ABD0CD93 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_value_1(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_mEC3EE66FB54F072A674781ED375C08D578CF52AA_gshared_inline (Enumerator_t7A1A5DBCE9886A54B4A6383FDC74412BBBF530F6 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m10E2A34186605774754C79C1EFD9F4C62DA656BE_gshared_inline (Enumerator_t8F8A6689F40A56C0BA29233D9EEF624AFD240D2F * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_currentValue_3(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 Enumerator_get_Current_m4D27705359F05FBF48605E4A80E9335887533177_gshared_inline (Enumerator_t493BCA16AE48D20BC56B52A610D1A7E7E63E9B4F * __this, const RuntimeMethod* method) { { KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_0 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )__this->get_current_3(); return (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_mD05215E22C7A7F46C33AD78FD65AA475367DA23F_gshared_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_key_0(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mCD93A7700AF69594AD330A91F8F778302EFF3480_gshared_inline (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_1(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m8117F8B19DD849CC8F26E50D5183858944869231_gshared_inline (Enumerator_tB2EEA8F1FBF6B3ABC6B2A8FB4B15A556CEDD151F * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mCB959A6A7034AC799AEFF6C0D5D6ACD37ED08AE2_gshared_inline (Enumerator_t397F910A24E1A03A1942D92BB3C89BED167FE81D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_currentValue_3(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA Enumerator_get_Current_m19AAEBA1A82A1F2EB6D56E59B8201B8802154E4B_gshared_inline (Enumerator_t7D38DDF02B1386C127E40FC1A0D797D725D62BEA * __this, const RuntimeMethod* method) { { KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_0 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )__this->get_current_3(); return (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t KeyValuePair_2_get_Key_mF8F0216E14C54E39812122729D57485323ECD580_gshared_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_key_0(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m6BC97F2C3799A9DCBDEECC56E974E4724926F8D4_gshared_inline (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t Enumerator_get_Current_m2CAC954CD5A710126A3CDFE8BE9BD6F10C2833E4_gshared_inline (Enumerator_tC8F06C4EEF04623FAE11476A54F9DD491F6C4B69 * __this, const RuntimeMethod* method) { { uint32_t L_0 = (uint32_t)__this->get_currentKey_3(); return (uint32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m8771447B47D7A1D61B647FFDC02FE36A4502C2D2_gshared_inline (Enumerator_t9EEAF651D88531DF7DE715FD861390FCCAF99A92 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return (RuntimeObject *)L_0; } }
[ "yutao.song@burohappold.com" ]
yutao.song@burohappold.com
99e83344a58a4aca148bbc6338208366566978f7
fd181dec682dc4a9de629f943cc61054cae003ca
/cpp06/ex01/main.cpp
bd12fc8f2b29437445e95f74d3b3d69e643eed4e
[]
no_license
guysharony/cpp
fa941e077ebad6a1d763b246f30775b482815e5d
a5a3f8a5ab72dbcad8b300cb01ee06b2f82c09a8
refs/heads/master
2023-02-03T09:30:13.719536
2020-12-18T08:15:10
2020-12-18T08:15:10
304,234,394
0
0
null
null
null
null
UTF-8
C++
false
false
1,236
cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gsharony <gsharony@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/12/11 07:42:38 by gsharony #+# #+# */ /* Updated: 2020/12/14 16:35:05 by gsharony ### ########.fr */ /* */ /* ************************************************************************** */ #include "serializer.hpp" int main(void) { void *tmp1 = serialize(); Data *tmp2 = deserialize(tmp1); std::cout << "s1 [" << tmp2->s1 << "]" << std::endl; std::cout << "n [" << tmp2->n << "]" << std::endl; std::cout << "s2 [" << tmp2->s2 << "]" << std::endl; delete [] reinterpret_cast<char *>(tmp1); delete tmp2; return (0); }
[ "sharonyguy@gmail.com" ]
sharonyguy@gmail.com
7ac89d5649de43aa3b7d2d337b93a0925c83c6e2
2bdc300448862f0703cea9b26e314524b5e3f526
/youme_voice_engine/thirdparties/common/src/Ne10/modules/math/NE10_len.cpp
6f449b5c6e70af6cec946211064c49cfe941f1c1
[ "BSD-3-Clause" ]
permissive
gavinlwz/AVSDK2
217f233539071ccb241a8178dc502026fa52475b
848a087191e21ecd5e918f3e5334847fbf7bfd7d
refs/heads/master
2022-12-28T03:55:22.995809
2020-10-12T09:57:38
2020-10-12T09:57:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,765
cpp
/* * Copyright 2011-15 ARM Limited and Contributors. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of ARM Limited nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY ARM LIMITED AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL ARM LIMITED AND 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. */ /* * NE10 Library : math/NE10_len.c */ #include "NE10_types.h" #include "macros.h" #include <assert.h> #include <math.h> namespace youme { ne10_result_t ne10_len_vec2f_c (ne10_float32_t * dst, ne10_vec2f_t * src, ne10_uint32_t count) { NE10_LEN_OPERATION_X_C ( dst[ itr ] = sqrt (src[ itr ].x * src[ itr ].x + src[ itr ].y * src[ itr ].y) ; ); } ne10_result_t ne10_len_vec3f_c (ne10_float32_t * dst, ne10_vec3f_t * src, ne10_uint32_t count) { NE10_LEN_OPERATION_X_C ( dst[ itr ] = sqrt (src[ itr ].x * src[ itr ].x + src[ itr ].y * src[ itr ].y + src[ itr ].z * src[ itr ].z); ); } ne10_result_t ne10_len_vec4f_c (ne10_float32_t * dst, ne10_vec4f_t * src, ne10_uint32_t count) { NE10_LEN_OPERATION_X_C ( dst[ itr ] = sqrt (src[ itr ].x * src[ itr ].x + src[ itr ].y * src[ itr ].y + src[ itr ].z * src[ itr ].z + src[ itr ].w * src[ itr ].w); ); } } // namespace youme
[ "shuhuan_bruce@icloud.com" ]
shuhuan_bruce@icloud.com
cde575af2c609b94c8830c4d8c92042fcd39bb08
152060017bbdfffa89b3fec361e53cb1b22a8b0e
/algorithms/Greatest Common Divisor.cpp
2280c3c90e2c40e2dfe9934f9dc823b5622cd7a6
[]
no_license
Mohammad-Yasfo/ACM_Problems
ea2d2f0ddcde2e9fea27cc1288d066b6ed155ca1
81f5bd39d53237f4d89df8ee65cf5241eb1f6c59
refs/heads/master
2021-05-12T11:00:49.913083
2018-01-13T18:21:27
2018-01-13T18:21:27
117,373,760
0
0
null
null
null
null
UTF-8
C++
false
false
264
cpp
long gcd(long p, long q, long *x, long *y) { long x1,y1; /* previous coefficients*/ long g; /* value of gcd(p,q) */ if (q > p) return(gcd(q,p,y,x)); if (q == 0) { *x=1; *y=0; return(p); } g = gcd(q, p%q, &x1, &y1); *x = y1; *y = (x1 - floor(p/q)*y1); return(g); }
[ "mohammad.yasfo@gmail.com" ]
mohammad.yasfo@gmail.com
a8e53491762ff7cbf95a61e80cb4e04d9f44695f
57d1d62e1a10282e8d4faa42e937c486102ebf04
/judges/codeforces/done/377b.cpp
a2d74a0c33acf4285d53788106d43866b69b7f8b
[]
no_license
diegoximenes/icpc
91a32a599824241247a8cc57a2618563f433d6ea
8c7ee69cc4a1f3514dddc0e7ae37e9fba0be8401
refs/heads/master
2022-10-12T11:47:10.706794
2022-09-24T04:03:31
2022-09-24T04:03:31
178,573,955
0
0
null
null
null
null
UTF-8
C++
false
false
1,653
cpp
#include<cstdio> #include<cstring> #include<set> #include<algorithm> using namespace std; #define mp make_pair #define INF (int) 1e9 + 100000 #define MAX 100010 int main() { bool can = 0; int n, m, s, localOut[MAX], out[MAX]; pair<int, int> bug[MAX]; pair<pair<int, int>, int> student[MAX]; scanf("%d %d %d", &n, &m, &s); for(int i=0; i<m; ++i) scanf("%d", &bug[i].first), bug[i].second = i; for(int i=0; i<n; ++i) scanf("%d", &student[i].first.first), student[i].second = i; for(int i=0; i<n; ++i) scanf("%d", &student[i].first.second); sort(bug, bug + m); int l = 1, r = m; while(l <= r) { int mid = (l + r)/2, passes = 0; set< pair< pair<int, int>, int> > tree; set< pair< pair<int, int>, int> >::iterator it, itaux; for(int i=0; i<n; ++i) tree.insert(student[i]); set< pair<int, int> > heap; set< pair<int, int> >::iterator itheap; int i = m - 1; bool localCan = 1; while(localCan && i >= 0) { it = tree.upper_bound(mp(mp(bug[i].first-1, INF), INF)); itaux = it; for(; it!=tree.end(); ++it) heap.insert(mp(it->first.second, it->second)); tree.erase(itaux, tree.end()); if(heap.empty()) localCan = 0; else { pair<int, int> p = *heap.begin(); heap.erase(heap.begin()); passes += p.first; if(passes > s) localCan = 0; for(int j=0; j<mid && i>=0; ++j, --i) localOut[bug[i].second] = p.second; } } if(localCan) { can = 1; memcpy(out, localOut, sizeof(out)); r = mid - 1; } else l = mid + 1; } if(!can) puts("NO"); else { printf("YES\n%d", out[0] + 1); for(int i=1; i<m; ++i) printf(" %d", out[i] + 1); puts(""); } return 0; }
[ "dxmendes1@gmail.com" ]
dxmendes1@gmail.com
a1e09aa5cdf2330e59099913d1eff05c87a321c3
8e82ebbc43a96915343ca13012cde60a289a8c6a
/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc
16e4bbbdbc462e26af831c5823225113dcb6af8b
[ "BSD-3-Clause" ]
permissive
wfscs3/chromium
9883ffca0c02616aec2a938ac033915496dca2a4
837e63394013c6d3ea3bbf7cfc1bb9faeeddb6de
refs/heads/master
2023-03-09T16:07:46.673858
2020-01-30T15:06:49
2020-01-30T15:06:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
199,528
cc
// Copyright (c) 2016 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. #include "gpu/command_buffer/service/gles2_cmd_decoder_passthrough.h" #include "base/bind_helpers.h" #include "base/metrics/histogram_macros.h" #include "base/numerics/ranges.h" #include "base/strings/string_number_conversions.h" #include "build/build_config.h" #include "gpu/command_buffer/common/discardable_handle.h" #include "gpu/command_buffer/service/decoder_client.h" #include "gpu/command_buffer/service/gl_stream_texture_image.h" #include "gpu/command_buffer/service/gpu_fence_manager.h" #include "gpu/command_buffer/service/gpu_tracer.h" #include "gpu/command_buffer/service/image_factory.h" #include "gpu/command_buffer/service/multi_draw_manager.h" #include "gpu/command_buffer/service/passthrough_discardable_manager.h" #include "gpu/command_buffer/service/shared_image_factory.h" #include "gpu/command_buffer/service/shared_image_representation.h" #include "ui/gfx/geometry/rect_conversions.h" #include "ui/gl/ca_renderer_layer_params.h" #include "ui/gl/dc_renderer_layer_params.h" #include "ui/gl/gl_version_info.h" namespace gpu { namespace gles2 { namespace { template <typename ClientType, typename ServiceType, typename GenFunction> error::Error GenHelper(GLsizei n, const volatile ClientType* client_ids, ClientServiceMap<ClientType, ServiceType>* id_map, GenFunction gen_function) { DCHECK(n >= 0); std::vector<ClientType> client_ids_copy(client_ids, client_ids + n); for (GLsizei ii = 0; ii < n; ++ii) { if (id_map->HasClientID(client_ids_copy[ii])) { return error::kInvalidArguments; } } if (!CheckUniqueAndNonNullIds(n, client_ids_copy.data())) { return error::kInvalidArguments; } std::vector<ServiceType> service_ids(n, 0); gen_function(n, service_ids.data()); for (GLsizei ii = 0; ii < n; ++ii) { id_map->SetIDMapping(client_ids_copy[ii], service_ids[ii]); } return error::kNoError; } template <typename ClientType, typename ServiceType, typename GenFunction> error::Error CreateHelper(ClientType client_id, ClientServiceMap<ClientType, ServiceType>* id_map, GenFunction create_function) { if (id_map->HasClientID(client_id)) { return error::kInvalidArguments; } ServiceType service_id = create_function(); id_map->SetIDMapping(client_id, service_id); return error::kNoError; } template <typename ClientType, typename ServiceType, typename DeleteFunction> error::Error DeleteHelper(GLsizei n, const volatile ClientType* client_ids, ClientServiceMap<ClientType, ServiceType>* id_map, DeleteFunction delete_function) { DCHECK(n >= 0); std::vector<ServiceType> service_ids(n, 0); for (GLsizei ii = 0; ii < n; ++ii) { ClientType client_id = client_ids[ii]; // Don't pass service IDs of objects with a client ID of 0. They are // emulated and should not be deleteable if (client_id != 0) { service_ids[ii] = id_map->GetServiceIDOrInvalid(client_id); id_map->RemoveClientID(client_id); } } delete_function(n, service_ids.data()); return error::kNoError; } template <typename ClientType, typename ServiceType, typename DeleteFunction> error::Error DeleteHelper(ClientType client_id, ClientServiceMap<ClientType, ServiceType>* id_map, DeleteFunction delete_function) { delete_function(id_map->GetServiceIDOrInvalid(client_id)); id_map->RemoveClientID(client_id); return error::kNoError; } template <typename ClientType, typename ServiceType, typename GenFunction> ServiceType GetServiceID(ClientType client_id, ClientServiceMap<ClientType, ServiceType>* id_map, bool create_if_missing, GenFunction gen_function) { ServiceType service_id = id_map->invalid_service_id(); if (id_map->GetServiceID(client_id, &service_id)) { return service_id; } if (create_if_missing) { service_id = gen_function(); id_map->SetIDMapping(client_id, service_id); return service_id; } return id_map->invalid_service_id(); } GLuint GetTextureServiceID(gl::GLApi* api, GLuint client_id, PassthroughResources* resources, bool create_if_missing) { GLuint service_id = resources->texture_id_map.invalid_service_id(); if (resources->texture_id_map.GetServiceID(client_id, &service_id)) { return service_id; } if (create_if_missing) { service_id = 0; api->glGenTexturesFn(1, &service_id); resources->texture_id_map.SetIDMapping(client_id, service_id); return service_id; } return resources->texture_id_map.invalid_service_id(); } GLuint GetBufferServiceID(gl::GLApi* api, GLuint client_id, PassthroughResources* resources, bool create_if_missing) { return GetServiceID(client_id, &resources->buffer_id_map, create_if_missing, [api]() { GLuint service_id = 0; api->glGenBuffersARBFn(1, &service_id); return service_id; }); } GLuint GetRenderbufferServiceID(gl::GLApi* api, GLuint client_id, PassthroughResources* resources, bool create_if_missing) { return GetServiceID(client_id, &resources->renderbuffer_id_map, create_if_missing, [api]() { GLuint service_id = 0; api->glGenRenderbuffersEXTFn(1, &service_id); return service_id; }); } GLuint GetFramebufferServiceID(gl::GLApi* api, GLuint client_id, ClientServiceMap<GLuint, GLuint>* id_map, bool create_if_missing) { return GetServiceID(client_id, id_map, create_if_missing, [api]() { GLuint service_id = 0; api->glGenFramebuffersEXTFn(1, &service_id); return service_id; }); } GLuint GetTransformFeedbackServiceID(GLuint client_id, ClientServiceMap<GLuint, GLuint>* id_map) { return id_map->GetServiceIDOrInvalid(client_id); } GLuint GetVertexArrayServiceID(GLuint client_id, ClientServiceMap<GLuint, GLuint>* id_map) { return id_map->GetServiceIDOrInvalid(client_id); } GLuint GetProgramServiceID(GLuint client_id, PassthroughResources* resources) { return resources->program_id_map.GetServiceIDOrInvalid(client_id); } GLuint GetShaderServiceID(GLuint client_id, PassthroughResources* resources) { return resources->shader_id_map.GetServiceIDOrInvalid(client_id); } GLuint GetQueryServiceID(GLuint client_id, ClientServiceMap<GLuint, GLuint>* id_map) { return id_map->GetServiceIDOrInvalid(client_id); } GLuint GetSamplerServiceID(GLuint client_id, PassthroughResources* resources) { return resources->sampler_id_map.GetServiceIDOrInvalid(client_id); } GLsync GetSyncServiceID(GLuint client_id, PassthroughResources* resources) { return reinterpret_cast<GLsync>( resources->sync_id_map.GetServiceIDOrInvalid(client_id)); } template <typename T> void InsertValueIntoBuffer(std::vector<uint8_t>* data, const T& value, size_t offset) { DCHECK_LE(offset + sizeof(T), data->size()); memcpy(data->data() + offset, &value, sizeof(T)); } template <typename T> void AppendValueToBuffer(std::vector<uint8_t>* data, const T& value) { const base::CheckedNumeric<size_t> old_size = data->size(); data->resize((old_size + sizeof(T)).ValueOrDie()); memcpy(data->data() + old_size.ValueOrDie(), &value, sizeof(T)); } void AppendStringToBuffer(std::vector<uint8_t>* data, const char* str, size_t len) { const base::CheckedNumeric<size_t> old_size = data->size(); data->resize((old_size + len).ValueOrDie()); memcpy(data->data() + old_size.ValueOrDie(), str, len); } void AssignGLRectangle(GLint rectangle[4], GLint x, GLint y, GLint width, GLint height) { rectangle[0] = x; rectangle[1] = y; rectangle[2] = width; rectangle[3] = height; } // In order to minimize the amount of data copied, the command buffer client // unpack pixels before sending the glTex[Sub]Image[2|3]D calls. The only // parameter it doesn't handle is the alignment. Resetting the unpack state is // not needed when uploading from a PBO and for compressed formats which the // client sends untouched. This class handles resetting and restoring the unpack // state. // TODO(cwallez@chromium.org) it would be nicer to handle the resetting / // restoring on the client side. class ScopedUnpackStateButAlignmentReset { public: ScopedUnpackStateButAlignmentReset(gl::GLApi* api, bool enable, bool is_3d) : api_(api) { if (!enable) { return; } api_->glGetIntegervFn(GL_UNPACK_SKIP_PIXELS, &skip_pixels_); api_->glPixelStoreiFn(GL_UNPACK_SKIP_PIXELS, 0); api_->glGetIntegervFn(GL_UNPACK_SKIP_ROWS, &skip_rows_); api_->glPixelStoreiFn(GL_UNPACK_SKIP_ROWS, 0); api_->glGetIntegervFn(GL_UNPACK_ROW_LENGTH, &row_length_); api_->glPixelStoreiFn(GL_UNPACK_ROW_LENGTH, 0); if (is_3d) { api_->glGetIntegervFn(GL_UNPACK_SKIP_IMAGES, &skip_images_); api_->glPixelStoreiFn(GL_UNPACK_SKIP_IMAGES, 0); api_->glGetIntegervFn(GL_UNPACK_IMAGE_HEIGHT, &image_height_); api_->glPixelStoreiFn(GL_UNPACK_IMAGE_HEIGHT, 0); } } ~ScopedUnpackStateButAlignmentReset() { if (skip_pixels_ != 0) { api_->glPixelStoreiFn(GL_UNPACK_SKIP_PIXELS, skip_pixels_); } if (skip_rows_ != 0) { api_->glPixelStoreiFn(GL_UNPACK_SKIP_ROWS, skip_rows_); } if (skip_images_ != 0) { api_->glPixelStoreiFn(GL_UNPACK_SKIP_IMAGES, skip_images_); } if (row_length_ != 0) { api_->glPixelStoreiFn(GL_UNPACK_ROW_LENGTH, row_length_); } if (image_height_ != 0) { api_->glPixelStoreiFn(GL_UNPACK_IMAGE_HEIGHT, image_height_); } } private: gl::GLApi* api_; GLint skip_pixels_ = 0; GLint skip_rows_ = 0; GLint skip_images_ = 0; GLint row_length_ = 0; GLint image_height_ = 0; }; class ScopedPackStateRowLengthReset { public: ScopedPackStateRowLengthReset(gl::GLApi* api, bool enable) : api_(api) { if (!enable) { return; } api_->glGetIntegervFn(GL_PACK_ROW_LENGTH, &row_length_); api_->glPixelStoreiFn(GL_PACK_ROW_LENGTH, 0); } ~ScopedPackStateRowLengthReset() { if (row_length_ != 0) { api_->glPixelStoreiFn(GL_PACK_ROW_LENGTH, row_length_); } } private: gl::GLApi* api_; GLint row_length_ = 0; }; bool ModifyAttachmentForEmulatedFramebuffer(GLenum* attachment) { switch (*attachment) { case GL_BACK: *attachment = GL_COLOR_ATTACHMENT0; return true; case GL_DEPTH: *attachment = GL_DEPTH_ATTACHMENT; return true; case GL_STENCIL: *attachment = GL_STENCIL_ATTACHMENT; return true; default: return false; } } bool ModifyAttachmentsForEmulatedFramebuffer(std::vector<GLenum>* attachments) { for (GLenum& attachment : *attachments) { if (!ModifyAttachmentForEmulatedFramebuffer(&attachment)) { return false; } } return true; } } // anonymous namespace // Implementations of commands error::Error GLES2DecoderPassthroughImpl::DoActiveTexture(GLenum texture) { CheckErrorCallbackState(); api()->glActiveTextureFn(texture); if (CheckErrorCallbackState()) { return error::kNoError; } active_texture_unit_ = static_cast<size_t>(texture) - GL_TEXTURE0; DCHECK(active_texture_unit_ < kMaxTextureUnits); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoAttachShader(GLuint program, GLuint shader) { api()->glAttachShaderFn(GetProgramServiceID(program, resources_), GetShaderServiceID(shader, resources_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindAttribLocation( GLuint program, GLuint index, const char* name) { api()->glBindAttribLocationFn(GetProgramServiceID(program, resources_), index, name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindBuffer(GLenum target, GLuint buffer) { CheckErrorCallbackState(); api()->glBindBufferFn(target, GetBufferServiceID(api(), buffer, resources_, bind_generates_resource_)); if (CheckErrorCallbackState()) { return error::kNoError; } DCHECK(bound_buffers_.find(target) != bound_buffers_.end()); bound_buffers_[target] = buffer; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindBufferBase(GLenum target, GLuint index, GLuint buffer) { CheckErrorCallbackState(); api()->glBindBufferBaseFn( target, index, GetBufferServiceID(api(), buffer, resources_, bind_generates_resource_)); if (CheckErrorCallbackState()) { return error::kNoError; } DCHECK(bound_buffers_.find(target) != bound_buffers_.end()); bound_buffers_[target] = buffer; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) { CheckErrorCallbackState(); api()->glBindBufferRangeFn( target, index, GetBufferServiceID(api(), buffer, resources_, bind_generates_resource_), offset, size); if (CheckErrorCallbackState()) { return error::kNoError; } DCHECK(bound_buffers_.find(target) != bound_buffers_.end()); bound_buffers_[target] = buffer; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindFramebuffer( GLenum target, GLuint framebuffer) { CheckErrorCallbackState(); api()->glBindFramebufferEXTFn( target, GetFramebufferServiceID(api(), framebuffer, &framebuffer_id_map_, bind_generates_resource_)); if (CheckErrorCallbackState()) { return error::kNoError; } // Update tracking of the bound framebuffer bool draw_framebuffer_changed = false; switch (target) { case GL_FRAMEBUFFER_EXT: draw_framebuffer_changed = true; bound_draw_framebuffer_ = framebuffer; bound_read_framebuffer_ = framebuffer; break; case GL_DRAW_FRAMEBUFFER: draw_framebuffer_changed = true; bound_draw_framebuffer_ = framebuffer; break; case GL_READ_FRAMEBUFFER: bound_read_framebuffer_ = framebuffer; break; default: NOTREACHED(); break; } // Resync the surface offset if the draw framebuffer has changed to or from // the default framebuffer if (draw_framebuffer_changed && bound_draw_framebuffer_ != framebuffer && (bound_draw_framebuffer_ == 0 || framebuffer == 0)) { ApplySurfaceDrawOffset(); } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindImageTexture(GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format) { api()->glBindImageTextureEXTFn( unit, GetTextureServiceID(api(), texture, resources_, bind_generates_resource_), level, layered, layer, access, format); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindRenderbuffer( GLenum target, GLuint renderbuffer) { api()->glBindRenderbufferEXTFn( target, GetRenderbufferServiceID(api(), renderbuffer, resources_, bind_generates_resource_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindSampler(GLuint unit, GLuint sampler) { api()->glBindSamplerFn(unit, GetSamplerServiceID(sampler, resources_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindTexture(GLenum target, GLuint texture) { GLuint service_id = GetTextureServiceID(api(), texture, resources_, bind_generates_resource_); CheckErrorCallbackState(); api()->glBindTextureFn(target, service_id); // Only update tracking if no error was generated in the bind call if (CheckErrorCallbackState()) { return error::kNoError; } // Track the currently bound textures DCHECK(GLenumToTextureTarget(target) != TextureTarget::kUnkown); scoped_refptr<TexturePassthrough> texture_passthrough = nullptr; // If there was anything bound that required an image bind / copy, // forget it since it's no longer bound to a sampler. RemovePendingBindingTexture(target, active_texture_unit_); if (service_id != 0) { // Create a new texture object to track this texture if (!resources_->texture_object_map.GetServiceID(texture, &texture_passthrough) || texture_passthrough == nullptr) { texture_passthrough = new TexturePassthrough(service_id, target); resources_->texture_object_map.SetIDMapping(texture, texture_passthrough); } else { // Shouldn't be possible to get here if this texture has a different // target than the one it was just bound to DCHECK(texture_passthrough->target() == target); } DCHECK(texture_passthrough); // If |texture_passthrough| has a bound image that requires processing // before a draw, then keep track of it. if (texture_passthrough->is_bind_pending()) { textures_pending_binding_.emplace_back(target, active_texture_unit_, texture_passthrough->AsWeakPtr()); } } BoundTexture* bound_texture = &bound_textures_[static_cast<size_t>(GLenumToTextureTarget(target))] [active_texture_unit_]; bound_texture->client_id = texture; bound_texture->texture = std::move(texture_passthrough); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindTransformFeedback( GLenum target, GLuint transformfeedback) { api()->glBindTransformFeedbackFn( target, GetTransformFeedbackServiceID(transformfeedback, &transform_feedback_id_map_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { api()->glBlendColorFn(red, green, blue, alpha); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBlendEquation(GLenum mode) { api()->glBlendEquationFn(mode); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBlendEquationSeparate( GLenum modeRGB, GLenum modeAlpha) { api()->glBlendEquationSeparateFn(modeRGB, modeAlpha); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBlendFunc(GLenum sfactor, GLenum dfactor) { api()->glBlendFuncFn(sfactor, dfactor); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBlendFuncSeparate(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha) { api()->glBlendFuncSeparateFn(srcRGB, dstRGB, srcAlpha, dstAlpha); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBufferData(GLenum target, GLsizeiptr size, const void* data, GLenum usage) { CheckErrorCallbackState(); api()->glBufferDataFn(target, size, data, usage); if (CheckErrorCallbackState()) { return error::kNoError; } // Calling buffer data on a mapped buffer will implicitly unmap it resources_->mapped_buffer_map.erase(bound_buffers_[target]); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const void* data) { api()->glBufferSubDataFn(target, offset, size, data); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCheckFramebufferStatus( GLenum target, uint32_t* result) { *result = api()->glCheckFramebufferStatusEXTFn(target); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoClear(GLbitfield mask) { api()->glClearFn(mask); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoClearBufferfi(GLenum buffer, GLint drawbuffers, GLfloat depth, GLint stencil) { api()->glClearBufferfiFn(buffer, drawbuffers, depth, stencil); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoClearBufferfv( GLenum buffer, GLint drawbuffers, const volatile GLfloat* value) { api()->glClearBufferfvFn(buffer, drawbuffers, const_cast<const GLfloat*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoClearBufferiv( GLenum buffer, GLint drawbuffers, const volatile GLint* value) { api()->glClearBufferivFn(buffer, drawbuffers, const_cast<const GLint*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoClearBufferuiv( GLenum buffer, GLint drawbuffers, const volatile GLuint* value) { api()->glClearBufferuivFn(buffer, drawbuffers, const_cast<const GLuint*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { api()->glClearColorFn(red, green, blue, alpha); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoClearDepthf(GLclampf depth) { api()->glClearDepthfFn(depth); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoClearStencil(GLint s) { api()->glClearStencilFn(s); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoClientWaitSync(GLuint sync, GLbitfield flags, GLuint64 timeout, GLenum* result) { // Force GL_SYNC_FLUSH_COMMANDS_BIT to avoid infinite wait. GLbitfield modified_flags = flags | GL_SYNC_FLUSH_COMMANDS_BIT; *result = api()->glClientWaitSyncFn(GetSyncServiceID(sync, resources_), modified_flags, timeout); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) { api()->glColorMaskFn(red, green, blue, alpha); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCompileShader(GLuint shader) { #if defined(OS_MACOSX) // On mac we need this extension to support IOSurface backbuffers, but we // don't want it exposed to WebGL user shaders. Temporarily disable it during // shader compilation. if (feature_info_->IsWebGLContext()) api()->glDisableExtensionANGLEFn("GL_ANGLE_texture_rectangle"); #endif api()->glCompileShaderFn(GetShaderServiceID(shader, resources_)); #if defined(OS_MACOSX) if (feature_info_->IsWebGLContext()) api()->glRequestExtensionANGLEFn("GL_ANGLE_texture_rectangle"); #endif return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCompressedTexImage2D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei image_size, GLsizei data_size, const void* data) { CheckErrorCallbackState(); api()->glCompressedTexImage2DRobustANGLEFn(target, level, internalformat, width, height, border, image_size, data_size, data); if (CheckErrorCallbackState()) { return error::kNoError; } UpdateTextureSizeFromTarget(target); // Texture data upload can be slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCompressedTexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei image_size, GLsizei data_size, const void* data) { api()->glCompressedTexSubImage2DRobustANGLEFn(target, level, xoffset, yoffset, width, height, format, image_size, data_size, data); // Texture data upload can be slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCompressedTexImage3D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei image_size, GLsizei data_size, const void* data) { CheckErrorCallbackState(); api()->glCompressedTexImage3DRobustANGLEFn(target, level, internalformat, width, height, depth, border, image_size, data_size, data); if (CheckErrorCallbackState()) { return error::kNoError; } UpdateTextureSizeFromTarget(target); // Texture data upload can be slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCompressedTexSubImage3D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei image_size, GLsizei data_size, const void* data) { api()->glCompressedTexSubImage3DRobustANGLEFn( target, level, xoffset, yoffset, zoffset, width, height, depth, format, image_size, data_size, data); // Texture data upload can be slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoContextVisibilityHintCHROMIUM( GLboolean visibility) { if (feature_info_->IsWebGLContext()) context_->SetVisibility(visibility == GL_TRUE); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCopyBufferSubData( GLenum readtarget, GLenum writetarget, GLintptr readoffset, GLintptr writeoffset, GLsizeiptr size) { api()->glCopyBufferSubDataFn(readtarget, writetarget, readoffset, writeoffset, size); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCopyTexImage2D( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) { CheckErrorCallbackState(); api()->glCopyTexImage2DFn(target, level, internalformat, x, y, width, height, border); if (CheckErrorCallbackState()) { return error::kNoError; } UpdateTextureSizeFromTarget(target); // Texture data copying can be slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) { api()->glCopyTexSubImage2DFn(target, level, xoffset, yoffset, x, y, width, height); // Texture data copying can be slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) { api()->glCopyTexSubImage3DFn(target, level, xoffset, yoffset, zoffset, x, y, width, height); // Texture data copying can be slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCreateProgram(GLuint client_id) { return CreateHelper(client_id, &resources_->program_id_map, [this]() { return api()->glCreateProgramFn(); }); } error::Error GLES2DecoderPassthroughImpl::DoCreateShader(GLenum type, GLuint client_id) { return CreateHelper(client_id, &resources_->shader_id_map, [this, type]() { return api()->glCreateShaderFn(type); }); } error::Error GLES2DecoderPassthroughImpl::DoCullFace(GLenum mode) { api()->glCullFaceFn(mode); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDeleteBuffers( GLsizei n, const volatile GLuint* buffers) { // DeleteHelper requires that n is non-negative because it allocates a copy of // the IDs if (n < 0) { InsertError(GL_INVALID_VALUE, "n cannot be negative."); return error::kNoError; } std::vector<GLuint> service_ids(n, 0); for (GLsizei ii = 0; ii < n; ++ii) { GLuint client_id = buffers[ii]; // Update the bound and mapped buffer state tracking for (auto& buffer_binding : bound_buffers_) { if (buffer_binding.second == client_id) { buffer_binding.second = 0; } resources_->mapped_buffer_map.erase(client_id); } service_ids[ii] = resources_->buffer_id_map.GetServiceIDOrInvalid(client_id); resources_->buffer_id_map.RemoveClientID(client_id); auto is_the_deleted_buffer = [client_id](const auto& update) { return update.first == client_id; }; base::EraseIf(buffer_shadow_updates_, is_the_deleted_buffer); for (PendingQuery& pending_query : pending_queries_) { base::EraseIf(pending_query.buffer_shadow_updates, is_the_deleted_buffer); } } api()->glDeleteBuffersARBFn(n, service_ids.data()); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDeleteFramebuffers( GLsizei n, const volatile GLuint* framebuffers) { // DeleteHelper requires that n is non-negative because it allocates a copy of // the IDs if (n < 0) { InsertError(GL_INVALID_VALUE, "n cannot be negative."); return error::kNoError; } std::vector<GLuint> framebuffers_copy(framebuffers, framebuffers + n); // If a bound framebuffer is deleted, it's binding is reset to 0. In the case // of an emulated default framebuffer, bind the emulated one. for (GLuint framebuffer : framebuffers_copy) { if (framebuffer == bound_draw_framebuffer_) { bound_draw_framebuffer_ = 0; if (emulated_back_buffer_) { api()->glBindFramebufferEXTFn( GL_DRAW_FRAMEBUFFER, emulated_back_buffer_->framebuffer_service_id); } // Update the surface offset if the bound draw framebuffer is deleted ApplySurfaceDrawOffset(); } if (framebuffer == bound_read_framebuffer_) { bound_read_framebuffer_ = 0; if (emulated_back_buffer_) { api()->glBindFramebufferEXTFn( GL_READ_FRAMEBUFFER, emulated_back_buffer_->framebuffer_service_id); } } } return DeleteHelper(n, framebuffers_copy.data(), &framebuffer_id_map_, [this](GLsizei n, GLuint* framebuffers) { api()->glDeleteFramebuffersEXTFn(n, framebuffers); }); } error::Error GLES2DecoderPassthroughImpl::DoDeleteProgram(GLuint program) { return DeleteHelper( program, &resources_->program_id_map, [this](GLuint program) { api()->glDeleteProgramFn(program); }); } error::Error GLES2DecoderPassthroughImpl::DoDeleteRenderbuffers( GLsizei n, const volatile GLuint* renderbuffers) { // DeleteHelper requires that n is non-negative because it allocates a copy of // the IDs if (n < 0) { InsertError(GL_INVALID_VALUE, "n cannot be negative."); return error::kNoError; } return DeleteHelper(n, renderbuffers, &resources_->renderbuffer_id_map, [this](GLsizei n, GLuint* renderbuffers) { api()->glDeleteRenderbuffersEXTFn(n, renderbuffers); }); } error::Error GLES2DecoderPassthroughImpl::DoDeleteSamplers( GLsizei n, const volatile GLuint* samplers) { // DeleteHelper requires that n is non-negative because it allocates a copy of // the IDs if (n < 0) { InsertError(GL_INVALID_VALUE, "n cannot be negative."); return error::kNoError; } return DeleteHelper(n, samplers, &resources_->sampler_id_map, [this](GLsizei n, GLuint* samplers) { api()->glDeleteSamplersFn(n, samplers); }); } error::Error GLES2DecoderPassthroughImpl::DoDeleteSync(GLuint sync) { return DeleteHelper(sync, &resources_->sync_id_map, [this](uintptr_t sync) { api()->glDeleteSyncFn(reinterpret_cast<GLsync>(sync)); }); } error::Error GLES2DecoderPassthroughImpl::DoDeleteShader(GLuint shader) { return DeleteHelper( shader, &resources_->shader_id_map, [this](GLuint shader) { api()->glDeleteShaderFn(shader); }); } error::Error GLES2DecoderPassthroughImpl::DoDeleteTextures( GLsizei n, const volatile GLuint* textures) { // DeleteHelper requires that n is non-negative because it allocates a copy of // the IDs if (n < 0) { InsertError(GL_INVALID_VALUE, "n cannot be negative."); return error::kNoError; } // Textures that are currently associated with a mailbox are stored in the // texture_object_map_ and are deleted automatically when they are // unreferenced. Only delete textures that are not in this map. std::vector<GLuint> non_mailbox_client_ids; for (GLsizei ii = 0; ii < n; ++ii) { GLuint client_id = textures[ii]; scoped_refptr<TexturePassthrough> texture = nullptr; if (!resources_->texture_object_map.GetServiceID(client_id, &texture) || texture == nullptr) { // Delete with DeleteHelper non_mailbox_client_ids.push_back(client_id); } else { // Deleted when unreferenced resources_->texture_id_map.RemoveClientID(client_id); resources_->texture_object_map.RemoveClientID(client_id); resources_->texture_shared_image_map.erase(client_id); UpdateTextureBinding(texture->target(), client_id, nullptr); } // Notify the discardable manager that the texture is deleted group_->passthrough_discardable_manager()->DeleteTexture(client_id, group_.get()); } return DeleteHelper( non_mailbox_client_ids.size(), non_mailbox_client_ids.data(), &resources_->texture_id_map, [this](GLsizei n, GLuint* textures) { api()->glDeleteTexturesFn(n, textures); }); } error::Error GLES2DecoderPassthroughImpl::DoDeleteTransformFeedbacks( GLsizei n, const volatile GLuint* ids) { // DeleteHelper requires that n is non-negative because it allocates a copy of // the IDs if (n < 0) { InsertError(GL_INVALID_VALUE, "n cannot be negative."); return error::kNoError; } return DeleteHelper(n, ids, &transform_feedback_id_map_, [this](GLsizei n, GLuint* transform_feedbacks) { api()->glDeleteTransformFeedbacksFn( n, transform_feedbacks); }); } error::Error GLES2DecoderPassthroughImpl::DoDepthFunc(GLenum func) { api()->glDepthFuncFn(func); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDepthMask(GLboolean flag) { api()->glDepthMaskFn(flag); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDepthRangef(GLclampf zNear, GLclampf zFar) { api()->glDepthRangefFn(zNear, zFar); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDetachShader(GLuint program, GLuint shader) { api()->glDetachShaderFn(GetProgramServiceID(program, resources_), GetShaderServiceID(shader, resources_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDisable(GLenum cap) { api()->glDisableFn(cap); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDisableVertexAttribArray( GLuint index) { api()->glDisableVertexAttribArrayFn(index); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDispatchCompute( GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z) { BindPendingImagesForSamplersIfNeeded(); api()->glDispatchComputeFn(num_groups_x, num_groups_y, num_groups_z); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDispatchComputeIndirect( GLintptr offset) { BindPendingImagesForSamplersIfNeeded(); // TODO(jiajie.hu@intel.com): Use glDispatchComputeIndirectRobustANGLEFn() // when it's ready in ANGLE. api()->glDispatchComputeIndirectFn(offset); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDrawArrays(GLenum mode, GLint first, GLsizei count) { BindPendingImagesForSamplersIfNeeded(); api()->glDrawArraysFn(mode, first, count); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDrawArraysIndirect( GLenum mode, const void* offset) { BindPendingImagesForSamplersIfNeeded(); // TODO(jiajie.hu@intel.com): Use glDrawArraysIndirectRobustANGLEFn() when // it's ready in ANGLE. api()->glDrawArraysIndirectFn(mode, offset); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDrawElements(GLenum mode, GLsizei count, GLenum type, const void* indices) { BindPendingImagesForSamplersIfNeeded(); api()->glDrawElementsFn(mode, count, type, indices); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDrawElementsIndirect( GLenum mode, GLenum type, const void* offset) { BindPendingImagesForSamplersIfNeeded(); // TODO(jiajie.hu@intel.com): Use glDrawElementsIndirectRobustANGLEFn() when // it's ready in ANGLE. api()->glDrawElementsIndirectFn(mode, type, offset); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoEnable(GLenum cap) { api()->glEnableFn(cap); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoEnableVertexAttribArray( GLuint index) { api()->glEnableVertexAttribArrayFn(index); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoFenceSync(GLenum condition, GLbitfield flags, GLuint client_id) { if (resources_->sync_id_map.HasClientID(client_id)) { return error::kInvalidArguments; } CheckErrorCallbackState(); GLsync service_id = api()->glFenceSyncFn(condition, flags); if (CheckErrorCallbackState()) { return error::kNoError; } resources_->sync_id_map.SetIDMapping(client_id, reinterpret_cast<uintptr_t>(service_id)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoFinish() { api()->glFinishFn(); error::Error error = ProcessReadPixels(true); if (error != error::kNoError) { return error; } return ProcessQueries(true); } error::Error GLES2DecoderPassthroughImpl::DoFlush() { api()->glFlushFn(); error::Error error = ProcessReadPixels(false); if (error != error::kNoError) { return error; } return ProcessQueries(false); } error::Error GLES2DecoderPassthroughImpl::DoFlushMappedBufferRange( GLenum target, GLintptr offset, GLsizeiptr size) { auto bound_buffers_iter = bound_buffers_.find(target); if (bound_buffers_iter == bound_buffers_.end() || bound_buffers_iter->second == 0) { InsertError(GL_INVALID_OPERATION, "No buffer bound to this target."); return error::kNoError; } GLuint client_buffer = bound_buffers_iter->second; auto mapped_buffer_info_iter = resources_->mapped_buffer_map.find(client_buffer); if (mapped_buffer_info_iter == resources_->mapped_buffer_map.end()) { InsertError(GL_INVALID_OPERATION, "Buffer is not mapped."); return error::kNoError; } const MappedBuffer& map_info = mapped_buffer_info_iter->second; if (offset < 0) { InsertError(GL_INVALID_VALUE, "Offset cannot be negative."); return error::kNoError; } if (size < 0) { InsertError(GL_INVALID_VALUE, "Size cannot be negative."); return error::kNoError; } base::CheckedNumeric<size_t> range_start(offset); base::CheckedNumeric<size_t> range_end = offset + size; if (!range_end.IsValid() || range_end.ValueOrDefault(0) > map_info.size) { InsertError(GL_INVALID_OPERATION, "Flush range is not within the original mapping size."); return error::kNoError; } uint8_t* mem = GetSharedMemoryAs<uint8_t*>( map_info.data_shm_id, map_info.data_shm_offset, map_info.size); if (!mem) { return error::kOutOfBounds; } memcpy(map_info.map_ptr + offset, mem + offset, size); api()->glFlushMappedBufferRangeFn(target, offset, size); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoFramebufferParameteri(GLenum target, GLenum pname, GLint param) { api()->glFramebufferParameteriFn(target, pname, param); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoFramebufferRenderbuffer( GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) { if (IsEmulatedFramebufferBound(target)) { InsertError(GL_INVALID_OPERATION, "Cannot change the attachments of the default framebuffer."); return error::kNoError; } api()->glFramebufferRenderbufferEXTFn( target, attachment, renderbuffertarget, GetRenderbufferServiceID(api(), renderbuffer, resources_, false)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoFramebufferTexture2D( GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) { if (IsEmulatedFramebufferBound(target)) { InsertError(GL_INVALID_OPERATION, "Cannot change the attachments of the default framebuffer."); return error::kNoError; } BindPendingImageForClientIDIfNeeded(texture); api()->glFramebufferTexture2DEXTFn( target, attachment, textarget, GetTextureServiceID(api(), texture, resources_, false), level); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoFramebufferTextureLayer( GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer) { if (IsEmulatedFramebufferBound(target)) { InsertError(GL_INVALID_OPERATION, "Cannot change the attachments of the default framebuffer."); return error::kNoError; } api()->glFramebufferTextureLayerFn( target, attachment, GetTextureServiceID(api(), texture, resources_, false), level, layer); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoFramebufferTextureMultiviewOVR( GLenum target, GLenum attachment, GLuint texture, GLint level, GLint base_view_index, GLsizei num_views) { if (IsEmulatedFramebufferBound(target)) { InsertError(GL_INVALID_OPERATION, "Cannot change the attachments of the default framebuffer."); return error::kNoError; } api()->glFramebufferTextureMultiviewOVRFn( target, attachment, GetTextureServiceID(api(), texture, resources_, false), level, base_view_index, num_views); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoFrontFace(GLenum mode) { api()->glFrontFaceFn(mode); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGenBuffers( GLsizei n, volatile GLuint* buffers) { return GenHelper(n, buffers, &resources_->buffer_id_map, [this](GLsizei n, GLuint* buffers) { api()->glGenBuffersARBFn(n, buffers); }); } error::Error GLES2DecoderPassthroughImpl::DoGenerateMipmap(GLenum target) { api()->glGenerateMipmapEXTFn(target); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGenFramebuffers( GLsizei n, volatile GLuint* framebuffers) { return GenHelper(n, framebuffers, &framebuffer_id_map_, [this](GLsizei n, GLuint* framebuffers) { api()->glGenFramebuffersEXTFn(n, framebuffers); }); } error::Error GLES2DecoderPassthroughImpl::DoGenRenderbuffers( GLsizei n, volatile GLuint* renderbuffers) { return GenHelper(n, renderbuffers, &resources_->renderbuffer_id_map, [this](GLsizei n, GLuint* renderbuffers) { api()->glGenRenderbuffersEXTFn(n, renderbuffers); }); } error::Error GLES2DecoderPassthroughImpl::DoGenSamplers( GLsizei n, volatile GLuint* samplers) { return GenHelper(n, samplers, &resources_->sampler_id_map, [this](GLsizei n, GLuint* samplers) { api()->glGenSamplersFn(n, samplers); }); } error::Error GLES2DecoderPassthroughImpl::DoGenTextures( GLsizei n, volatile GLuint* textures) { return GenHelper(n, textures, &resources_->texture_id_map, [this](GLsizei n, GLuint* textures) { api()->glGenTexturesFn(n, textures); }); } error::Error GLES2DecoderPassthroughImpl::DoGenTransformFeedbacks( GLsizei n, volatile GLuint* ids) { return GenHelper(n, ids, &transform_feedback_id_map_, [this](GLsizei n, GLuint* transform_feedbacks) { api()->glGenTransformFeedbacksFn(n, transform_feedbacks); }); } error::Error GLES2DecoderPassthroughImpl::DoGetActiveAttrib(GLuint program, GLuint index, GLint* size, GLenum* type, std::string* name, int32_t* success) { CheckErrorCallbackState(); GLuint service_id = GetProgramServiceID(program, resources_); GLint active_attribute_max_length = 0; api()->glGetProgramivFn(service_id, GL_ACTIVE_ATTRIBUTE_MAX_LENGTH, &active_attribute_max_length); if (CheckErrorCallbackState()) { *success = 0; return error::kNoError; } std::vector<char> name_buffer(active_attribute_max_length, 0); api()->glGetActiveAttribFn(service_id, index, name_buffer.size(), nullptr, size, type, name_buffer.data()); *name = std::string(name_buffer.data()); *success = CheckErrorCallbackState() ? 0 : 1; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetActiveUniform(GLuint program, GLuint index, GLint* size, GLenum* type, std::string* name, int32_t* success) { CheckErrorCallbackState(); GLuint service_id = GetProgramServiceID(program, resources_); GLint active_uniform_max_length = 0; api()->glGetProgramivFn(service_id, GL_ACTIVE_UNIFORM_MAX_LENGTH, &active_uniform_max_length); if (CheckErrorCallbackState()) { *success = 0; return error::kNoError; } std::vector<char> name_buffer(active_uniform_max_length, 0); api()->glGetActiveUniformFn(service_id, index, name_buffer.size(), nullptr, size, type, name_buffer.data()); *name = std::string(name_buffer.data()); *success = CheckErrorCallbackState() ? 0 : 1; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetActiveUniformBlockiv( GLuint program, GLuint index, GLenum pname, GLsizei bufSize, GLsizei* length, GLint* params) { api()->glGetActiveUniformBlockivRobustANGLEFn( GetProgramServiceID(program, resources_), index, pname, bufSize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetActiveUniformBlockName( GLuint program, GLuint index, std::string* name) { CheckErrorCallbackState(); GLuint program_service_id = GetProgramServiceID(program, resources_); GLint max_name_length = 0; api()->glGetProgramivFn(program_service_id, GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH, &max_name_length); if (CheckErrorCallbackState()) { return error::kNoError; } std::vector<GLchar> buffer(max_name_length, 0); GLsizei length = 0; api()->glGetActiveUniformBlockNameFn(program_service_id, index, max_name_length, &length, buffer.data()); DCHECK(length <= max_name_length); *name = length > 0 ? std::string(buffer.data(), length) : std::string(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetActiveUniformsiv( GLuint program, GLsizei count, const GLuint* indices, GLenum pname, GLint* params) { api()->glGetActiveUniformsivFn(GetProgramServiceID(program, resources_), count, indices, pname, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetAttachedShaders( GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) { api()->glGetAttachedShadersFn(GetProgramServiceID(program, resources_), maxcount, count, shaders); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetAttribLocation(GLuint program, const char* name, GLint* result) { *result = api()->glGetAttribLocationFn( GetProgramServiceID(program, resources_), name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetBooleanv(GLenum pname, GLsizei bufsize, GLsizei* length, GLboolean* params) { return GetNumericHelper(pname, bufsize, length, params, [this](GLenum pname, GLsizei bufsize, GLsizei* length, GLboolean* params) { api()->glGetBooleanvRobustANGLEFn(pname, bufsize, length, params); }); } error::Error GLES2DecoderPassthroughImpl::DoGetBufferParameteri64v( GLenum target, GLenum pname, GLsizei bufsize, GLsizei* length, GLint64* params) { CheckErrorCallbackState(); api()->glGetBufferParameteri64vRobustANGLEFn(target, pname, bufsize, length, params); if (CheckErrorCallbackState()) { return error::kNoError; } PatchGetBufferResults(target, pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetBufferParameteriv( GLenum target, GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { CheckErrorCallbackState(); api()->glGetBufferParameterivRobustANGLEFn(target, pname, bufsize, length, params); if (CheckErrorCallbackState()) { return error::kNoError; } PatchGetBufferResults(target, pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetError(uint32_t* result) { FlushErrors(); *result = PopError(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetFloatv(GLenum pname, GLsizei bufsize, GLsizei* length, GLfloat* params) { return GetNumericHelper( pname, bufsize, length, params, [this](GLenum pname, GLsizei bufsize, GLsizei* length, GLfloat* params) { api()->glGetFloatvRobustANGLEFn(pname, bufsize, length, params); }); } error::Error GLES2DecoderPassthroughImpl::DoGetFragDataLocation( GLuint program, const char* name, GLint* result) { *result = api()->glGetFragDataLocationFn( GetProgramServiceID(program, resources_), name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetFramebufferAttachmentParameteriv( GLenum target, GLenum attachment, GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { GLenum updated_attachment = attachment; if (IsEmulatedFramebufferBound(target)) { // Update the attachment do the equivalent one in the emulated framebuffer if (!ModifyAttachmentForEmulatedFramebuffer(&updated_attachment)) { InsertError(GL_INVALID_OPERATION, "Invalid attachment."); *length = 0; return error::kNoError; } // Generate errors for parameter names that are only valid for non-default // framebuffers switch (pname) { case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER: InsertError(GL_INVALID_ENUM, "Invalid parameter name."); *length = 0; return error::kNoError; } } CheckErrorCallbackState(); // Create a scratch buffer to hold the result of the query std::vector<GLint> scratch_params(bufsize); api()->glGetFramebufferAttachmentParameterivRobustANGLEFn( target, updated_attachment, pname, bufsize, length, scratch_params.data()); if (CheckErrorCallbackState()) { DCHECK(*length == 0); return error::kNoError; } // Update the results of the query, if needed error::Error error = PatchGetFramebufferAttachmentParameter( target, updated_attachment, pname, *length, scratch_params.data()); if (error != error::kNoError) { *length = 0; return error; } // Copy into the destination DCHECK(*length < bufsize); std::copy(scratch_params.data(), scratch_params.data() + *length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetInteger64v(GLenum pname, GLsizei bufsize, GLsizei* length, GLint64* params) { return GetNumericHelper( pname, bufsize, length, params, [this](GLenum pname, GLsizei bufsize, GLsizei* length, GLint64* params) { api()->glGetInteger64vRobustANGLEFn(pname, bufsize, length, params); }); } error::Error GLES2DecoderPassthroughImpl::DoGetIntegeri_v(GLenum pname, GLuint index, GLsizei bufsize, GLsizei* length, GLint* data) { glGetIntegeri_vRobustANGLE(pname, index, bufsize, length, data); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetInteger64i_v(GLenum pname, GLuint index, GLsizei bufsize, GLsizei* length, GLint64* data) { glGetInteger64i_vRobustANGLE(pname, index, bufsize, length, data); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetIntegerv(GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { return GetNumericHelper( pname, bufsize, length, params, [this](GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { api()->glGetIntegervRobustANGLEFn(pname, bufsize, length, params); }); } error::Error GLES2DecoderPassthroughImpl::DoGetInternalformativ(GLenum target, GLenum format, GLenum pname, GLsizei bufSize, GLsizei* length, GLint* params) { api()->glGetInternalformativRobustANGLEFn(target, format, pname, bufSize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetProgramiv(GLuint program, GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { api()->glGetProgramivRobustANGLEFn(GetProgramServiceID(program, resources_), pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetProgramInfoLog( GLuint program, std::string* infolog) { CheckErrorCallbackState(); GLint info_log_len = 0; api()->glGetProgramivFn(GetProgramServiceID(program, resources_), GL_INFO_LOG_LENGTH, &info_log_len); if (CheckErrorCallbackState()) { return error::kNoError; } std::vector<char> buffer(info_log_len, 0); GLsizei length = 0; api()->glGetProgramInfoLogFn(GetProgramServiceID(program, resources_), info_log_len, &length, buffer.data()); DCHECK(length <= info_log_len); *infolog = length > 0 ? std::string(buffer.data(), length) : std::string(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetProgramInterfaceiv( GLuint program, GLenum program_interface, GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { // glGetProgramInterfaceivRobustANGLE remains to be implemented in ANGLE. if (bufsize < 1) { return error::kOutOfBounds; } *length = 1; api()->glGetProgramInterfaceivFn(GetProgramServiceID(program, resources_), program_interface, pname, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetProgramResourceiv( GLuint program, GLenum program_interface, GLuint index, GLsizei prop_count, const GLenum* props, GLsizei bufsize, GLsizei* length, GLint* params) { api()->glGetProgramResourceivFn(GetProgramServiceID(program, resources_), program_interface, index, prop_count, props, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetProgramResourceIndex( GLuint program, GLenum program_interface, const char* name, GLuint* index) { *index = api()->glGetProgramResourceIndexFn( GetProgramServiceID(program, resources_), program_interface, name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetProgramResourceLocation( GLuint program, GLenum program_interface, const char* name, GLint* location) { *location = api()->glGetProgramResourceLocationFn( GetProgramServiceID(program, resources_), program_interface, name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetProgramResourceName( GLuint program, GLenum program_interface, GLuint index, std::string* name) { CheckErrorCallbackState(); GLuint service_id = GetProgramServiceID(program, resources_); GLint max_name_length = 0; api()->glGetProgramInterfaceivFn(service_id, program_interface, GL_MAX_NAME_LENGTH, &max_name_length); if (CheckErrorCallbackState()) { return error::kNoError; } std::vector<GLchar> buffer(max_name_length, 0); GLsizei length = 0; api()->glGetProgramResourceNameFn(service_id, program_interface, index, max_name_length, &length, buffer.data()); DCHECK_LE(length, max_name_length); *name = length > 0 ? std::string(buffer.data(), length) : std::string(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetRenderbufferParameteriv( GLenum target, GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { api()->glGetRenderbufferParameterivRobustANGLEFn(target, pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetSamplerParameterfv( GLuint sampler, GLenum pname, GLsizei bufsize, GLsizei* length, GLfloat* params) { api()->glGetSamplerParameterfvRobustANGLEFn( GetSamplerServiceID(sampler, resources_), pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetSamplerParameteriv( GLuint sampler, GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { api()->glGetSamplerParameterivRobustANGLEFn( GetSamplerServiceID(sampler, resources_), pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetShaderiv(GLuint shader, GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { api()->glGetShaderivRobustANGLEFn(GetShaderServiceID(shader, resources_), pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetShaderInfoLog( GLuint shader, std::string* infolog) { CheckErrorCallbackState(); GLuint service_id = GetShaderServiceID(shader, resources_); GLint info_log_len = 0; api()->glGetShaderivFn(service_id, GL_INFO_LOG_LENGTH, &info_log_len); if (CheckErrorCallbackState()) { return error::kNoError; } std::vector<char> buffer(info_log_len, 0); GLsizei length = 0; api()->glGetShaderInfoLogFn(service_id, info_log_len, &length, buffer.data()); DCHECK(length <= info_log_len); *infolog = length > 0 ? std::string(buffer.data(), length) : std::string(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetShaderPrecisionFormat( GLenum shadertype, GLenum precisiontype, GLint* range, GLint* precision, int32_t* success) { CheckErrorCallbackState(); api()->glGetShaderPrecisionFormatFn(shadertype, precisiontype, range, precision); *success = CheckErrorCallbackState() ? 0 : 1; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetShaderSource( GLuint shader, std::string* source) { CheckErrorCallbackState(); GLuint shader_service_id = GetShaderServiceID(shader, resources_); GLint shader_source_length = 0; api()->glGetShaderivFn(shader_service_id, GL_SHADER_SOURCE_LENGTH, &shader_source_length); if (CheckErrorCallbackState()) { return error::kNoError; } std::vector<char> buffer(shader_source_length, 0); GLsizei length = 0; api()->glGetShaderSourceFn(shader_service_id, shader_source_length, &length, buffer.data()); DCHECK(length <= shader_source_length); *source = shader_source_length > 0 ? std::string(buffer.data(), length) : std::string(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetString(GLenum name, uint32_t bucket_id) { std::string extensions; const char* str = nullptr; switch (name) { case GL_VERSION: str = GetServiceVersionString(feature_info_.get()); break; case GL_SHADING_LANGUAGE_VERSION: str = GetServiceShadingLanguageVersionString(feature_info_.get()); break; case GL_EXTENSIONS: { extensions = gfx::MakeExtensionString(feature_info_->extensions()); str = extensions.c_str(); break; } default: str = reinterpret_cast<const char*>(api()->glGetStringFn(name)); break; } Bucket* bucket = CreateBucket(bucket_id); bucket->SetFromString(str); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetSynciv(GLuint sync, GLenum pname, GLsizei bufsize, GLsizei* length, GLint* values) { api()->glGetSyncivFn(GetSyncServiceID(sync, resources_), pname, bufsize, length, values); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetTexParameterfv(GLenum target, GLenum pname, GLsizei bufsize, GLsizei* length, GLfloat* params) { api()->glGetTexParameterfvRobustANGLEFn(target, pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetTexParameteriv(GLenum target, GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { api()->glGetTexParameterivRobustANGLEFn(target, pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetTransformFeedbackVarying( GLuint program, GLuint index, GLsizei* size, GLenum* type, std::string* name, int32_t* success) { CheckErrorCallbackState(); GLuint service_id = GetProgramServiceID(program, resources_); GLint transform_feedback_varying_max_length = 0; api()->glGetProgramivFn(service_id, GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH, &transform_feedback_varying_max_length); if (CheckErrorCallbackState()) { *success = 0; return error::kNoError; } std::vector<char> name_buffer(transform_feedback_varying_max_length, 0); api()->glGetTransformFeedbackVaryingFn(service_id, index, name_buffer.size(), nullptr, size, type, name_buffer.data()); *name = std::string(name_buffer.data()); *success = CheckErrorCallbackState() ? 0 : 1; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetUniformBlockIndex( GLuint program, const char* name, GLint* index) { *index = api()->glGetUniformBlockIndexFn( GetProgramServiceID(program, resources_), name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetUniformfv(GLuint program, GLint location, GLsizei bufsize, GLsizei* length, GLfloat* params) { // GetUniform*RobustANGLE entry points expect bufsize in bytes like the entry // points in GL_EXT_robustness api()->glGetUniformfvRobustANGLEFn(GetProgramServiceID(program, resources_), location, bufsize * sizeof(*params), length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetUniformiv(GLuint program, GLint location, GLsizei bufsize, GLsizei* length, GLint* params) { // GetUniform*RobustANGLE entry points expect bufsize in bytes like the entry // points in GL_EXT_robustness api()->glGetUniformivRobustANGLEFn(GetProgramServiceID(program, resources_), location, bufsize * sizeof(*params), length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetUniformuiv(GLuint program, GLint location, GLsizei bufsize, GLsizei* length, GLuint* params) { // GetUniform*RobustANGLE entry points expect bufsize in bytes like the entry // points in GL_EXT_robustness api()->glGetUniformuivRobustANGLEFn(GetProgramServiceID(program, resources_), location, bufsize * sizeof(*params), length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetUniformIndices( GLuint program, GLsizei count, const char* const* names, GLsizei bufSize, GLuint* indices) { api()->glGetUniformIndicesFn(GetProgramServiceID(program, resources_), count, names, indices); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetUniformLocation( GLuint program, const char* name, GLint* location) { *location = api()->glGetUniformLocationFn( GetProgramServiceID(program, resources_), name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetVertexAttribfv(GLuint index, GLenum pname, GLsizei bufsize, GLsizei* length, GLfloat* params) { api()->glGetVertexAttribfvRobustANGLEFn(index, pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetVertexAttribiv(GLuint index, GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { api()->glGetVertexAttribivRobustANGLEFn(index, pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetVertexAttribIiv(GLuint index, GLenum pname, GLsizei bufsize, GLsizei* length, GLint* params) { api()->glGetVertexAttribIivRobustANGLEFn(index, pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetVertexAttribIuiv( GLuint index, GLenum pname, GLsizei bufsize, GLsizei* length, GLuint* params) { api()->glGetVertexAttribIuivRobustANGLEFn(index, pname, bufsize, length, params); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetVertexAttribPointerv( GLuint index, GLenum pname, GLsizei bufsize, GLsizei* length, GLuint* pointer) { std::array<void*, 1> temp_pointers{{nullptr}}; GLsizei temp_length = 0; api()->glGetVertexAttribPointervRobustANGLEFn( index, pname, static_cast<GLsizei>(temp_pointers.size()), &temp_length, temp_pointers.data()); DCHECK(temp_length >= 0 && temp_length <= static_cast<GLsizei>(temp_pointers.size()) && temp_length <= bufsize); for (GLsizei ii = 0; ii < temp_length; ii++) { pointer[ii] = static_cast<GLuint>(reinterpret_cast<uintptr_t>(temp_pointers[ii])); } *length = temp_length; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoHint(GLenum target, GLenum mode) { api()->glHintFn(target, mode); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoInvalidateFramebuffer( GLenum target, GLsizei count, const volatile GLenum* attachments) { // Validate that count is non-negative before allocating a vector if (count < 0) { InsertError(GL_INVALID_VALUE, "count cannot be negative."); return error::kNoError; } std::vector<GLenum> attachments_copy(attachments, attachments + count); if (IsEmulatedFramebufferBound(target)) { // Update the attachment do the equivalent one in the emulated framebuffer if (!ModifyAttachmentsForEmulatedFramebuffer(&attachments_copy)) { InsertError(GL_INVALID_OPERATION, "Invalid attachment."); return error::kNoError; } } api()->glInvalidateFramebufferFn(target, count, attachments_copy.data()); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoInvalidateSubFramebuffer( GLenum target, GLsizei count, const volatile GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height) { // Validate that count is non-negative before allocating a vector if (count < 0) { InsertError(GL_INVALID_VALUE, "count cannot be negative."); return error::kNoError; } std::vector<GLenum> attachments_copy(attachments, attachments + count); if (IsEmulatedFramebufferBound(target)) { // Update the attachment do the equivalent one in the emulated framebuffer if (!ModifyAttachmentsForEmulatedFramebuffer(&attachments_copy)) { InsertError(GL_INVALID_OPERATION, "Invalid attachment."); return error::kNoError; } } api()->glInvalidateSubFramebufferFn(target, count, attachments_copy.data(), x, y, width, height); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoIsBuffer(GLuint buffer, uint32_t* result) { *result = api()->glIsBufferFn(GetBufferServiceID(api(), buffer, resources_, false)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoIsEnabled(GLenum cap, uint32_t* result) { *result = api()->glIsEnabledFn(cap); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoIsFramebuffer(GLuint framebuffer, uint32_t* result) { *result = api()->glIsFramebufferEXTFn( GetFramebufferServiceID(api(), framebuffer, &framebuffer_id_map_, false)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoIsProgram(GLuint program, uint32_t* result) { *result = api()->glIsProgramFn(GetProgramServiceID(program, resources_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoIsRenderbuffer(GLuint renderbuffer, uint32_t* result) { *result = api()->glIsRenderbufferEXTFn( GetRenderbufferServiceID(api(), renderbuffer, resources_, false)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoIsSampler(GLuint sampler, uint32_t* result) { *result = api()->glIsSamplerFn(GetSamplerServiceID(sampler, resources_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoIsShader(GLuint shader, uint32_t* result) { *result = api()->glIsShaderFn(GetShaderServiceID(shader, resources_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoIsSync(GLuint sync, uint32_t* result) { *result = api()->glIsSyncFn(GetSyncServiceID(sync, resources_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoIsTexture(GLuint texture, uint32_t* result) { *result = api()->glIsTextureFn( GetTextureServiceID(api(), texture, resources_, false)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoIsTransformFeedback( GLuint transformfeedback, uint32_t* result) { *result = api()->glIsTransformFeedbackFn(GetTransformFeedbackServiceID( transformfeedback, &transform_feedback_id_map_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoLineWidth(GLfloat width) { api()->glLineWidthFn(width); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoLinkProgram(GLuint program) { TRACE_EVENT0("gpu", "GLES2DecoderPassthroughImpl::DoLinkProgram"); SCOPED_UMA_HISTOGRAM_TIMER("GPU.PassthroughDoLinkProgramTime"); GLuint program_service_id = GetProgramServiceID(program, resources_); api()->glLinkProgramFn(program_service_id); // Program linking can be very slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); linking_program_service_id_ = program_service_id; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoMemoryBarrierEXT( GLbitfield barriers) { api()->glMemoryBarrierEXTFn(barriers); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoMemoryBarrierByRegion( GLbitfield barriers) { api()->glMemoryBarrierByRegionFn(barriers); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoMultiDrawBeginCHROMIUM( GLsizei drawcount) { if (drawcount < 0) { InsertError(GL_INVALID_VALUE, "drawcount cannot be negative."); return error::kNoError; } if (!multi_draw_manager_->Begin(drawcount)) { return error::kInvalidArguments; } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoMultiDrawEndCHROMIUM() { MultiDrawManager::ResultData result; if (!multi_draw_manager_->End(&result)) { return error::kInvalidArguments; } switch (result.draw_function) { case MultiDrawManager::DrawFunction::DrawArrays: api()->glMultiDrawArraysANGLEFn(result.mode, result.firsts.data(), result.counts.data(), result.drawcount); return error::kNoError; case MultiDrawManager::DrawFunction::DrawArraysInstanced: api()->glMultiDrawArraysInstancedANGLEFn( result.mode, result.firsts.data(), result.counts.data(), result.instance_counts.data(), result.drawcount); return error::kNoError; case MultiDrawManager::DrawFunction::DrawArraysInstancedBaseInstance: api()->glMultiDrawArraysInstancedBaseInstanceANGLEFn( result.mode, result.firsts.data(), result.counts.data(), result.instance_counts.data(), result.baseinstances.data(), result.drawcount); return error::kNoError; case MultiDrawManager::DrawFunction::DrawElements: api()->glMultiDrawElementsANGLEFn(result.mode, result.counts.data(), result.type, result.indices.data(), result.drawcount); return error::kNoError; case MultiDrawManager::DrawFunction::DrawElementsInstanced: api()->glMultiDrawElementsInstancedANGLEFn( result.mode, result.counts.data(), result.type, result.indices.data(), result.instance_counts.data(), result.drawcount); return error::kNoError; case MultiDrawManager::DrawFunction:: DrawElementsInstancedBaseVertexBaseInstance: api()->glMultiDrawElementsInstancedBaseVertexBaseInstanceANGLEFn( result.mode, result.counts.data(), result.type, result.indices.data(), result.instance_counts.data(), result.basevertices.data(), result.baseinstances.data(), result.drawcount); return error::kNoError; default: NOTREACHED(); return error::kLostContext; } } error::Error GLES2DecoderPassthroughImpl::DoPauseTransformFeedback() { api()->glPauseTransformFeedbackFn(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoPixelStorei(GLenum pname, GLint param) { api()->glPixelStoreiFn(pname, param); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoPolygonOffset(GLfloat factor, GLfloat units) { api()->glPolygonOffsetFn(factor, units); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoReadBuffer(GLenum src) { api()->glReadBufferFn(src); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufsize, GLsizei* length, GLsizei* columns, GLsizei* rows, void* pixels, int32_t* success) { CheckErrorCallbackState(); ScopedPackStateRowLengthReset reset_row_length( api(), bufsize != 0 && feature_info_->gl_version_info().is_es3); api()->glReadPixelsRobustANGLEFn(x, y, width, height, format, type, bufsize, length, columns, rows, pixels); *success = CheckErrorCallbackState() ? 0 : 1; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoReadPixelsAsync( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufsize, GLsizei* length, GLsizei* columns, GLsizei* rows, uint32_t pixels_shm_id, uint32_t pixels_shm_offset, uint32_t result_shm_id, uint32_t result_shm_offset) { DCHECK(feature_info_->feature_flags().use_async_readpixels && bound_buffers_[GL_PIXEL_PACK_BUFFER] == 0); CheckErrorCallbackState(); ScopedPackStateRowLengthReset reset_row_length( api(), bufsize != 0 && feature_info_->gl_version_info().is_es3); PendingReadPixels pending_read_pixels; pending_read_pixels.pixels_shm_id = pixels_shm_id; pending_read_pixels.pixels_shm_offset = pixels_shm_offset; pending_read_pixels.result_shm_id = result_shm_id; pending_read_pixels.result_shm_offset = result_shm_offset; api()->glGenBuffersARBFn(1, &pending_read_pixels.buffer_service_id); api()->glBindBufferFn(GL_PIXEL_PACK_BUFFER_ARB, pending_read_pixels.buffer_service_id); // GL_STREAM_READ is not available until ES3. const GLenum usage_hint = feature_info_->gl_version_info().IsAtLeastGLES(3, 0) ? GL_STREAM_READ : GL_STATIC_DRAW; const uint32_t bytes_per_pixel = GLES2Util::ComputeImageGroupSize(format, type); if (bytes_per_pixel == 0) { InsertError(GL_INVALID_ENUM, "Invalid ReadPixels format or type."); return error::kNoError; } if (width < 0 || height < 0) { InsertError(GL_INVALID_VALUE, "Width and height cannot be negative."); return error::kNoError; } if (!base::CheckMul(bytes_per_pixel, width, height) .AssignIfValid(&pending_read_pixels.pixels_size)) { return error::kOutOfBounds; } api()->glBufferDataFn(GL_PIXEL_PACK_BUFFER_ARB, pending_read_pixels.pixels_size, nullptr, usage_hint); // No need to worry about ES3 pixel pack parameters, because no // PIXEL_PACK_BUFFER is bound, and all these settings haven't been // sent to GL. api()->glReadPixelsFn(x, y, width, height, format, type, nullptr); api()->glBindBufferFn(GL_PIXEL_PACK_BUFFER_ARB, 0); // Test for errors now before creating a fence if (CheckErrorCallbackState()) { return error::kNoError; } pending_read_pixels.fence = gl::GLFence::Create(); if (CheckErrorCallbackState()) { return error::kNoError; } pending_read_pixels_.push_back(std::move(pending_read_pixels)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoReleaseShaderCompiler() { api()->glReleaseShaderCompilerFn(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoRenderbufferStorage( GLenum target, GLenum internalformat, GLsizei width, GLsizei height) { api()->glRenderbufferStorageEXTFn(target, internalformat, width, height); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoResumeTransformFeedback() { api()->glResumeTransformFeedbackFn(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoSampleCoverage(GLclampf value, GLboolean invert) { api()->glSampleCoverageFn(value, invert); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoSamplerParameterf(GLuint sampler, GLenum pname, GLfloat param) { api()->glSamplerParameterfFn(GetSamplerServiceID(sampler, resources_), pname, param); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoSamplerParameterfv( GLuint sampler, GLenum pname, const volatile GLfloat* params) { std::array<GLfloat, 1> params_copy{{params[0]}}; api()->glSamplerParameterfvRobustANGLEFn( GetSamplerServiceID(sampler, resources_), pname, static_cast<GLsizei>(params_copy.size()), params_copy.data()); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoSamplerParameteri(GLuint sampler, GLenum pname, GLint param) { api()->glSamplerParameteriFn(GetSamplerServiceID(sampler, resources_), pname, param); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoSamplerParameteriv( GLuint sampler, GLenum pname, const volatile GLint* params) { std::array<GLint, 1> params_copy{{params[0]}}; api()->glSamplerParameterivRobustANGLEFn( GetSamplerServiceID(sampler, resources_), pname, static_cast<GLsizei>(params_copy.size()), params_copy.data()); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoScissor(GLint x, GLint y, GLsizei width, GLsizei height) { CheckErrorCallbackState(); gfx::Vector2d scissor_offset = GetSurfaceDrawOffset(); api()->glScissorFn(x + scissor_offset.x(), y + scissor_offset.y(), width, height); if (CheckErrorCallbackState()) { // Skip any state tracking updates if an error was generated return error::kNoError; } AssignGLRectangle(scissor_, x, y, width, height); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoShaderBinary(GLsizei n, const GLuint* shaders, GLenum binaryformat, const void* binary, GLsizei length) { std::vector<GLuint> service_shaders(n, 0); for (GLsizei i = 0; i < n; i++) { service_shaders[i] = GetShaderServiceID(shaders[i], resources_); } api()->glShaderBinaryFn(n, service_shaders.data(), binaryformat, binary, length); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoShaderSource(GLuint shader, GLsizei count, const char** string, const GLint* length) { api()->glShaderSourceFn(GetShaderServiceID(shader, resources_), count, string, length); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilFunc(GLenum func, GLint ref, GLuint mask) { api()->glStencilFuncFn(func, ref, mask); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask) { api()->glStencilFuncSeparateFn(face, func, ref, mask); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilMask(GLuint mask) { api()->glStencilMaskFn(mask); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilMaskSeparate(GLenum face, GLuint mask) { api()->glStencilMaskSeparateFn(face, mask); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilOp(GLenum fail, GLenum zfail, GLenum zpass) { api()->glStencilOpFn(fail, zfail, zpass); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilOpSeparate(GLenum face, GLenum fail, GLenum zfail, GLenum zpass) { api()->glStencilOpSeparateFn(face, fail, zfail, zpass); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, GLsizei image_size, const void* pixels) { ScopedUnpackStateButAlignmentReset reset_unpack( api(), image_size != 0 && feature_info_->gl_version_info().is_es3, false); CheckErrorCallbackState(); api()->glTexImage2DRobustANGLEFn(target, level, internalformat, width, height, border, format, type, image_size, pixels); if (CheckErrorCallbackState()) { return error::kNoError; } UpdateTextureSizeFromTarget(target); // Texture data upload can be slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, GLsizei image_size, const void* pixels) { ScopedUnpackStateButAlignmentReset reset_unpack( api(), image_size != 0 && feature_info_->gl_version_info().is_es3, true); CheckErrorCallbackState(); api()->glTexImage3DRobustANGLEFn(target, level, internalformat, width, height, depth, border, format, type, image_size, pixels); if (CheckErrorCallbackState()) { return error::kNoError; } UpdateTextureSizeFromTarget(target); // Texture data upload can be slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTexParameterf(GLenum target, GLenum pname, GLfloat param) { api()->glTexParameterfFn(target, pname, param); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTexParameterfv( GLenum target, GLenum pname, const volatile GLfloat* params) { std::array<GLfloat, 1> params_copy{{params[0]}}; api()->glTexParameterfvRobustANGLEFn(target, pname, static_cast<GLsizei>(params_copy.size()), params_copy.data()); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTexParameteri(GLenum target, GLenum pname, GLint param) { api()->glTexParameteriFn(target, pname, param); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTexParameteriv( GLenum target, GLenum pname, const volatile GLint* params) { std::array<GLint, 1> params_copy{{params[0]}}; api()->glTexParameterivRobustANGLEFn(target, pname, static_cast<GLsizei>(params_copy.size()), params_copy.data()); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTexStorage3D(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth) { CheckErrorCallbackState(); api()->glTexStorage3DFn(target, levels, internalFormat, width, height, depth); if (CheckErrorCallbackState()) { return error::kNoError; } UpdateTextureSizeFromTarget(target); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei image_size, const void* pixels) { ScopedUnpackStateButAlignmentReset reset_unpack( api(), image_size != 0 && feature_info_->gl_version_info().is_es3, false); api()->glTexSubImage2DRobustANGLEFn(target, level, xoffset, yoffset, width, height, format, type, image_size, pixels); // Texture data upload can be slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei image_size, const void* pixels) { ScopedUnpackStateButAlignmentReset reset_unpack( api(), image_size != 0 && feature_info_->gl_version_info().is_es3, true); api()->glTexSubImage3DRobustANGLEFn(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, image_size, pixels); // Texture data upload can be slow. Exit command processing to allow for // context preemption and GPU watchdog checks. ExitCommandProcessingEarly(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTransformFeedbackVaryings( GLuint program, GLsizei count, const char** varyings, GLenum buffermode) { api()->glTransformFeedbackVaryingsFn(GetProgramServiceID(program, resources_), count, varyings, buffermode); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform1f(GLint location, GLfloat x) { api()->glUniform1fFn(location, x); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform1fv( GLint location, GLsizei count, const volatile GLfloat* v) { api()->glUniform1fvFn(location, count, const_cast<const GLfloat*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform1i(GLint location, GLint x) { api()->glUniform1iFn(location, x); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform1iv( GLint location, GLsizei count, const volatile GLint* v) { api()->glUniform1ivFn(location, count, const_cast<const GLint*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform1ui(GLint location, GLuint x) { api()->glUniform1uiFn(location, x); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform1uiv( GLint location, GLsizei count, const volatile GLuint* v) { api()->glUniform1uivFn(location, count, const_cast<const GLuint*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform2f(GLint location, GLfloat x, GLfloat y) { api()->glUniform2fFn(location, x, y); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform2fv( GLint location, GLsizei count, const volatile GLfloat* v) { api()->glUniform2fvFn(location, count, const_cast<const GLfloat*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform2i(GLint location, GLint x, GLint y) { api()->glUniform2iFn(location, x, y); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform2iv( GLint location, GLsizei count, const volatile GLint* v) { api()->glUniform2ivFn(location, count, const_cast<const GLint*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform2ui(GLint location, GLuint x, GLuint y) { api()->glUniform2uiFn(location, x, y); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform2uiv( GLint location, GLsizei count, const volatile GLuint* v) { api()->glUniform2uivFn(location, count, const_cast<const GLuint*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform3f(GLint location, GLfloat x, GLfloat y, GLfloat z) { api()->glUniform3fFn(location, x, y, z); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform3fv( GLint location, GLsizei count, const volatile GLfloat* v) { api()->glUniform3fvFn(location, count, const_cast<const GLfloat*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform3i(GLint location, GLint x, GLint y, GLint z) { api()->glUniform3iFn(location, x, y, z); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform3iv( GLint location, GLsizei count, const volatile GLint* v) { api()->glUniform3ivFn(location, count, const_cast<const GLint*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform3ui(GLint location, GLuint x, GLuint y, GLuint z) { api()->glUniform3uiFn(location, x, y, z); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform3uiv( GLint location, GLsizei count, const volatile GLuint* v) { api()->glUniform3uivFn(location, count, const_cast<const GLuint*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform4f(GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w) { api()->glUniform4fFn(location, x, y, z, w); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform4fv( GLint location, GLsizei count, const volatile GLfloat* v) { api()->glUniform4fvFn(location, count, const_cast<const GLfloat*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform4i(GLint location, GLint x, GLint y, GLint z, GLint w) { api()->glUniform4iFn(location, x, y, z, w); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform4iv( GLint location, GLsizei count, const volatile GLint* v) { api()->glUniform4ivFn(location, count, const_cast<const GLint*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform4ui(GLint location, GLuint x, GLuint y, GLuint z, GLuint w) { api()->glUniform4uiFn(location, x, y, z, w); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniform4uiv( GLint location, GLsizei count, const volatile GLuint* v) { api()->glUniform4uivFn(location, count, const_cast<const GLuint*>(v)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniformBlockBinding( GLuint program, GLuint index, GLuint binding) { api()->glUniformBlockBindingFn(GetProgramServiceID(program, resources_), index, binding); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniformMatrix2fv( GLint location, GLsizei count, GLboolean transpose, const volatile GLfloat* value) { api()->glUniformMatrix2fvFn(location, count, transpose, const_cast<const GLfloat*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniformMatrix2x3fv( GLint location, GLsizei count, GLboolean transpose, const volatile GLfloat* value) { api()->glUniformMatrix2x3fvFn(location, count, transpose, const_cast<const GLfloat*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniformMatrix2x4fv( GLint location, GLsizei count, GLboolean transpose, const volatile GLfloat* value) { api()->glUniformMatrix2x4fvFn(location, count, transpose, const_cast<const GLfloat*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniformMatrix3fv( GLint location, GLsizei count, GLboolean transpose, const volatile GLfloat* value) { api()->glUniformMatrix3fvFn(location, count, transpose, const_cast<const GLfloat*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniformMatrix3x2fv( GLint location, GLsizei count, GLboolean transpose, const volatile GLfloat* value) { api()->glUniformMatrix3x2fvFn(location, count, transpose, const_cast<const GLfloat*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniformMatrix3x4fv( GLint location, GLsizei count, GLboolean transpose, const volatile GLfloat* value) { api()->glUniformMatrix3x4fvFn(location, count, transpose, const_cast<const GLfloat*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniformMatrix4fv( GLint location, GLsizei count, GLboolean transpose, const volatile GLfloat* value) { api()->glUniformMatrix4fvFn(location, count, transpose, const_cast<const GLfloat*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniformMatrix4x2fv( GLint location, GLsizei count, GLboolean transpose, const volatile GLfloat* value) { api()->glUniformMatrix4x2fvFn(location, count, transpose, const_cast<const GLfloat*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniformMatrix4x3fv( GLint location, GLsizei count, GLboolean transpose, const volatile GLfloat* value) { api()->glUniformMatrix4x3fvFn(location, count, transpose, const_cast<const GLfloat*>(value)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUseProgram(GLuint program) { api()->glUseProgramFn(GetProgramServiceID(program, resources_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoValidateProgram(GLuint program) { api()->glValidateProgramFn(GetProgramServiceID(program, resources_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttrib1f(GLuint indx, GLfloat x) { api()->glVertexAttrib1fFn(indx, x); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttrib1fv( GLuint indx, const volatile GLfloat* values) { api()->glVertexAttrib1fvFn(indx, const_cast<const GLfloat*>(values)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttrib2f(GLuint indx, GLfloat x, GLfloat y) { api()->glVertexAttrib2fFn(indx, x, y); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttrib2fv( GLuint indx, const volatile GLfloat* values) { api()->glVertexAttrib2fvFn(indx, const_cast<const GLfloat*>(values)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z) { api()->glVertexAttrib3fFn(indx, x, y, z); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttrib3fv( GLuint indx, const volatile GLfloat* values) { api()->glVertexAttrib3fvFn(indx, const_cast<const GLfloat*>(values)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttrib4f(GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) { api()->glVertexAttrib4fFn(indx, x, y, z, w); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttrib4fv( GLuint indx, const volatile GLfloat* values) { api()->glVertexAttrib4fvFn(indx, const_cast<const GLfloat*>(values)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttribI4i(GLuint indx, GLint x, GLint y, GLint z, GLint w) { api()->glVertexAttribI4iFn(indx, x, y, z, w); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttribI4iv( GLuint indx, const volatile GLint* values) { api()->glVertexAttribI4ivFn(indx, const_cast<const GLint*>(values)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttribI4ui(GLuint indx, GLuint x, GLuint y, GLuint z, GLuint w) { api()->glVertexAttribI4uiFn(indx, x, y, z, w); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttribI4uiv( GLuint indx, const volatile GLuint* values) { api()->glVertexAttribI4uivFn(indx, const_cast<const GLuint*>(values)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttribIPointer( GLuint indx, GLint size, GLenum type, GLsizei stride, const void* ptr) { api()->glVertexAttribIPointerFn(indx, size, type, stride, ptr); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttribPointer( GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void* ptr) { api()->glVertexAttribPointerFn(indx, size, type, normalized, stride, ptr); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoViewport(GLint x, GLint y, GLsizei width, GLsizei height) { CheckErrorCallbackState(); gfx::Vector2d viewport_offset = GetSurfaceDrawOffset(); api()->glViewportFn(x + viewport_offset.x(), y + viewport_offset.y(), width, height); if (CheckErrorCallbackState()) { // Skip any state tracking updates if an error was generated. Viewport may // have been out of bounds. return error::kNoError; } AssignGLRectangle(viewport_, x, y, width, height); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoWaitSync(GLuint sync, GLbitfield flags, GLuint64 timeout) { api()->glWaitSyncFn(GetSyncServiceID(sync, resources_), flags, timeout); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBlitFramebufferCHROMIUM( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) { DCHECK(feature_info_->feature_flags().chromium_framebuffer_multisample); api()->glBlitFramebufferFn(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoRenderbufferStorageMultisampleCHROMIUM( GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) { DCHECK(feature_info_->feature_flags().chromium_framebuffer_multisample); api()->glRenderbufferStorageMultisampleFn(target, samples, internalformat, width, height); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoRenderbufferStorageMultisampleAdvancedAMD( GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height) { DCHECK(feature_info_->feature_flags().amd_framebuffer_multisample_advanced); api()->glRenderbufferStorageMultisampleAdvancedAMDFn( target, samples, storageSamples, internalformat, width, height); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoRenderbufferStorageMultisampleEXT( GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) { DCHECK(feature_info_->feature_flags().multisampled_render_to_texture); api()->glRenderbufferStorageMultisampleEXTFn(target, samples, internalformat, width, height); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoFramebufferTexture2DMultisampleEXT( GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples) { DCHECK(feature_info_->feature_flags().multisampled_render_to_texture); if (IsEmulatedFramebufferBound(target)) { InsertError(GL_INVALID_OPERATION, "Cannot change the attachments of the default framebuffer."); return error::kNoError; } BindPendingImageForClientIDIfNeeded(texture); api()->glFramebufferTexture2DMultisampleEXTFn( target, attachment, textarget, GetTextureServiceID(api(), texture, resources_, false), level, samples); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTexStorage2DEXT( GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height) { CheckErrorCallbackState(); api()->glTexStorage2DEXTFn(target, levels, internalFormat, width, height); if (CheckErrorCallbackState()) { return error::kNoError; } UpdateTextureSizeFromTarget(target); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTexStorage2DImageCHROMIUM( GLenum target, GLenum internalFormat, GLenum bufferUsage, GLsizei width, GLsizei height) { TextureTarget target_enum = GLenumToTextureTarget(target); if (target_enum == TextureTarget::kCubeMap || target_enum == TextureTarget::kUnkown) { InsertError(GL_INVALID_ENUM, "Invalid target"); return error::kNoError; } const BoundTexture& bound_texture = bound_textures_[static_cast<size_t>(target_enum)][active_texture_unit_]; if (bound_texture.texture == nullptr) { InsertError(GL_INVALID_OPERATION, "No texture bound"); return error::kNoError; } gfx::BufferFormat buffer_format; if (!GetGFXBufferFormat(internalFormat, &buffer_format)) { InsertError(GL_INVALID_ENUM, "Invalid buffer format"); return error::kNoError; } gfx::BufferUsage buffer_usage; if (!GetGFXBufferUsage(bufferUsage, &buffer_usage)) { InsertError(GL_INVALID_ENUM, "Invalid buffer usage"); return error::kNoError; } if (!GetContextGroup()->image_factory()) { InsertError(GL_INVALID_OPERATION, "Cannot create GL image"); return error::kNoError; } bool is_cleared; scoped_refptr<gl::GLImage> image = GetContextGroup()->image_factory()->CreateAnonymousImage( gfx::Size(width, height), buffer_format, buffer_usage, &is_cleared); if (!image || !image->BindTexImage(target)) { InsertError(GL_INVALID_OPERATION, "Failed to create or bind GL Image"); return error::kNoError; } bound_texture.texture->SetLevelImage(target, 0, image.get()); // Target is already validated UpdateTextureSizeFromTarget(target); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGenQueriesEXT( GLsizei n, volatile GLuint* queries) { return GenHelper( n, queries, &query_id_map_, [this](GLsizei n, GLuint* queries) { if (feature_info_->feature_flags().occlusion_query_boolean) { // glGenQueries is not loaded unless GL_EXT_occlusion_query_boolean is // present. All queries must be emulated so they don't need to be // generated. api()->glGenQueriesFn(n, queries); } else { for (GLsizei i = 0; i < n; i++) { queries[i] = 0; } } }); } error::Error GLES2DecoderPassthroughImpl::DoDeleteQueriesEXT( GLsizei n, const volatile GLuint* queries) { // Validate n is non-negative before allcoating a vector of size n if (n < 0) { InsertError(GL_INVALID_VALUE, "count cannot be negative."); return error::kNoError; } std::vector<GLuint> queries_copy(queries, queries + n); // If any of these queries are pending or active, remove them from the lists for (GLuint query_client_id : queries_copy) { GLuint query_service_id = 0; if (!query_id_map_.GetServiceID(query_client_id, &query_service_id) || query_service_id == 0) { continue; } QueryInfo query_info = query_info_map_[query_service_id]; query_info_map_.erase(query_service_id); if (query_info.type == GL_NONE) { // Query was never started continue; } auto active_queries_iter = active_queries_.find(query_info.type); if (active_queries_iter != active_queries_.end()) { active_queries_.erase(active_queries_iter); } RemovePendingQuery(query_service_id); } return DeleteHelper( queries_copy.size(), queries_copy.data(), &query_id_map_, [this](GLsizei n, GLuint* queries) { if (feature_info_->feature_flags().occlusion_query_boolean) { // glDeleteQueries is not loaded unless GL_EXT_occlusion_query_boolean // is present. All queries must be emulated so they don't need to be // deleted. api()->glDeleteQueriesFn(n, queries); } }); } error::Error GLES2DecoderPassthroughImpl::DoQueryCounterEXT( GLuint id, GLenum target, int32_t sync_shm_id, uint32_t sync_shm_offset, uint32_t submit_count) { scoped_refptr<gpu::Buffer> buffer = GetSharedMemoryBuffer(sync_shm_id); if (!buffer) return error::kInvalidArguments; QuerySync* sync = static_cast<QuerySync*>( buffer->GetDataAddress(sync_shm_offset, sizeof(QuerySync))); if (!sync) return error::kOutOfBounds; GLuint service_id = GetQueryServiceID(id, &query_id_map_); if (IsEmulatedQueryTarget(target)) { DCHECK_EQ(target, static_cast<GLenum>(GL_COMMANDS_ISSUED_TIMESTAMP_CHROMIUM)); } else { // glQueryCounter is not loaded unless GL_EXT_disjoint_timer_query is present if (!feature_info_->feature_flags().ext_disjoint_timer_query) { InsertError(GL_INVALID_ENUM, "Invalid query target."); return error::kNoError; } // Flush all previous errors CheckErrorCallbackState(); api()->glQueryCounterFn(service_id, target); // Check if a new error was generated if (CheckErrorCallbackState()) { return error::kNoError; } } QueryInfo* query_info = &query_info_map_[service_id]; query_info->type = target; // Make sure to stop tracking this query if it was still pending a result from // a previous glEndQuery RemovePendingQuery(service_id); PendingQuery pending_query; pending_query.target = target; pending_query.service_id = service_id; pending_query.shm = std::move(buffer); pending_query.sync = sync; pending_query.submit_count = submit_count; if (target == GL_COMMANDS_ISSUED_TIMESTAMP_CHROMIUM) pending_query.commands_issued_timestamp = base::TimeTicks::Now(); pending_queries_.push_back(std::move(pending_query)); return ProcessQueries(false); } error::Error GLES2DecoderPassthroughImpl::DoBeginQueryEXT( GLenum target, GLuint id, int32_t sync_shm_id, uint32_t sync_shm_offset) { GLuint service_id = GetQueryServiceID(id, &query_id_map_); QueryInfo* query_info = &query_info_map_[service_id]; scoped_refptr<gpu::Buffer> buffer = GetSharedMemoryBuffer(sync_shm_id); if (!buffer) return error::kInvalidArguments; QuerySync* sync = static_cast<QuerySync*>( buffer->GetDataAddress(sync_shm_offset, sizeof(QuerySync))); if (!sync) return error::kOutOfBounds; if (target == GL_PROGRAM_COMPLETION_QUERY_CHROMIUM) { linking_program_service_id_ = 0u; } if (IsEmulatedQueryTarget(target)) { if (active_queries_.find(target) != active_queries_.end()) { InsertError(GL_INVALID_OPERATION, "Query already active on target."); return error::kNoError; } if (id == 0) { InsertError(GL_INVALID_OPERATION, "Query id is 0."); return error::kNoError; } if (query_info->type != GL_NONE && query_info->type != target) { InsertError(GL_INVALID_OPERATION, "Query type does not match the target."); return error::kNoError; } } else { // glBeginQuery is not loaded unless GL_EXT_occlusion_query_boolean is // present if (!feature_info_->feature_flags().occlusion_query_boolean) { InsertError(GL_INVALID_ENUM, "Invalid query target."); return error::kNoError; } // Flush all previous errors CheckErrorCallbackState(); api()->glBeginQueryFn(target, service_id); // Check if a new error was generated if (CheckErrorCallbackState()) { return error::kNoError; } } query_info->type = target; // Make sure to stop tracking this query if it was still pending a result from // a previous glEndQuery RemovePendingQuery(service_id); ActiveQuery query; query.service_id = service_id; query.shm = std::move(buffer); query.sync = sync; if (target == GL_COMMANDS_ISSUED_CHROMIUM) query.command_processing_start_time = base::TimeTicks::Now(); active_queries_[target] = std::move(query); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBeginTransformFeedback( GLenum primitivemode) { api()->glBeginTransformFeedbackFn(primitivemode); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoEndQueryEXT(GLenum target, uint32_t submit_count) { if (IsEmulatedQueryTarget(target)) { auto active_query_iter = active_queries_.find(target); if (active_query_iter == active_queries_.end()) { InsertError(GL_INVALID_OPERATION, "No active query on target."); return error::kNoError; } if (target == GL_ASYNC_PIXEL_PACK_COMPLETED_CHROMIUM && !pending_read_pixels_.empty()) { GLuint query_service_id = active_query_iter->second.service_id; pending_read_pixels_.back().waiting_async_pack_queries.insert( query_service_id); } } else { // glEndQuery is not loaded unless GL_EXT_occlusion_query_boolean is present if (!feature_info_->feature_flags().occlusion_query_boolean) { InsertError(GL_INVALID_ENUM, "Invalid query target."); return error::kNoError; } // Flush all previous errors CheckErrorCallbackState(); api()->glEndQueryFn(target); // Check if a new error was generated if (CheckErrorCallbackState()) { return error::kNoError; } } DCHECK(active_queries_.find(target) != active_queries_.end()); ActiveQuery active_query = std::move(active_queries_[target]); active_queries_.erase(target); PendingQuery pending_query; pending_query.target = target; pending_query.service_id = active_query.service_id; pending_query.shm = std::move(active_query.shm); pending_query.sync = active_query.sync; pending_query.submit_count = submit_count; switch (target) { case GL_COMMANDS_COMPLETED_CHROMIUM: pending_query.commands_completed_fence = gl::GLFence::Create(); break; case GL_READBACK_SHADOW_COPIES_UPDATED_CHROMIUM: pending_query.buffer_shadow_update_fence = gl::GLFence::Create(); pending_query.buffer_shadow_updates = std::move(buffer_shadow_updates_); buffer_shadow_updates_.clear(); break; case GL_PROGRAM_COMPLETION_QUERY_CHROMIUM: pending_query.program_service_id = linking_program_service_id_; break; case GL_COMMANDS_ISSUED_CHROMIUM: pending_query.commands_issued_time = active_query.active_time + (base::TimeTicks::Now() - active_query.command_processing_start_time); break; default: break; } pending_queries_.push_back(std::move(pending_query)); return ProcessQueries(false); } error::Error GLES2DecoderPassthroughImpl::DoEndTransformFeedback() { api()->glEndTransformFeedbackFn(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoSetDisjointValueSyncCHROMIUM( DisjointValueSync* sync) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoInsertEventMarkerEXT( GLsizei length, const char* marker) { api()->glInsertEventMarkerEXTFn(length, marker); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoPushGroupMarkerEXT( GLsizei length, const char* marker) { api()->glPushGroupMarkerEXTFn(length, marker); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoPopGroupMarkerEXT() { api()->glPopGroupMarkerEXTFn(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGenVertexArraysOES( GLsizei n, volatile GLuint* arrays) { return GenHelper(n, arrays, &vertex_array_id_map_, [this](GLsizei n, GLuint* arrays) { api()->glGenVertexArraysOESFn(n, arrays); }); } error::Error GLES2DecoderPassthroughImpl::DoDeleteVertexArraysOES( GLsizei n, const volatile GLuint* arrays) { return DeleteHelper(n, arrays, &vertex_array_id_map_, [this](GLsizei n, GLuint* arrays) { api()->glDeleteVertexArraysOESFn(n, arrays); }); } error::Error GLES2DecoderPassthroughImpl::DoIsVertexArrayOES(GLuint array, uint32_t* result) { *result = api()->glIsVertexArrayOESFn( GetVertexArrayServiceID(array, &vertex_array_id_map_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindVertexArrayOES(GLuint array) { api()->glBindVertexArrayOESFn( GetVertexArrayServiceID(array, &vertex_array_id_map_)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoSwapBuffers(uint64_t swap_id, GLbitfield flags) { ca_layer_shared_state_ = nullptr; if (offscreen_) { if (offscreen_single_buffer_) { return error::kNoError; } DCHECK(emulated_back_buffer_); // Make sure the emulated front buffer is allocated and the correct size if (emulated_front_buffer_ && emulated_front_buffer_->size != emulated_back_buffer_->size) { emulated_front_buffer_->Destroy(true); emulated_front_buffer_ = nullptr; } if (emulated_front_buffer_ == nullptr) { if (!available_color_textures_.empty()) { emulated_front_buffer_ = std::move(available_color_textures_.back()); available_color_textures_.pop_back(); } else { emulated_front_buffer_ = std::make_unique<EmulatedColorBuffer>( api(), emulated_default_framebuffer_format_); emulated_front_buffer_->Resize(emulated_back_buffer_->size); } } DCHECK(emulated_front_buffer_->size == emulated_back_buffer_->size); if (emulated_default_framebuffer_format_.samples > 0) { // Resolve the multisampled renderbuffer into the emulated_front_buffer_ emulated_back_buffer_->Blit(emulated_front_buffer_.get()); } else { DCHECK(emulated_back_buffer_->color_texture != nullptr); // If the offscreen buffer should be preserved, copy the old backbuffer // into the new one if (offscreen_target_buffer_preserved_) { emulated_back_buffer_->Blit(emulated_front_buffer_.get()); } // Swap the front and back buffer textures and update the framebuffer // attachment. std::unique_ptr<EmulatedColorBuffer> old_front_buffer = std::move(emulated_front_buffer_); emulated_front_buffer_ = emulated_back_buffer_->SetColorBuffer(std::move(old_front_buffer)); } return error::kNoError; } client()->OnSwapBuffers(swap_id, flags); if (surface_->SupportsAsyncSwap()) { TRACE_EVENT_ASYNC_BEGIN0("gpu", "AsyncSwapBuffers", swap_id); surface_->SwapBuffersAsync( base::BindOnce( &GLES2DecoderPassthroughImpl::CheckSwapBuffersAsyncResult, weak_ptr_factory_.GetWeakPtr(), "SwapBuffers", swap_id), base::DoNothing()); return error::kNoError; } else { return CheckSwapBuffersResult(surface_->SwapBuffers(base::DoNothing()), "SwapBuffers"); } } error::Error GLES2DecoderPassthroughImpl::DoGetMaxValueInBufferCHROMIUM( GLuint buffer_id, GLsizei count, GLenum type, GLuint offset, uint32_t* result) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoEnableFeatureCHROMIUM( const char* feature) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoMapBufferRange( GLenum target, GLintptr offset, GLsizeiptr size, GLbitfield access, void* ptr, int32_t data_shm_id, uint32_t data_shm_offset, uint32_t* result) { CheckErrorCallbackState(); GLbitfield filtered_access = access; // Always filter out GL_MAP_UNSYNCHRONIZED_BIT to get rid of undefined // behaviors. filtered_access = (filtered_access & ~GL_MAP_UNSYNCHRONIZED_BIT); if ((filtered_access & GL_MAP_INVALIDATE_BUFFER_BIT) != 0) { // To be on the safe side, always map GL_MAP_INVALIDATE_BUFFER_BIT to // GL_MAP_INVALIDATE_RANGE_BIT. filtered_access = (filtered_access & ~GL_MAP_INVALIDATE_BUFFER_BIT); filtered_access = (filtered_access | GL_MAP_INVALIDATE_RANGE_BIT); } if ((filtered_access & GL_MAP_INVALIDATE_RANGE_BIT) == 0) { // If this user intends to use this buffer without invalidating the data, we // need to also add GL_MAP_READ_BIT to preserve the original data when // copying it to shared memory. filtered_access = (filtered_access | GL_MAP_READ_BIT); } void* mapped_ptr = api()->glMapBufferRangeFn(target, offset, size, filtered_access); if (CheckErrorCallbackState() || mapped_ptr == nullptr) { // Had an error while mapping, don't copy any data *result = 0; return error::kNoError; } if ((filtered_access & GL_MAP_INVALIDATE_RANGE_BIT) == 0) { memcpy(ptr, mapped_ptr, size); } // Track the mapping of this buffer so that data can be synchronized when it // is unmapped DCHECK(bound_buffers_.find(target) != bound_buffers_.end()); GLuint client_buffer = bound_buffers_.at(target); MappedBuffer mapped_buffer_info; mapped_buffer_info.size = size; mapped_buffer_info.original_access = access; mapped_buffer_info.filtered_access = filtered_access; mapped_buffer_info.map_ptr = static_cast<uint8_t*>(mapped_ptr); mapped_buffer_info.data_shm_id = data_shm_id; mapped_buffer_info.data_shm_offset = data_shm_offset; DCHECK(resources_->mapped_buffer_map.find(client_buffer) == resources_->mapped_buffer_map.end()); resources_->mapped_buffer_map.insert( std::make_pair(client_buffer, mapped_buffer_info)); *result = 1; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUnmapBuffer(GLenum target) { auto bound_buffers_iter = bound_buffers_.find(target); if (bound_buffers_iter == bound_buffers_.end()) { InsertError(GL_INVALID_ENUM, "Invalid buffer target."); return error::kNoError; } if (bound_buffers_iter->second == 0) { InsertError(GL_INVALID_OPERATION, "No buffer bound to this target."); return error::kNoError; } GLuint client_buffer = bound_buffers_iter->second; auto mapped_buffer_info_iter = resources_->mapped_buffer_map.find(client_buffer); if (mapped_buffer_info_iter == resources_->mapped_buffer_map.end()) { InsertError(GL_INVALID_OPERATION, "Buffer is not mapped."); return error::kNoError; } const MappedBuffer& map_info = mapped_buffer_info_iter->second; if ((map_info.filtered_access & GL_MAP_WRITE_BIT) != 0 && (map_info.filtered_access & GL_MAP_FLUSH_EXPLICIT_BIT) == 0) { uint8_t* mem = GetSharedMemoryAs<uint8_t*>( map_info.data_shm_id, map_info.data_shm_offset, map_info.size); if (!mem) { return error::kOutOfBounds; } memcpy(map_info.map_ptr, mem, map_info.size); } api()->glUnmapBufferFn(target); resources_->mapped_buffer_map.erase(mapped_buffer_info_iter); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoResizeCHROMIUM( GLuint width, GLuint height, GLfloat scale_factor, gfx::ColorSpace color_space, GLboolean alpha) { // gfx::Size uses integers, make sure width and height do not overflow static_assert(sizeof(GLuint) >= sizeof(int), "Unexpected GLuint size."); static const GLuint kMaxDimension = static_cast<GLuint>(std::numeric_limits<int>::max()); gfx::Size safe_size(base::ClampToRange(width, 1U, kMaxDimension), base::ClampToRange(height, 1U, kMaxDimension)); if (offscreen_) { if (!ResizeOffscreenFramebuffer(safe_size)) { LOG(ERROR) << "GLES2DecoderPassthroughImpl: Context lost because " << "ResizeOffscreenFramebuffer failed."; return error::kLostContext; } } else { if (!surface_->Resize(safe_size, scale_factor, color_space, !!alpha)) { LOG(ERROR) << "GLES2DecoderPassthroughImpl: Context lost because resize failed."; return error::kLostContext; } DCHECK(context_->IsCurrent(surface_.get())); if (!context_->IsCurrent(surface_.get())) { LOG(ERROR) << "GLES2DecoderPassthroughImpl: Context lost because context " "no longer current after resize callback."; return error::kLostContext; } } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetRequestableExtensionsCHROMIUM( const char** extensions) { *extensions = reinterpret_cast<const char*>( api()->glGetStringFn(GL_REQUESTABLE_EXTENSIONS_ANGLE)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoRequestExtensionCHROMIUM( const char* extension) { api()->glRequestExtensionANGLEFn(extension); // Make sure there are no pending GL errors before re-initializing feature // info FlushErrors(); // Make sure newly enabled extensions are exposed and usable. context_->ReinitializeDynamicBindings(); InitializeFeatureInfo(feature_info_->context_type(), feature_info_->disallowed_features(), true); // Support for CHROMIUM_texture_storage_image depends on the underlying // ImageFactory's ability to create anonymous images. gpu::ImageFactory* image_factory = group_->image_factory(); if (image_factory && image_factory->SupportsCreateAnonymousImage()) { feature_info_->EnableCHROMIUMTextureStorageImage(); } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetProgramInfoCHROMIUM( GLuint program, std::vector<uint8_t>* data) { GLuint service_program = 0; if (!resources_->program_id_map.GetServiceID(program, &service_program)) { return error::kNoError; } GLint num_attributes = 0; api()->glGetProgramivFn(service_program, GL_ACTIVE_ATTRIBUTES, &num_attributes); GLint num_uniforms = 0; api()->glGetProgramivFn(service_program, GL_ACTIVE_UNIFORMS, &num_uniforms); const base::CheckedNumeric<size_t> buffer_header_size( sizeof(ProgramInfoHeader)); const base::CheckedNumeric<size_t> buffer_block_size(sizeof(ProgramInput)); const base::CheckedNumeric<size_t> attribute_block_size = buffer_block_size * num_attributes; const base::CheckedNumeric<size_t> uniform_block_size = buffer_block_size * num_uniforms; data->resize((buffer_header_size + attribute_block_size + uniform_block_size) .ValueOrDie(), 0); GLint link_status = 0; api()->glGetProgramivFn(service_program, GL_LINK_STATUS, &link_status); ProgramInfoHeader header; header.link_status = link_status; header.num_attribs = num_attributes; header.num_uniforms = num_uniforms; InsertValueIntoBuffer(data, header, 0); GLint active_attribute_max_length = 0; api()->glGetProgramivFn(service_program, GL_ACTIVE_ATTRIBUTE_MAX_LENGTH, &active_attribute_max_length); std::vector<char> attrib_name_buf(active_attribute_max_length, 0); for (GLint attrib_index = 0; attrib_index < num_attributes; attrib_index++) { GLsizei length = 0; GLint size = 0; GLenum type = GL_NONE; api()->glGetActiveAttribFn(service_program, attrib_index, attrib_name_buf.size(), &length, &size, &type, attrib_name_buf.data()); ProgramInput input; input.size = size; input.type = type; int32_t location = api()->glGetAttribLocationFn(service_program, attrib_name_buf.data()); input.location_offset = data->size(); AppendValueToBuffer(data, location); input.name_offset = data->size(); input.name_length = length; AppendStringToBuffer(data, attrib_name_buf.data(), length); InsertValueIntoBuffer( data, input, (buffer_header_size + (buffer_block_size * attrib_index)).ValueOrDie()); } GLint active_uniform_max_length = 0; api()->glGetProgramivFn(service_program, GL_ACTIVE_UNIFORM_MAX_LENGTH, &active_uniform_max_length); std::vector<char> uniform_name_buf(active_uniform_max_length, 0); for (GLint uniform_index = 0; uniform_index < num_uniforms; uniform_index++) { GLsizei length = 0; GLint size = 0; GLenum type = GL_NONE; api()->glGetActiveUniformFn(service_program, uniform_index, uniform_name_buf.size(), &length, &size, &type, uniform_name_buf.data()); ProgramInput input; input.size = size; input.type = type; input.location_offset = data->size(); int32_t base_location = api()->glGetUniformLocationFn(service_program, uniform_name_buf.data()); AppendValueToBuffer(data, base_location); GLSLArrayName parsed_service_name(uniform_name_buf.data()); if (size > 1 || parsed_service_name.IsArrayName()) { for (GLint location_index = 1; location_index < size; location_index++) { std::string array_element_name = parsed_service_name.base_name() + "[" + base::NumberToString(location_index) + "]"; int32_t element_location = api()->glGetUniformLocationFn( service_program, array_element_name.c_str()); AppendValueToBuffer(data, element_location); } } input.name_offset = data->size(); input.name_length = length; AppendStringToBuffer(data, uniform_name_buf.data(), length); InsertValueIntoBuffer(data, input, (buffer_header_size + attribute_block_size + (buffer_block_size * uniform_index)) .ValueOrDie()); } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetUniformBlocksCHROMIUM( GLuint program, std::vector<uint8_t>* data) { GLuint service_program = 0; if (!resources_->program_id_map.GetServiceID(program, &service_program)) { return error::kNoError; } GLint num_uniform_blocks = 0; api()->glGetProgramivFn(service_program, GL_ACTIVE_UNIFORM_BLOCKS, &num_uniform_blocks); // Resize the data to fit the headers and info objects so that strings can be // appended. const base::CheckedNumeric<size_t> buffer_header_size( sizeof(UniformBlocksHeader)); const base::CheckedNumeric<size_t> buffer_block_size( sizeof(UniformBlockInfo)); data->resize((buffer_header_size + (num_uniform_blocks * buffer_block_size)) .ValueOrDie(), 0); UniformBlocksHeader header; header.num_uniform_blocks = num_uniform_blocks; InsertValueIntoBuffer(data, header, 0); GLint active_uniform_block_max_length = 0; api()->glGetProgramivFn(service_program, GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH, &active_uniform_block_max_length); std::vector<char> uniform_block_name_buf(active_uniform_block_max_length, 0); for (GLint uniform_block_index = 0; uniform_block_index < num_uniform_blocks; uniform_block_index++) { UniformBlockInfo block_info; GLint uniform_block_binding = 0; api()->glGetActiveUniformBlockivFn(service_program, uniform_block_index, GL_UNIFORM_BLOCK_BINDING, &uniform_block_binding); block_info.binding = uniform_block_binding; GLint uniform_block_data_size = 0; api()->glGetActiveUniformBlockivFn(service_program, uniform_block_index, GL_UNIFORM_BLOCK_DATA_SIZE, &uniform_block_data_size); block_info.data_size = uniform_block_data_size; GLint uniform_block_name_length = 0; api()->glGetActiveUniformBlockNameFn( service_program, uniform_block_index, active_uniform_block_max_length, &uniform_block_name_length, uniform_block_name_buf.data()); DCHECK(uniform_block_name_length + 1 <= active_uniform_block_max_length); block_info.name_offset = data->size(); block_info.name_length = uniform_block_name_length + 1; AppendStringToBuffer(data, uniform_block_name_buf.data(), uniform_block_name_length + 1); GLint uniform_block_active_uniforms = 0; api()->glGetActiveUniformBlockivFn(service_program, uniform_block_index, GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS, &uniform_block_active_uniforms); block_info.active_uniforms = uniform_block_active_uniforms; std::vector<GLint> uniform_block_indices_buf(uniform_block_active_uniforms, 0); api()->glGetActiveUniformBlockivFn(service_program, uniform_block_index, GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES, uniform_block_indices_buf.data()); block_info.active_uniform_offset = data->size(); for (GLint uniform_block_uniform_index_index = 0; uniform_block_uniform_index_index < uniform_block_active_uniforms; uniform_block_uniform_index_index++) { AppendValueToBuffer( data, static_cast<uint32_t>( uniform_block_indices_buf[uniform_block_uniform_index_index])); } GLint uniform_block_referenced_by_vertex_shader = 0; api()->glGetActiveUniformBlockivFn( service_program, uniform_block_index, GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER, &uniform_block_referenced_by_vertex_shader); block_info.referenced_by_vertex_shader = uniform_block_referenced_by_vertex_shader; GLint uniform_block_referenced_by_fragment_shader = 0; api()->glGetActiveUniformBlockivFn( service_program, uniform_block_index, GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER, &uniform_block_referenced_by_fragment_shader); block_info.referenced_by_fragment_shader = uniform_block_referenced_by_fragment_shader; InsertValueIntoBuffer( data, block_info, (buffer_header_size + (buffer_block_size * uniform_block_index)) .ValueOrDie()); } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetTransformFeedbackVaryingsCHROMIUM( GLuint program, std::vector<uint8_t>* data) { GLuint service_program = 0; if (!resources_->program_id_map.GetServiceID(program, &service_program)) { return error::kNoError; } GLint transform_feedback_buffer_mode = 0; api()->glGetProgramivFn(service_program, GL_TRANSFORM_FEEDBACK_BUFFER_MODE, &transform_feedback_buffer_mode); GLint num_transform_feedback_varyings = 0; api()->glGetProgramivFn(service_program, GL_TRANSFORM_FEEDBACK_VARYINGS, &num_transform_feedback_varyings); // Resize the data to fit the headers and info objects so that strings can be // appended. const base::CheckedNumeric<size_t> buffer_header_size( sizeof(TransformFeedbackVaryingsHeader)); const base::CheckedNumeric<size_t> buffer_block_size( sizeof(TransformFeedbackVaryingInfo)); data->resize((buffer_header_size + (num_transform_feedback_varyings * buffer_block_size)) .ValueOrDie(), 0); TransformFeedbackVaryingsHeader header; header.transform_feedback_buffer_mode = transform_feedback_buffer_mode; header.num_transform_feedback_varyings = num_transform_feedback_varyings; InsertValueIntoBuffer(data, header, 0); GLint max_transform_feedback_varying_length = 0; api()->glGetProgramivFn(service_program, GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH, &max_transform_feedback_varying_length); std::vector<char> transform_feedback_varying_name_buf( max_transform_feedback_varying_length, 0); for (GLint transform_feedback_varying_index = 0; transform_feedback_varying_index < num_transform_feedback_varyings; transform_feedback_varying_index++) { GLsizei length = 0; GLint size = 0; GLenum type = GL_NONE; api()->glGetTransformFeedbackVaryingFn( service_program, transform_feedback_varying_index, max_transform_feedback_varying_length, &length, &size, &type, transform_feedback_varying_name_buf.data()); TransformFeedbackVaryingInfo varying_info; varying_info.size = size; varying_info.type = type; DCHECK(length + 1 <= max_transform_feedback_varying_length); varying_info.name_length = data->size(); varying_info.name_length = length + 1; AppendStringToBuffer(data, transform_feedback_varying_name_buf.data(), length + 1); InsertValueIntoBuffer( data, varying_info, (buffer_header_size + (buffer_block_size * transform_feedback_varying_index)) .ValueOrDie()); } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetUniformsES3CHROMIUM( GLuint program, std::vector<uint8_t>* data) { GLuint service_program = 0; if (!resources_->program_id_map.GetServiceID(program, &service_program)) { return error::kNoError; } GLint num_uniforms = 0; api()->glGetProgramivFn(service_program, GL_ACTIVE_UNIFORMS, &num_uniforms); UniformsES3Header header; header.num_uniforms = num_uniforms; AppendValueToBuffer(data, header); for (GLuint uniform_index = 0; uniform_index < static_cast<GLuint>(num_uniforms); uniform_index++) { UniformES3Info uniform_info; GLint uniform_block_index = 0; api()->glGetActiveUniformsivFn(service_program, 1, &uniform_index, GL_UNIFORM_BLOCK_INDEX, &uniform_block_index); uniform_info.block_index = uniform_block_index; GLint uniform_offset = 0; api()->glGetActiveUniformsivFn(service_program, 1, &uniform_index, GL_UNIFORM_OFFSET, &uniform_offset); uniform_info.offset = uniform_offset; GLint uniform_array_stride = 0; api()->glGetActiveUniformsivFn(service_program, 1, &uniform_index, GL_UNIFORM_ARRAY_STRIDE, &uniform_array_stride); uniform_info.array_stride = uniform_array_stride; GLint uniform_matrix_stride = 0; api()->glGetActiveUniformsivFn(service_program, 1, &uniform_index, GL_UNIFORM_MATRIX_STRIDE, &uniform_matrix_stride); uniform_info.matrix_stride = uniform_matrix_stride; GLint uniform_is_row_major = 0; api()->glGetActiveUniformsivFn(service_program, 1, &uniform_index, GL_UNIFORM_IS_ROW_MAJOR, &uniform_is_row_major); uniform_info.is_row_major = uniform_is_row_major; AppendValueToBuffer(data, uniform_info); } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetTranslatedShaderSourceANGLE( GLuint shader, std::string* source) { CheckErrorCallbackState(); GLuint service_id = GetShaderServiceID(shader, resources_); GLint translated_source_length = 0; api()->glGetShaderivFn(service_id, GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE, &translated_source_length); if (CheckErrorCallbackState()) { return error::kNoError; } if (translated_source_length > 0) { std::vector<char> buffer(translated_source_length, 0); api()->glGetTranslatedShaderSourceANGLEFn( service_id, translated_source_length, nullptr, buffer.data()); *source = std::string(buffer.data()); } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoSwapBuffersWithBoundsCHROMIUM( uint64_t swap_id, GLsizei count, const volatile GLint* rects, GLbitfield flags) { if (count < 0) { InsertError(GL_INVALID_VALUE, "count cannot be negative."); return error::kNoError; } ca_layer_shared_state_ = nullptr; std::vector<gfx::Rect> bounds(count); for (GLsizei i = 0; i < count; ++i) { bounds[i] = gfx::Rect(rects[i * 4 + 0], rects[i * 4 + 1], rects[i * 4 + 2], rects[i * 4 + 3]); } client()->OnSwapBuffers(swap_id, flags); return CheckSwapBuffersResult( surface_->SwapBuffersWithBounds(bounds, base::DoNothing()), "SwapBuffersWithBounds"); } error::Error GLES2DecoderPassthroughImpl::DoPostSubBufferCHROMIUM( uint64_t swap_id, GLint x, GLint y, GLint width, GLint height, GLbitfield flags) { if (!surface_->SupportsPostSubBuffer()) { InsertError(GL_INVALID_OPERATION, "glPostSubBufferCHROMIUM is not supported for this surface."); return error::kNoError; } ca_layer_shared_state_ = nullptr; client()->OnSwapBuffers(swap_id, flags); if (surface_->SupportsAsyncSwap()) { TRACE_EVENT_ASYNC_BEGIN0("gpu", "AsyncSwapBuffers", swap_id); surface_->PostSubBufferAsync( x, y, width, height, base::BindOnce( &GLES2DecoderPassthroughImpl::CheckSwapBuffersAsyncResult, weak_ptr_factory_.GetWeakPtr(), "PostSubBuffer", swap_id), base::DoNothing()); return error::kNoError; } else { return CheckSwapBuffersResult( surface_->PostSubBuffer(x, y, width, height, base::DoNothing()), "PostSubBuffer"); } } error::Error GLES2DecoderPassthroughImpl::DoCopyTextureCHROMIUM( GLuint source_id, GLint source_level, GLenum dest_target, GLuint dest_id, GLint dest_level, GLint internalformat, GLenum dest_type, GLboolean unpack_flip_y, GLboolean unpack_premultiply_alpha, GLboolean unpack_unmultiply_alpha) { BindPendingImageForClientIDIfNeeded(source_id); api()->glCopyTextureCHROMIUMFn( GetTextureServiceID(api(), source_id, resources_, false), source_level, dest_target, GetTextureServiceID(api(), dest_id, resources_, false), dest_level, internalformat, dest_type, unpack_flip_y, unpack_premultiply_alpha, unpack_unmultiply_alpha); UpdateTextureSizeFromClientID(dest_id); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCopySubTextureCHROMIUM( GLuint source_id, GLint source_level, GLenum dest_target, GLuint dest_id, GLint dest_level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, GLboolean unpack_flip_y, GLboolean unpack_premultiply_alpha, GLboolean unpack_unmultiply_alpha) { BindPendingImageForClientIDIfNeeded(source_id); api()->glCopySubTextureCHROMIUMFn( GetTextureServiceID(api(), source_id, resources_, false), source_level, dest_target, GetTextureServiceID(api(), dest_id, resources_, false), dest_level, xoffset, yoffset, x, y, width, height, unpack_flip_y, unpack_premultiply_alpha, unpack_unmultiply_alpha); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDrawArraysInstancedANGLE( GLenum mode, GLint first, GLsizei count, GLsizei primcount) { BindPendingImagesForSamplersIfNeeded(); api()->glDrawArraysInstancedANGLEFn(mode, first, count, primcount); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDrawArraysInstancedBaseInstanceANGLE( GLenum mode, GLint first, GLsizei count, GLsizei primcount, GLuint baseinstance) { BindPendingImagesForSamplersIfNeeded(); api()->glDrawArraysInstancedBaseInstanceANGLEFn(mode, first, count, primcount, baseinstance); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDrawElementsInstancedANGLE( GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount) { BindPendingImagesForSamplersIfNeeded(); api()->glDrawElementsInstancedANGLEFn(mode, count, type, indices, primcount); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDrawElementsInstancedBaseVertexBaseInstanceANGLE( GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount, GLint basevertex, GLuint baseinstance) { BindPendingImagesForSamplersIfNeeded(); api()->glDrawElementsInstancedBaseVertexBaseInstanceANGLEFn( mode, count, type, indices, primcount, basevertex, baseinstance); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoVertexAttribDivisorANGLE( GLuint index, GLuint divisor) { api()->glVertexAttribDivisorANGLEFn(index, divisor); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoProduceTextureDirectCHROMIUM( GLuint texture_client_id, const volatile GLbyte* mailbox) { scoped_refptr<TexturePassthrough> texture = nullptr; if (!resources_->texture_object_map.GetServiceID(texture_client_id, &texture) || texture == nullptr) { InsertError(GL_INVALID_OPERATION, "Unknown texture."); return error::kNoError; } const Mailbox& mb = Mailbox::FromVolatile( *reinterpret_cast<const volatile Mailbox*>(mailbox)); mailbox_manager_->ProduceTexture(mb, texture.get()); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCreateAndConsumeTextureINTERNAL( GLuint texture_client_id, const volatile GLbyte* mailbox) { if (!texture_client_id || resources_->texture_id_map.HasClientID(texture_client_id)) { return error::kInvalidArguments; } const Mailbox& mb = Mailbox::FromVolatile( *reinterpret_cast<const volatile Mailbox*>(mailbox)); scoped_refptr<TexturePassthrough> texture = TexturePassthrough::CheckedCast( group_->mailbox_manager()->ConsumeTexture(mb)); if (texture == nullptr) { // Create texture to handle invalid mailbox (see http://crbug.com/472465 and // http://crbug.com/851878). DoGenTextures(1, &texture_client_id); InsertError(GL_INVALID_OPERATION, "Invalid mailbox name."); return error::kNoError; } // Update id mappings resources_->texture_id_map.RemoveClientID(texture_client_id); resources_->texture_id_map.SetIDMapping(texture_client_id, texture->service_id()); resources_->texture_object_map.RemoveClientID(texture_client_id); resources_->texture_object_map.SetIDMapping(texture_client_id, texture); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindUniformLocationCHROMIUM( GLuint program, GLint location, const char* name) { api()->glBindUniformLocationCHROMIUMFn( GetProgramServiceID(program, resources_), location, name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindTexImage2DCHROMIUM( GLenum target, GLint imageId) { return BindTexImage2DCHROMIUMImpl(target, 0, imageId); } error::Error GLES2DecoderPassthroughImpl::DoBindTexImage2DWithInternalformatCHROMIUM( GLenum target, GLenum internalformat, GLint imageId) { return BindTexImage2DCHROMIUMImpl(target, internalformat, imageId); } error::Error GLES2DecoderPassthroughImpl::DoReleaseTexImage2DCHROMIUM( GLenum target, GLint imageId) { TextureTarget target_enum = GLenumToTextureTarget(target); if (target_enum == TextureTarget::kCubeMap || target_enum == TextureTarget::kUnkown) { InsertError(GL_INVALID_ENUM, "Invalid target"); return error::kNoError; } const BoundTexture& bound_texture = bound_textures_[static_cast<size_t>(target_enum)][active_texture_unit_]; if (bound_texture.texture == nullptr) { InsertError(GL_INVALID_OPERATION, "No texture bound"); return error::kNoError; } gl::GLImage* image = group_->image_manager()->LookupImage(imageId); if (image == nullptr) { InsertError(GL_INVALID_OPERATION, "No image found with the given ID"); return error::kNoError; } // Only release the image if it is currently bound if (bound_texture.texture->GetLevelImage(target, 0) == image) { image->ReleaseTexImage(target); bound_texture.texture->SetLevelImage(target, 0, nullptr); } // Target is already validated UpdateTextureSizeFromTarget(target); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTraceBeginCHROMIUM( const char* category_name, const char* trace_name) { if (!gpu_tracer_->Begin(category_name, trace_name, kTraceCHROMIUM)) { InsertError(GL_INVALID_OPERATION, "Failed to create begin trace"); return error::kNoError; } debug_marker_manager_.PushGroup(trace_name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoTraceEndCHROMIUM() { if (!gpu_tracer_->End(kTraceCHROMIUM)) { InsertError(GL_INVALID_OPERATION, "No trace to end"); return error::kNoError; } debug_marker_manager_.PopGroup(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDiscardFramebufferEXT( GLenum target, GLsizei count, const volatile GLenum* attachments) { // Validate that count is non-negative before allocating a vector if (count < 0) { InsertError(GL_INVALID_VALUE, "count cannot be negative."); return error::kNoError; } std::vector<GLenum> attachments_copy(attachments, attachments + count); if (feature_info_->gl_version_info().is_es3) { api()->glInvalidateFramebufferFn(target, count, attachments_copy.data()); } else { api()->glDiscardFramebufferEXTFn(target, count, attachments_copy.data()); } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoLoseContextCHROMIUM(GLenum current, GLenum other) { if (!ValidContextLostReason(current) || !ValidContextLostReason(other)) { InsertError(GL_INVALID_ENUM, "invalid context loss reason."); return error::kNoError; } MarkContextLost(GetContextLostReasonFromResetStatus(current)); group_->LoseContexts(GetContextLostReasonFromResetStatus(other)); reset_by_robustness_extension_ = true; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDescheduleUntilFinishedCHROMIUM() { if (!gl::GLFence::IsSupported()) { return error::kNoError; } deschedule_until_finished_fences_.push_back(gl::GLFence::Create()); if (deschedule_until_finished_fences_.size() == 1) { return error::kNoError; } DCHECK_EQ(2u, deschedule_until_finished_fences_.size()); if (deschedule_until_finished_fences_[0]->HasCompleted()) { deschedule_until_finished_fences_.erase( deschedule_until_finished_fences_.begin()); return error::kNoError; } TRACE_EVENT_ASYNC_BEGIN0( "cc", "GLES2DecoderPassthroughImpl::DescheduleUntilFinished", this); client()->OnDescheduleUntilFinished(); return error::kDeferLaterCommands; } error::Error GLES2DecoderPassthroughImpl::DoDrawBuffersEXT( GLsizei count, const volatile GLenum* bufs) { // Validate that count is non-negative before allocating a vector if (count < 0) { InsertError(GL_INVALID_VALUE, "count cannot be negative."); return error::kNoError; } std::vector<GLenum> bufs_copy(bufs, bufs + count); api()->glDrawBuffersARBFn(count, bufs_copy.data()); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDiscardBackbufferCHROMIUM() { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoScheduleOverlayPlaneCHROMIUM( GLint plane_z_order, GLenum plane_transform, GLuint overlay_texture_id, GLint bounds_x, GLint bounds_y, GLint bounds_width, GLint bounds_height, GLfloat uv_x, GLfloat uv_y, GLfloat uv_width, GLfloat uv_height, bool enable_blend, GLuint gpu_fence_id) { scoped_refptr<TexturePassthrough> passthrough_texture = nullptr; if (!resources_->texture_object_map.GetServiceID(overlay_texture_id, &passthrough_texture) || passthrough_texture == nullptr) { InsertError(GL_INVALID_VALUE, "invalid texture id"); return error::kNoError; } gl::GLImage* image = passthrough_texture->GetLevelImage(passthrough_texture->target(), 0); if (!image) { InsertError(GL_INVALID_VALUE, "texture has no image"); return error::kNoError; } gfx::OverlayTransform transform = GetGFXOverlayTransform(plane_transform); if (transform == gfx::OVERLAY_TRANSFORM_INVALID) { InsertError(GL_INVALID_ENUM, "invalid transform enum"); return error::kNoError; } std::unique_ptr<gfx::GpuFence> gpu_fence; if (gpu_fence_id != 0) { gpu_fence = GetGpuFenceManager()->GetGpuFence(gpu_fence_id); if (!gpu_fence) { InsertError(GL_INVALID_ENUM, "unknown fence"); return error::kNoError; } } if (!surface_->ScheduleOverlayPlane( plane_z_order, transform, image, gfx::Rect(bounds_x, bounds_y, bounds_width, bounds_height), gfx::RectF(uv_x, uv_y, uv_width, uv_height), enable_blend, std::move(gpu_fence))) { InsertError(GL_INVALID_OPERATION, "failed to schedule overlay"); return error::kNoError; } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoScheduleCALayerSharedStateCHROMIUM( GLfloat opacity, GLboolean is_clipped, const GLfloat* clip_rect, const GLfloat* rounded_corner_bounds, GLint sorting_context_id, const GLfloat* transform) { if (!ca_layer_shared_state_) { ca_layer_shared_state_.reset(new CALayerSharedState); } ca_layer_shared_state_->opacity = opacity; ca_layer_shared_state_->is_clipped = is_clipped; ca_layer_shared_state_->clip_rect = gfx::ToEnclosingRect( gfx::RectF(clip_rect[0], clip_rect[1], clip_rect[2], clip_rect[3])); ca_layer_shared_state_->rounded_corner_bounds = gfx::RRectF(rounded_corner_bounds[0], rounded_corner_bounds[1], rounded_corner_bounds[2], rounded_corner_bounds[3], rounded_corner_bounds[4]); ca_layer_shared_state_->sorting_context_id = sorting_context_id; ca_layer_shared_state_->transform = gfx::Transform(transform[0], transform[4], transform[8], transform[12], transform[1], transform[5], transform[9], transform[13], transform[2], transform[6], transform[10], transform[14], transform[3], transform[7], transform[11], transform[15]); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoScheduleCALayerCHROMIUM( GLuint contents_texture_id, const GLfloat* contents_rect, GLuint background_color, GLuint edge_aa_mask, GLenum filter, const GLfloat* bounds_rect) { if (!ca_layer_shared_state_) { InsertError(GL_INVALID_OPERATION, "glScheduleCALayerSharedStateCHROMIUM has not been called"); return error::kNoError; } gl::GLImage* image = nullptr; if (contents_texture_id) { scoped_refptr<TexturePassthrough> passthrough_texture; if (!resources_->texture_object_map.GetServiceID(contents_texture_id, &passthrough_texture) || passthrough_texture == nullptr) { InsertError(GL_INVALID_VALUE, "unknown texture"); return error::kNoError; } DCHECK(passthrough_texture); image = passthrough_texture->GetLevelImage(passthrough_texture->target(), 0); if (!image) { InsertError(GL_INVALID_VALUE, "unsupported texture format"); return error::kNoError; } } ui::CARendererLayerParams params = ui::CARendererLayerParams( ca_layer_shared_state_->is_clipped, ca_layer_shared_state_->clip_rect, ca_layer_shared_state_->rounded_corner_bounds, ca_layer_shared_state_->sorting_context_id, ca_layer_shared_state_->transform, image, gfx::RectF(contents_rect[0], contents_rect[1], contents_rect[2], contents_rect[3]), gfx::ToEnclosingRect(gfx::RectF(bounds_rect[0], bounds_rect[1], bounds_rect[2], bounds_rect[3])), background_color, edge_aa_mask, ca_layer_shared_state_->opacity, filter); if (!surface_->ScheduleCALayer(params)) { InsertError(GL_INVALID_OPERATION, "failed to schedule CALayer"); return error::kNoError; } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoScheduleCALayerInUseQueryCHROMIUM( GLuint n, const volatile GLuint* textures) { // Validate that count is non-negative before allocating a vector if (n < 0) { InsertError(GL_INVALID_VALUE, "count cannot be negative."); return error::kNoError; } std::vector<gl::GLSurface::CALayerInUseQuery> queries; queries.reserve(n); for (GLuint i = 0; i < n; ++i) { gl::GLImage* image = nullptr; GLuint texture_id = textures[i]; if (texture_id) { scoped_refptr<TexturePassthrough> passthrough_texture; if (!resources_->texture_object_map.GetServiceID(texture_id, &passthrough_texture) || passthrough_texture == nullptr) { InsertError(GL_INVALID_VALUE, "unknown texture"); return error::kNoError; } image = passthrough_texture->GetLevelImage(passthrough_texture->target(), 0); } gl::GLSurface::CALayerInUseQuery query; query.image = image; query.texture = texture_id; queries.push_back(query); } surface_->ScheduleCALayerInUseQuery(std::move(queries)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoScheduleDCLayerCHROMIUM( GLuint texture_0, GLuint texture_1, GLint z_order, GLint content_x, GLint content_y, GLint content_width, GLint content_height, GLint quad_x, GLint quad_y, GLint quad_width, GLint quad_height, GLfloat transform_c1r1, GLfloat transform_c2r1, GLfloat transform_c1r2, GLfloat transform_c2r2, GLfloat transform_tx, GLfloat transform_ty, GLboolean is_clipped, GLint clip_x, GLint clip_y, GLint clip_width, GLint clip_height, GLuint protected_video_type) { if (protected_video_type > static_cast<GLuint>(gfx::ProtectedVideoType::kMaxValue)) { InsertError(GL_INVALID_VALUE, "invalid protected video type"); return error::kNoError; } if (!texture_0) { InsertError(GL_INVALID_VALUE, "invalid texture"); return error::kNoError; } ui::DCRendererLayerParams params; GLuint texture_ids[] = {texture_0, texture_1}; size_t i = 0; for (GLuint texture_id : texture_ids) { if (!texture_id) break; scoped_refptr<TexturePassthrough> passthrough_texture; if (!resources_->texture_object_map.GetServiceID(texture_id, &passthrough_texture) || passthrough_texture == nullptr) { InsertError(GL_INVALID_VALUE, "unknown texture"); return error::kNoError; } DCHECK(passthrough_texture); gl::GLImage* image = passthrough_texture->GetLevelImage(passthrough_texture->target(), 0); if (!image) { InsertError(GL_INVALID_VALUE, "unsupported texture format"); return error::kNoError; } params.images[i++] = scoped_refptr<gl::GLImage>(image); } params.z_order = z_order; params.content_rect = gfx::Rect(content_x, content_y, content_width, content_height); params.quad_rect = gfx::Rect(quad_x, quad_y, quad_width, quad_height); params.transform = gfx::Transform(transform_c1r1, transform_c2r1, transform_c1r2, transform_c2r2, transform_tx, transform_ty); params.is_clipped = is_clipped; params.clip_rect = gfx::Rect(clip_x, clip_y, clip_width, clip_height); params.protected_video_type = static_cast<gfx::ProtectedVideoType>(protected_video_type); if (!surface_->ScheduleDCLayer(params)) InsertError(GL_INVALID_OPERATION, "failed to schedule DCLayer"); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCommitOverlayPlanesCHROMIUM( uint64_t swap_id, GLbitfield flags) { if (!surface_->SupportsCommitOverlayPlanes()) { InsertError(GL_INVALID_OPERATION, "glCommitOverlayPlanes not supported by surface."); return error::kNoError; } ca_layer_shared_state_ = nullptr; client()->OnSwapBuffers(swap_id, flags); if (surface_->SupportsAsyncSwap()) { TRACE_EVENT_ASYNC_BEGIN0("gpu", "AsyncSwapBuffers", swap_id); surface_->CommitOverlayPlanesAsync( base::BindOnce( &GLES2DecoderPassthroughImpl::CheckSwapBuffersAsyncResult, weak_ptr_factory_.GetWeakPtr(), "CommitOverlayPlanes", swap_id), base::DoNothing()); return error::kNoError; } else { return CheckSwapBuffersResult( surface_->CommitOverlayPlanes(base::DoNothing()), "CommitOverlayPlanes"); } } error::Error GLES2DecoderPassthroughImpl::DoSetColorSpaceMetadataCHROMIUM( GLuint texture_id, gfx::ColorSpace color_space) { scoped_refptr<TexturePassthrough> passthrough_texture = nullptr; if (!resources_->texture_object_map.GetServiceID(texture_id, &passthrough_texture) || passthrough_texture == nullptr) { InsertError(GL_INVALID_VALUE, "unknown texture."); return error::kNoError; } scoped_refptr<gl::GLImage> image = passthrough_texture->GetLevelImage(passthrough_texture->target(), 0); if (image == nullptr) { InsertError(GL_INVALID_VALUE, "no image associated with texture."); return error::kNoError; } image->SetColorSpace(color_space); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoFlushDriverCachesCHROMIUM() { // On Adreno Android devices we need to use a workaround to force caches to // clear. if (feature_info_->workarounds().unbind_egl_context_to_flush_driver_caches) { context_->ReleaseCurrent(nullptr); context_->MakeCurrent(surface_.get()); } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoMatrixLoadfCHROMIUM( GLenum matrixMode, const volatile GLfloat* m) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoMatrixLoadIdentityCHROMIUM( GLenum matrixMode) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGenPathsCHROMIUM(GLuint path, GLsizei range) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDeletePathsCHROMIUM(GLuint path, GLsizei range) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoIsPathCHROMIUM(GLuint path, uint32_t* result) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoPathCommandsCHROMIUM( GLuint path, GLsizei numCommands, const GLubyte* commands, GLsizei numCoords, GLenum coordType, const GLvoid* coords, GLsizei coords_bufsize) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoPathParameterfCHROMIUM( GLuint path, GLenum pname, GLfloat value) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoPathParameteriCHROMIUM( GLuint path, GLenum pname, GLint value) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoPathStencilFuncCHROMIUM( GLenum func, GLint ref, GLuint mask) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilFillPathCHROMIUM( GLuint path, GLenum fillMode, GLuint mask) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilStrokePathCHROMIUM( GLuint path, GLint reference, GLuint mask) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCoverFillPathCHROMIUM( GLuint path, GLenum coverMode) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCoverStrokePathCHROMIUM( GLuint path, GLenum coverMode) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilThenCoverFillPathCHROMIUM( GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilThenCoverStrokePathCHROMIUM( GLuint path, GLint reference, GLuint mask, GLenum coverMode) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilFillPathInstancedCHROMIUM( GLsizei numPaths, GLenum pathNameType, const GLvoid* paths, GLsizei pathsBufsize, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat* transformValues, GLsizei transformValuesBufsize) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilStrokePathInstancedCHROMIUM( GLsizei numPaths, GLenum pathNameType, const GLvoid* paths, GLsizei pathsBufsize, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat* transformValues, GLsizei transformValuesBufsize) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCoverFillPathInstancedCHROMIUM( GLsizei numPaths, GLenum pathNameType, const GLvoid* paths, GLsizei pathsBufsize, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat* transformValues, GLsizei transformValuesBufsize) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCoverStrokePathInstancedCHROMIUM( GLsizei numPaths, GLenum pathNameType, const GLvoid* paths, GLsizei pathsBufsize, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat* transformValues, GLsizei transformValuesBufsize) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilThenCoverFillPathInstancedCHROMIUM( GLsizei numPaths, GLenum pathNameType, const GLvoid* paths, GLsizei pathsBufsize, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat* transformValues, GLsizei transformValuesBufsize) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoStencilThenCoverStrokePathInstancedCHROMIUM( GLsizei numPaths, GLenum pathNameType, const GLvoid* paths, GLsizei pathsBufsize, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat* transformValues, GLsizei transformValuesBufsize) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindFragmentInputLocationCHROMIUM( GLuint program, GLint location, const char* name) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoProgramPathFragmentInputGenCHROMIUM( GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat* coeffs, GLsizei coeffsBufsize) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCoverageModulationCHROMIUM( GLenum components) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBlendBarrierKHR() { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindFragDataLocationIndexedEXT( GLuint program, GLuint colorNumber, GLuint index, const char* name) { api()->glBindFragDataLocationIndexedFn( GetProgramServiceID(program, resources_), colorNumber, index, name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBindFragDataLocationEXT( GLuint program, GLuint colorNumber, const char* name) { api()->glBindFragDataLocationFn(GetProgramServiceID(program, resources_), colorNumber, name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoGetFragDataIndexEXT( GLuint program, const char* name, GLint* index) { *index = api()->glGetFragDataIndexFn(GetProgramServiceID(program, resources_), name); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( GLint location, GLboolean transpose, const volatile GLfloat* transform) { constexpr GLenum kTextureTarget = GL_TEXTURE_EXTERNAL_OES; scoped_refptr<TexturePassthrough> bound_texture = bound_textures_[static_cast<size_t>( GLenumToTextureTarget(kTextureTarget))][active_texture_unit_] .texture; if (!bound_texture) { InsertError(GL_INVALID_OPERATION, "no texture bound"); return error::kNoError; } float gl_matrix[16] = {}; GLStreamTextureImage* image = bound_texture->GetStreamLevelImage(kTextureTarget, 0); if (image) { gfx::Transform st_transform(gfx::Transform::kSkipInitialization); gfx::Transform pre_transform(gfx::Transform::kSkipInitialization); image->GetTextureMatrix(gl_matrix); st_transform.matrix().setColMajorf(gl_matrix); // const_cast is safe, because setColMajorf only does a memcpy. // TODO(piman): can we remove this assumption without having to introduce // an extra copy? pre_transform.matrix().setColMajorf(const_cast<const GLfloat*>(transform)); gfx::Transform(pre_transform, st_transform).matrix().asColMajorf(gl_matrix); } else { // Missing stream texture. Treat matrix as identity. memcpy(gl_matrix, const_cast<const GLfloat*>(transform), sizeof(gl_matrix)); } api()->glUniformMatrix4fvFn(location, 1, transpose, gl_matrix); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoOverlayPromotionHintCHROMIUM( GLuint texture, GLboolean promotion_hint, GLint display_x, GLint display_y, GLint display_width, GLint display_height) { if (texture == 0) { return error::kNoError; } scoped_refptr<TexturePassthrough> passthrough_texture = nullptr; if (!resources_->texture_object_map.GetServiceID(texture, &passthrough_texture) || passthrough_texture == nullptr) { InsertError(GL_INVALID_VALUE, "invalid texture id"); return error::kNoError; } GLStreamTextureImage* image = passthrough_texture->GetStreamLevelImage(GL_TEXTURE_EXTERNAL_OES, 0); if (!image) { InsertError(GL_INVALID_OPERATION, "texture has no StreamTextureImage"); return error::kNoError; } image->NotifyPromotionHint(promotion_hint != GL_FALSE, display_x, display_y, display_width, display_height); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoSetDrawRectangleCHROMIUM( GLint x, GLint y, GLint width, GLint height) { GLint current_framebuffer = 0; api()->glGetIntegervFn(GL_FRAMEBUFFER_BINDING, &current_framebuffer); if (current_framebuffer != 0) { InsertError(GL_INVALID_OPERATION, "framebuffer must not be bound."); return error::kNoError; } if (!surface_->SupportsDCLayers()) { InsertError(GL_INVALID_OPERATION, "surface doesn't support SetDrawRectangle."); return error::kNoError; } gfx::Rect rect(x, y, width, height); if (!surface_->SetDrawRectangle(rect)) { InsertError(GL_INVALID_OPERATION, "SetDrawRectangle failed on surface"); // If SetDrawRectangle failed, we may not have a current context any // more, make sure to report lost context. MarkContextLost(error::kUnknown); group_->LoseContexts(error::kUnknown); return error::kLostContext; } ApplySurfaceDrawOffset(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoSetEnableDCLayersCHROMIUM( GLboolean enable) { GLint current_framebuffer = 0; api()->glGetIntegervFn(GL_FRAMEBUFFER_BINDING, &current_framebuffer); if (current_framebuffer != 0) { InsertError(GL_INVALID_OPERATION, "framebuffer must not be bound."); return error::kNoError; } if (!surface_->SupportsDCLayers()) { InsertError(GL_INVALID_OPERATION, "surface doesn't support SetDrawRectangle."); return error::kNoError; } if (!surface_->SetEnableDCLayers(!!enable)) { InsertError(GL_INVALID_OPERATION, "SetEnableDCLayers failed on surface."); // If SetEnableDCLayers failed, we may not have a current context any // more, make sure to report lost context. MarkContextLost(error::kUnknown); group_->LoseContexts(error::kUnknown); return error::kLostContext; } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBeginRasterCHROMIUM( GLuint texture_id, GLuint sk_color, GLuint msaa_sample_count, GLboolean can_use_lcd_text, GLint color_type) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoRasterCHROMIUM( GLuint raster_shm_id, GLuint raster_shm_offset, GLsizeiptr raster_shm_size, GLuint font_shm_id, GLuint font_shm_offset, GLsizeiptr font_shm_size) { // TODO(enne): Add CHROMIUM_raster_transport extension support to the // passthrough command buffer. NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoEndRasterCHROMIUM() { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCreateTransferCacheEntryINTERNAL( GLuint entry_type, GLuint entry_id, GLuint handle_shm_id, GLuint handle_shm_offset, GLuint data_shm_id, GLuint data_shm_offset, GLuint data_size) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUnlockTransferCacheEntryINTERNAL( GLuint entry_type, GLuint entry_id) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDeleteTransferCacheEntryINTERNAL( GLuint entry_type, GLuint entry_id) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoWindowRectanglesEXT( GLenum mode, GLsizei n, const volatile GLint* box) { std::vector<GLint> box_copy(box, box + (n * 4)); api()->glWindowRectanglesEXTFn(mode, n, box_copy.data()); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCreateGpuFenceINTERNAL( GLuint gpu_fence_id) { if (!feature_info_->feature_flags().chromium_gpu_fence) return error::kUnknownCommand; if (!GetGpuFenceManager()->CreateGpuFence(gpu_fence_id)) return error::kInvalidArguments; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoWaitGpuFenceCHROMIUM( GLuint gpu_fence_id) { if (!feature_info_->feature_flags().chromium_gpu_fence) return error::kUnknownCommand; if (!GetGpuFenceManager()->GpuFenceServerWait(gpu_fence_id)) return error::kInvalidArguments; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoDestroyGpuFenceCHROMIUM( GLuint gpu_fence_id) { if (!feature_info_->feature_flags().chromium_gpu_fence) return error::kUnknownCommand; if (!GetGpuFenceManager()->RemoveGpuFence(gpu_fence_id)) return error::kInvalidArguments; return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUnpremultiplyAndDitherCopyCHROMIUM( GLuint src_texture, GLuint dst_texture, GLint x, GLint y, GLsizei width, GLsizei height) { NOTIMPLEMENTED(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoSetReadbackBufferShadowAllocationINTERNAL( GLuint buffer_id, GLuint shm_id, GLuint shm_offset, GLuint size) { BufferShadowUpdate update; update.shm = GetSharedMemoryBuffer(shm_id); update.shm_offset = shm_offset; update.size = size; GLuint buffer_service_id = 0; if (!resources_->buffer_id_map.GetServiceID(buffer_id, &buffer_service_id)) { InsertError(GL_INVALID_OPERATION, "Invalid buffer ID"); return error::kNoError; } if (!update.shm) { return error::kInvalidArguments; } if (update.shm->GetRemainingSize(shm_offset) < size) { return error::kOutOfBounds; } buffer_shadow_updates_.emplace(buffer_id, std::move(update)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoMaxShaderCompilerThreadsKHR( GLuint count) { api()->glMaxShaderCompilerThreadsKHRFn(count); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoInitializeDiscardableTextureCHROMIUM( GLuint texture_id, ServiceDiscardableHandle&& discardable_handle) { scoped_refptr<TexturePassthrough> texture_passthrough = nullptr; if (!resources_->texture_object_map.GetServiceID(texture_id, &texture_passthrough) || texture_passthrough == nullptr) { InsertError(GL_INVALID_VALUE, "Invalid texture ID"); return error::kNoError; } group_->passthrough_discardable_manager()->InitializeTexture( texture_id, group_.get(), texture_passthrough->estimated_size(), std::move(discardable_handle)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoLockDiscardableTextureCHROMIUM( GLuint texture_id) { if (!group_->passthrough_discardable_manager()->LockTexture(texture_id, group_.get())) { InsertError(GL_INVALID_VALUE, "Texture ID not initialized"); return error::kNoError; } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoUnlockDiscardableTextureCHROMIUM( GLuint texture_id) { TexturePassthrough* texture_to_unbind = nullptr; if (!group_->passthrough_discardable_manager()->UnlockTexture( texture_id, group_.get(), &texture_to_unbind)) { InsertError(GL_INVALID_VALUE, "Texture ID not initialized"); return error::kNoError; } if (texture_to_unbind != nullptr) { UpdateTextureBinding(texture_to_unbind->target(), texture_id, nullptr); } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoCreateAndTexStorage2DSharedImageINTERNAL( GLuint texture_client_id, GLenum internalformat, const volatile GLbyte* mailbox) { // RGB emulation is not needed here. if (internalformat != GL_NONE) { InsertError(GL_INVALID_ENUM, "internal format not supported."); return error::kNoError; } if (!texture_client_id || resources_->texture_id_map.HasClientID(texture_client_id)) { InsertError(GL_INVALID_OPERATION, "invalid client ID"); return error::kNoError; } const Mailbox& mb = Mailbox::FromVolatile( *reinterpret_cast<const volatile Mailbox*>(mailbox)); auto shared_image = group_->shared_image_representation_factory() ->ProduceGLTexturePassthrough(mb); if (shared_image == nullptr) { // Create texture to handle invalid mailbox (see http://crbug.com/472465 and // http://crbug.com/851878). DoGenTextures(1, &texture_client_id); InsertError(GL_INVALID_OPERATION, "invalid mailbox name."); return error::kNoError; } auto texture = shared_image->GetTexturePassthrough(); // Update id mappings resources_->texture_id_map.RemoveClientID(texture_client_id); resources_->texture_id_map.SetIDMapping(texture_client_id, texture->service_id()); resources_->texture_object_map.RemoveClientID(texture_client_id); resources_->texture_object_map.SetIDMapping(texture_client_id, texture); resources_->texture_shared_image_map[texture_client_id] = PassthroughResources::SharedImageData(std::move(shared_image)); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBeginSharedImageAccessDirectCHROMIUM( GLuint client_id, GLenum mode) { if (mode != GL_SHARED_IMAGE_ACCESS_MODE_READWRITE_CHROMIUM && mode != GL_SHARED_IMAGE_ACCESS_MODE_READ_CHROMIUM) { InsertError(GL_INVALID_ENUM, "unrecognized access mode"); return error::kNoError; } auto found = resources_->texture_shared_image_map.find(client_id); if (found == resources_->texture_shared_image_map.end()) { InsertError(GL_INVALID_OPERATION, "texture is not a shared image"); return error::kNoError; } if (found->second.is_being_accessed()) { InsertError(GL_INVALID_OPERATION, "shared image is being accessed."); return error::kNoError; } if (!found->second.BeginAccess(mode, api())) { InsertError(GL_INVALID_OPERATION, "unable to begin access"); return error::kNoError; } return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoEndSharedImageAccessDirectCHROMIUM( GLuint client_id) { auto found = resources_->texture_shared_image_map.find(client_id); if (found == resources_->texture_shared_image_map.end()) { InsertError(GL_INVALID_OPERATION, "texture is not a shared image"); return error::kNoError; } if (!found->second.is_being_accessed()) { InsertError(GL_INVALID_OPERATION, "shared image is not being accessed."); return error::kNoError; } found->second.EndAccess(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoBeginBatchReadAccessSharedImageCHROMIUM() { DCHECK(group_->shared_image_manager()); group_->shared_image_manager()->BeginBatchReadAccess(); return error::kNoError; } error::Error GLES2DecoderPassthroughImpl::DoEndBatchReadAccessSharedImageCHROMIUM() { DCHECK(group_->shared_image_manager()); group_->shared_image_manager()->EndBatchReadAccess(); return error::kNoError; } } // namespace gles2 } // namespace gpu
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
3f70dd8dcc8ff9e361357bf9788212f8362f2e8b
71fd72ac2c13e813ddd89c128578f5bfae406044
/SharedUtility/MyD3D/MyD3DDynamicFontRects.cpp
77c9a4c02f10dd8eb1a20005631f391512e01bc1
[ "MIT" ]
permissive
sygh-JP/FbxModelViewer
26254c8499a4c6c8004bd91e0adefb0a34b14a24
9d48415323a968d69fadb6fe1812a8093ab41701
refs/heads/master
2023-07-06T04:34:41.924119
2023-06-29T17:41:16
2023-06-29T17:41:16
60,464,890
14
4
null
null
null
null
UTF-8
C++
false
false
6,994
cpp
#include "stdafx.h" #include "MyD3DDynamicFontRects.hpp" #include "DebugNew.h" namespace MyD3D { bool MyDynamicManyRectsBase::Create(ID3D11Device* pD3DDevice, UINT rectCount, UINT strideInBytes, const void* pInitialData) { _ASSERTE(m_pVertexBuffer == nullptr); _ASSERTE(m_pIndexBuffer == nullptr); _ASSERTE(pD3DDevice != nullptr); _ASSERTE(pInitialData != nullptr); // 頂点バッファ初期化データに NULL 指定は不可。テクスチャの生成のときや、OpenGL とは違う。 _ASSERTE(rectCount > 0); _ASSERTE(strideInBytes > 0); HRESULT hr = E_FAIL; const UINT vertexCount = rectCount * 4; D3D11_BUFFER_DESC vbDesc = {}; vbDesc.ByteWidth = vertexCount * strideInBytes; vbDesc.Usage = D3D11_USAGE_DYNAMIC; vbDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER; vbDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; D3D11_SUBRESOURCE_DATA vbSubrData = {}; vbSubrData.pSysMem = pInitialData; hr = pD3DDevice->CreateBuffer(&vbDesc, &vbSubrData, m_pVertexBuffer.ReleaseAndGetAddressOf()); if (FAILED(hr)) { return false; } std::vector<TIndex> indexArray(rectCount * 6); for (size_t i = 0; i < rectCount; ++i) { // CCW indexArray[i * 6 + 0] = TIndex(0 + (i * 4)); indexArray[i * 6 + 1] = TIndex(2 + (i * 4)); indexArray[i * 6 + 2] = TIndex(1 + (i * 4)); indexArray[i * 6 + 3] = TIndex(1 + (i * 4)); indexArray[i * 6 + 4] = TIndex(2 + (i * 4)); indexArray[i * 6 + 5] = TIndex(3 + (i * 4)); } D3D11_BUFFER_DESC ibDesc = {}; ibDesc.ByteWidth = UINT(indexArray.size() * sizeof(TIndex)); ibDesc.Usage = D3D11_USAGE_DEFAULT; ibDesc.BindFlags = D3D11_BIND_INDEX_BUFFER; D3D11_SUBRESOURCE_DATA ibSubrData = {}; ibSubrData.pSysMem = &indexArray[0]; hr = pD3DDevice->CreateBuffer(&ibDesc, &ibSubrData, m_pIndexBuffer.ReleaseAndGetAddressOf()); if (FAILED(hr)) { return false; } m_rectCount = rectCount; m_vertexBufferSizeInBytes = vbDesc.ByteWidth; return true; } bool MyDynamicManyRectsBase::ReplaceVertexData(ID3D11DeviceContext* pDeviceContext, const void* pSrcData) { _ASSERTE(m_pVertexBuffer != nullptr); _ASSERTE(pSrcData != nullptr); HRESULT hr = E_FAIL; D3D11_MAPPED_SUBRESOURCE mappedResource = {}; hr = pDeviceContext->Map(m_pVertexBuffer.Get(), 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); if (FAILED(hr)) { return false; } memcpy(mappedResource.pData, pSrcData, m_vertexBufferSizeInBytes); pDeviceContext->Unmap(m_pVertexBuffer.Get(), 0); return true; } bool MyDynamicFontRects::UpdateVertexBufferByString(ID3D11DeviceContext* pDeviceContext, LPCWSTR pString, MyMath::Vector2F posInPixels, const MyMath::Vector4F& upperColor, const MyMath::Vector4F& lowerColor, long fontHeight, bool usesFixedFeed, uint32_t fontTexWidth, uint32_t fontTexHeight, const MyMath::TCharCodeUVMap& codeUVMap) { _ASSERTE(pString != nullptr); m_stringLength = 0; float offsetX = 0; TVertex* pVertexArray = &m_vertexArray[0]; // ローカル変数にキャッシュして高速化。 for (int i = 0; pString[i] != 0 && i < MaxCharacterCount; ++i, ++m_stringLength) { // HACK: このアルゴリズム(というか単一の wchar_t キー)だと、サロゲート ペアにはどうしても対応不可能。 const size_t charCode = static_cast<size_t>(pString[i]); if (charCode < codeUVMap.size()) { const auto codeUV = codeUVMap[charCode]; const float uvLeft = static_cast<float>(codeUV.X) / fontTexWidth; const float uvTop = static_cast<float>(codeUV.Y) / fontTexHeight; const float uvRight = static_cast<float>(codeUV.GetRight()) / fontTexWidth; const float uvBottom = static_cast<float>(codeUV.GetBottom()) / fontTexHeight; const float uvWidth = codeUV.Width; const float uvHeight = codeUV.Height; // LT, RT, LB, RB.(0, 1, 2 は左手系の定義順) const size_t index0 = i * 4 + 0; // 文字の水平方向送り(カーニングは考慮しないが、プロポーショナルの場合は文字幅)。 // スペースの文字送りも考慮する。 // HUD 系は常にモノスペースのほうがいいこともある。 // 非 ASCII はテクスチャ作成時にフォント メトリックから取得した文字幅にする。 // ヨーロッパ言語など、非 ASCII でもモノスペース時は半角幅のほうがいい文字もあるが、それは考慮しない。 // したがって、メソッドのフラグで等幅指定されたら、ASCII のみ半角幅とし、 // 非 ASCII はフォント メトリックから取得した文字幅を使うようにする。 const float feed = (usesFixedFeed && iswascii(pString[i])) ? (fontHeight / 2) : uvWidth; pVertexArray[index0].Position.x = posInPixels.x + offsetX; pVertexArray[index0].Position.y = posInPixels.y; pVertexArray[index0].Position.z = 0; //pVertexArray[index0].Position.w = 1; pVertexArray[index0].Color = upperColor; pVertexArray[index0].TexCoord.x = uvLeft; pVertexArray[index0].TexCoord.y = uvTop; const size_t index1 = i * 4 + 1; pVertexArray[index1].Position.x = posInPixels.x + offsetX + uvWidth; pVertexArray[index1].Position.y = posInPixels.y; pVertexArray[index1].Position.z = 0; //pVertexArray[index1].Position.w = 1; pVertexArray[index1].Color = upperColor; pVertexArray[index1].TexCoord.x = uvRight; pVertexArray[index1].TexCoord.y = uvTop; const size_t index2 = i * 4 + 2; pVertexArray[index2].Position.x = posInPixels.x + offsetX; pVertexArray[index2].Position.y = posInPixels.y + uvHeight; pVertexArray[index2].Position.z = 0; //pVertexArray[index2].Position.w = 1; pVertexArray[index2].Color = lowerColor; pVertexArray[index2].TexCoord.x = uvLeft; pVertexArray[index2].TexCoord.y = uvBottom; const size_t index3 = i * 4 + 3; pVertexArray[index3].Position.x = posInPixels.x + offsetX + uvWidth; pVertexArray[index3].Position.y = posInPixels.y + uvHeight; pVertexArray[index3].Position.z = 0; //pVertexArray[index3].Position.w = 1; pVertexArray[index3].Color = lowerColor; pVertexArray[index3].TexCoord.x = uvRight; pVertexArray[index3].TexCoord.y = uvBottom; // ボールド体の場合はもう少しオフセットしたほうがいいかも。 // フォントによっては、強制的に半角幅分送るだけ、というのは問題あり。 // 特にプロポーショナル フォントは英数字であっても文字幅が異なる。 // モノスペースであっても、半角幅分とはかぎらない。 offsetX += feed + 1; } } if (m_stringLength > 0) { return this->ReplaceVertexData(pDeviceContext, &m_vertexArray[0]); } else { return true; } } } // end of namespace
[ "whitekatyusha@yahoo.co.jp" ]
whitekatyusha@yahoo.co.jp
f5c23cd5ccc168451bf65fea9339cb16f2a9254f
50d7fe59e0f7d89beef42d3ad3fe308f870ce60f
/add.cpp
42e24b3354a0a1a6f0b6b3209a4ca76d662310ee
[]
no_license
rongrongdafa/BasicCompilerExercise
69191f0b732e642d1d5bd6f75a7f8e410fe03068
8b282c595f28eeca51b7170f31abdb616981ab03
refs/heads/master
2021-09-11T08:27:03.886808
2018-04-06T11:19:07
2018-04-06T11:19:07
115,910,842
0
0
null
null
null
null
UTF-8
C++
false
false
101
cpp
#include "add.h" C1::C1(int d) { c=d; } C1::~C1() { } int C1::getabc() { return a+b+c; }
[ "rongrongdafa@outloo.com" ]
rongrongdafa@outloo.com
09266214731f43a03844b0a98435c4bbfd57cf8d
b6ac6366b207e812b6e608b796633251d901c42e
/primer parcial/a3p2.cpp
0288f5f50926bac3eeeb4e74975d0af768b129f3
[]
no_license
tenapato/estructuraDeDatos
ae77925a5563ce7a6fa981b1bb6e92a0118f41a0
cf06a8f12c0e34a3a44fdb1d91b2ebcdedf47ebb
refs/heads/master
2021-03-06T09:01:01.580090
2020-07-13T05:29:20
2020-07-13T05:29:20
246,192,468
0
0
null
null
null
null
UTF-8
C++
false
false
1,567
cpp
#include <iostream> using namespace std; class Estudiante{ public: string nombre; string matricula; int size = materias; //int *a = 0; void crearHorario(int materias){ horario=new int[materias](); cout<<"Registrado! El numero de materias a llevar el alumno: "<<nombre<< " es: "<<materias<<endl; cout<<"Ahora, ingrese el horario de cada materia :"<<endl; for(int i=0;i<materias;i++){ cin>>horario[i]; } } public: int* horario; public: Estudiante (){ } Estudiante(const Estudiante& deDondeViene){ //Este constructor sirve para que el arreglo copia tenga un espacio de memoria diferente, y por ende, puede tener valores diferentes size = deDondeViene.size; //a=new int[size](); for(int i=0; i<size; i++){ horario[i]=deDondeViene.horario[i]; } } ~Estudiante(){ delete[]materias; } }; int main(){ Estudiante a; int materias; string copia; a.nombre = "Roberto"; a.matricula = "A0123"; cout<<"Ingrese el numero de materias a llevar"<<endl; cin>>materias; a.crearHorario(materias); Estudiante b; b.nombre = "Maria"; b.matricula = "A0146"; cout<<"Para el alumno "<<b.nombre<<" desea copiar el horario de "<<a.nombre<< " ?"<<endl; cin>>copia; if (copia == "si"){ Estudiante b = a; } else { cout<<"Ingrese el numero de materias a llevar"<<endl; cin>>materias; b.crearHorario(materias); } //cout<<a.horario[2]<<endl; //cout<<b.horario[2]<<endl; return 0; }
[ "tenapatricio@gmail.com" ]
tenapatricio@gmail.com
64be15e47d40387e09de9650be20835e4f1e13d3
9eed7a6024e07a41bbdfc993c385810d38485b71
/TDT_RigDev_2011-08/CP_LibertyTrack/Versions/V0.00_2007-07-23/LibertyTrackGlob.cpp
1d5199dc341334e961cb31b99584a09d2b8c7bb8
[]
no_license
tlh24/sabes-exp-ctrl
8ecb15da1cc6a0353940899c7371228fdb458cae
13b41ce80dec2502df13e9b1058fc9e05333d0d4
refs/heads/master
2020-07-29T05:38:02.420206
2015-02-25T07:45:16
2015-02-25T07:45:16
4,756,642
2
0
null
null
null
null
UTF-8
C++
false
false
5,330
cpp
#include <windows.h> #include "RegisterCom.h" #include "ClassFactory.h" #include "CP_LibertyTrackCom.h" #include "LibertyTrack.h" #include "LibertyTrackGlob.h" IClassFactory *x_pIFactory; DWORD x_dwRegister; HWND g_hWnd; // Here we define functions that MainDialog should know about // to use the CP_LibertyTrack COM server //============================================== int g_RegisterCOM(){ HRESULT hr; ITypeLib* pTypeLib; // Register typelib hr = LoadTypeLibEx(L"CP_LibertyTrack.exe", REGKIND_REGISTER, &pTypeLib); if( hr != S_OK) { return 1; } pTypeLib->Release(); // Register server hr = g_RegisterServer( "CP_LibertyTrack.exe", // application filename, full path is not needed CLSID_CP_LibertyClass, // ClassID GUID "CP_LibertyTrack", // Friendly name - shows up in dcomcnfg "CP_LibertyTrack.Application", // Version-independent ProgID used in late - binding "CP_LibertyTrack.Application.1", // ProgID with version NULL); // Threading model if( hr != S_OK) return 2; return 0; } //============================================== int g_UnregisterCOM(){ HRESULT hr; // Unregister typelib hr = UnRegisterTypeLib(LIBID_CP_LibertyTrackLib, // Typelib GUID 0, // Version Major 0, // Version Minor LANG_NEUTRAL, // LocaleID SYS_WIN32); // The target operating system if( hr != S_OK) { return 1; } // Unregister server hr = g_UnregisterServer(CLSID_CP_LibertyClass, "CP_LibertyTrack.Application", "CP_LibertyTrack.Application.1"); if( hr != S_OK) { return 2; } return 0; } //============================================== int g_Init_LibertyTrack( ){ // int iRet; HRESULT hr; x_pIFactory = new CFactory(); if( x_pIFactory == NULL) return 2; hr = CoRegisterClassObject( CLSID_CP_LibertyClass, //Class identifier (CLSID) to be registered x_pIFactory, //Pointer to the class object CLSCTX_LOCAL_SERVER, //Context for running executable code REGCLS_MULTIPLEUSE, // multiple clients for the same server, we do not start a new server for each client &x_dwRegister ); //Save registered object info, for future release by CoRevokeClassObject() if( hr != S_OK) return 3; g_pLibertyTrack = new CLibertyTrack; if( g_pLibertyTrack == NULL ) return 4; return 0; } //============================================== int g_OkToRelease( ){ //TODO: implement return 1; } //============================================== int g_Release_LibertyTrack(){ delete g_pLibertyTrack; g_pLibertyTrack = NULL; // CoRevokeClassObject(x_dwRegister); // x_pIFactory->Release(); // NOTE!!! do not call the next line here: it should be called at the very appl. end //// CoUninitialize(); return 0; } //============================================== void g_OnNewData( WPARAM wParam, LPARAM lParam ) { if( g_pLibertyTrack ) { g_pLibertyTrack->OnNewData( g_pLibertyTrack, wParam, lParam ); } } //============================================== // return timestamp in ms and relative coordinates: 0.0 to 1.0 int g_GetLatestCoordinates( int * pnSensors, double * pdTimeStamps, float pfXYZ[N_DISPL_SENSORS][N_COORD_ANGL] ){ int iState; int nSensDevMax, nSensors; int iDataIdx; tLibertyFrame atLibertyFrame[N_DISPL_SENSORS]; float pfVelocity[N_DISPL_SENSORS][N_DISPL_COORD]; g_pLibertyTrack->GetLibertyState( &iState ); if( iState != 3) return 1; // if not connected and running g_pLibertyTrack->GetN_Sensors( &nSensDevMax, &nSensors ); if( nSensors > N_DISPL_SENSORS ) return 1; // just in case if( !g_pLibertyTrack->GetLatestItemIdx( &iDataIdx )) return 1; //Get one frame from the buffer if( !g_pLibertyTrack->ReadData( atLibertyFrame, iDataIdx, 1 ) ) return 1; // Write timestamps and coordinates to SAFEARRAYs g_pLibertyTrack->ParseBuffer(1, // N Frames atLibertyFrame, // Source buffer pdTimeStamps, // Dest. timestamps (tfXYZTag *) pfXYZ, // Dest. coordinates (tfXYZTag *) pfVelocity ); // Dest. velocities * pnSensors = nSensors; return 0; } int g_GetSignalDistortion( int aiDistortion[N_DISPL_SENSORS] ){ g_pLibertyTrack->GetSignalDistortion(aiDistortion); return 0; } //============================================== int g_CmdStart(){ g_pLibertyTrack->ConnectLiberty(); return 0; } //============================================== int g_CmdStop(){ g_pLibertyTrack->FinishAndDisconnect(); return 0; } //============================================== HWND g_GetWindowHandle(){ return g_hWnd; }
[ "sideskate@gmail.com" ]
sideskate@gmail.com
2aede90569ac02da64f8295f674cf1d77d9b9546
819c616c3090c8a13a0e7f1a73fe10ed31f91623
/src/asmjit/base/podlist.h
899e0b921f459b82ab20d5a10c3f54eb0cba1f26
[ "Zlib" ]
permissive
xsacha/asmjit
a592b58282ef8c4c66416b733883e67ec44de901
a66efd54609aab7dd98e34c069937f34aa7c8f95
refs/heads/master
2021-01-18T04:42:40.145243
2014-06-07T19:57:07
2014-06-07T19:57:07
21,663,740
1
0
null
null
null
null
UTF-8
C++
false
false
3,038
h
// [AsmJit] // Complete x86/x64 JIT and Remote Assembler for C++. // // [License] // Zlib - See LICENSE.md file in the package. // [Guard] #ifndef _ASMJIT_BASE_PODLIST_H #define _ASMJIT_BASE_PODLIST_H // [Dependencies - AsmJit] #include "../base/globals.h" // [Api-Begin] #include "../apibegin.h" namespace asmjit { //! \addtogroup asmjit_base_util //! \{ // ============================================================================ // [asmjit::PodList<T>] // ============================================================================ //! \internal template <typename T> struct PodList { ASMJIT_NO_COPY(PodList<T>) // -------------------------------------------------------------------------- // [Link] // -------------------------------------------------------------------------- struct Link { // -------------------------------------------------------------------------- // [Accessors] // -------------------------------------------------------------------------- //! Get next node. ASMJIT_INLINE Link* getNext() const { return _next; } //! Get value. ASMJIT_INLINE T getValue() const { return _value; } //! Set value to `value`. ASMJIT_INLINE void setValue(const T& value) { _value = value; } // -------------------------------------------------------------------------- // [Members] // -------------------------------------------------------------------------- Link* _next; T _value; }; // -------------------------------------------------------------------------- // [Construction / Destruction] // -------------------------------------------------------------------------- ASMJIT_INLINE PodList() : _first(NULL), _last(NULL) {} ASMJIT_INLINE ~PodList() {} // -------------------------------------------------------------------------- // [Data] // -------------------------------------------------------------------------- ASMJIT_INLINE bool isEmpty() const { return _first != NULL; } ASMJIT_INLINE Link* getFirst() const { return _first; } ASMJIT_INLINE Link* getLast() const { return _last; } // -------------------------------------------------------------------------- // [Ops] // -------------------------------------------------------------------------- ASMJIT_INLINE void clear() { reset(); } ASMJIT_INLINE void reset() { _first = NULL; _last = NULL; } ASMJIT_INLINE void prepend(Link* link) { link->_next = _first; if (_first == NULL) _last = link; _first = link; } ASMJIT_INLINE void append(Link* link) { link->_next = NULL; if (_first == NULL) _first = link; else _last->_next = link; _last = link; } // -------------------------------------------------------------------------- // [Members] // -------------------------------------------------------------------------- Link* _first; Link* _last; }; //! \} } // asmjit namespace // [Api-End] #include "../apiend.h" // [Guard] #endif // _ASMJIT_BASE_PODLIST_H
[ "kobalicek.petr@gmail.com" ]
kobalicek.petr@gmail.com
0f44c29cca394bddd03be38cf04bbd3e900721ec
714cddadf394f61585afb527e5f389a4c8499c15
/include/DPLalphadecay.hh
88876ec435489501d6f417de52e9d29bff3a6596
[]
no_license
alourei/ProtonDetector2
6da88b327f3e040a341f4a9b0f20a7de136aa622
69eec1396a779edb5245f8db587eda982dcc1d05
refs/heads/main
2023-02-05T18:53:31.743943
2020-12-14T21:21:51
2020-12-14T21:21:51
321,473,261
0
0
null
null
null
null
UTF-8
C++
false
false
4,422
hh
/* * DPL1pdecay.hh * * Created on: Feb 19, 2014 * Author: perezlou */ #ifndef DPLALPHADECAY_HH_ #define DPLALPHADECAY_HH_ #include <G4VDiscreteProcess.hh> #include "globals.hh" #include "G4ios.hh" #include "Randomize.hh" #include "G4Track.hh" #include "G4Step.hh" #include "G4ParticleTypes.hh" #include "G4ParticleTable.hh" #include "G4ParticleDefinition.hh" #include "G4DynamicParticle.hh" #include "G4ThreeVector.hh" #include "G4LorentzVector.hh" #include "G4VParticleChange.hh" #include "G4Material.hh" #include "G4UnitsTable.hh" class DPL_alphaDecay: public G4VDiscreteProcess { public: DPL_alphaDecay(const G4String& processName="DPL_alphaDecay"); ~DPL_alphaDecay(); // These are the functions in the Process: Derived from G4VDiscreteProcess.hh G4bool IsApplicable(const G4ParticleDefinition& aParticle); // Decides if process applicable or not. Eventually make only valid for Neutrons // at some energy. G4double GetMeanFreePath(const G4Track& aTrack, G4double previousStepSize, G4ForceCondition* condition); // Overrides function in base class. Need to figure out how it plugs in! // Says returns MeanFreePath for a particle in a given material! // Invoked by Process Manager (Therefore necessary to get Process going!) G4VParticleChange* PostStepDoIt(const G4Track &aTrack, const G4Step &aStep); // This is the important function where you define the process // Returns steps, track and secondary particles // In this test, changes direction of neutron. // Invoked by Process Manager (Therefore necessary to get Process going!) void SetParentNucleus(G4int theMass, G4int theCharge); G4double Absolute(G4double num); G4double randBW(G4double center, G4double width); G4double VectModulus(G4ThreeVector Mom); G4double VectModulus(G4LorentzVector Mom); G4double ScalarProduct(G4ThreeVector V1, G4ThreeVector V2); G4double ScalarProduct(G4LorentzVector V1, G4ThreeVector V2); G4double ScalarProduct(G4LorentzVector V1, G4LorentzVector V2); G4LorentzVector LorentzBoost(G4LorentzVector Mom, G4ThreeVector Beta); // Produces BacktoBack recoil/neutron event in the center of mass. void BacktoBack(G4double DeltaM); void CMFrameToLabFrame(); // Goldhaber Momentum Kick Functions - Added 2 Oct. 2007 - BTR G4double GaussianRandom(G4double FWHM); G4double GoldhaberFWHM(G4double A_Beam, G4double A_frag, G4double sigma0); void GoldhaberKick(); // Use this function to enable Goldhaber Momentum Kick in Physics List. // Default setting has no kick! (cond = false) // A_Beam is mass number of beam (e.g. 8. for 8He) // M_beam is mass of beam in units of MeV/c2 void SetGoldhaberParameters(G4bool cond, G4double A_Beam, G4double M_beam, G4double FWHM); // Sets RelativeEnergy between particles (i.e. resonance energy) void SetRelativeEnergy(G4String Ran, G4double value, G4double Width); G4double GetAlphaSeparationEnergy(){return Alpha_Separation_Energy;} void SetAlphaSeparationEnergy(G4double energy){Alpha_Separation_Energy = energy;} G4double GetDeltaSeparationEnergy(){return Delta_Separation_Energy;} void SetDeltaSeparationEnergy(G4double energy){Delta_Separation_Energy = energy;} private: // Hide assignment operator as private DPL_alphaDecay& operator=(const DPL_alphaDecay &right); // Copy constructor DPL_alphaDecay(const DPL_alphaDecay&); // Other Pre-Defined Class Variables and Functions are below! private: G4double Pi; G4bool GoldCond; // enable Goldhaber if set to "true" G4double A_Beam; G4double Mass_beam; G4double Mom_FWHM; G4double Alpha_Separation_Energy; G4double Delta_Separation_Energy; G4String RanCond; // enable random E_rel (for acceptance) set to "random" G4double E_rel; G4double ResWidth; G4int A_Parent; G4int Z_Parent; // Storage Variables for Recoil G4int A_Rec; // Mass Number of Recoil Nucleus G4int Z_Rec; // Charge of Recoil Nucleus // Momentum 4-vectors for Fragment, recoil and neutron G4LorentzVector P_Frag; G4LorentzVector P_Recoil; G4LorentzVector P_Alpha; // Mass Storage Variables G4int A_Frag; G4int Z_Frag; G4double Mass_Fragment; G4double Mass_Alpha; G4double Mass_Recoil; G4int NumberOfLines; G4double Normalization; G4double *DaughterExEng; G4double *IntensityRaw; G4double *ProbRaw; G4double *ProbLimit; }; #endif /* DPLALPHADECAY_HH_ */
[ "david.perez.loureiro@gmail.com" ]
david.perez.loureiro@gmail.com
adac6143062cc39e20b00985884d22a76f70328a
b32d9ecf17fc0c5096a8c0cf04a1a9f495211f7e
/793.cpp
33d2d424aa54def1312d03e41950bbf8790e6058
[]
no_license
UQuality/UVA
08aca147953bdac08a9197ab2aeb246f7fd364c3
2f38241aa05d287cebfc534a965cb65626ac8ab2
refs/heads/master
2021-06-19T07:55:33.071014
2017-07-09T18:00:27
2017-07-09T18:00:27
83,677,198
0
0
null
null
null
null
UTF-8
C++
false
false
1,304
cpp
#include<bits/stdc++.h> #define rep(i,n) for(int i = 0; i<n; i++) using namespace std; typedef vector<int> vi; class DisjointSet { private : vi parent,ran; public : DisjointSet(int n){ ran.assign(n,0); parent.resize(n); rep(i,n) parent[i] = i; } int findSet(int i) { return (parent[i] == i) ? i : (parent[i] = findSet(parent[i])); } bool isSameSet(int i, int j) { return findSet(i) == findSet(j); } void unionSet(int i, int j){ if(!isSameSet(i,j)){ int x = findSet(i), y = findSet(j); if(ran[x]>ran[y]) parent[y] = x; else{ parent[x] = y; if(ran[x] == ran[y]) ran[y]++; } } } }; int main() { int n,a,b,cases,suc,unsuc; string line; char c; scanf("%d",&cases); while(cases--) { scanf("\n%d\n",&n); DisjointSet ds(n+1); suc = 0,unsuc = 0; while(true) { if(!getline(cin,line) || line.empty()) break; sscanf(line.c_str(),"%c %d %d",&c,&a,&b); if(c == 'c') ds.unionSet(a,b); if(c == 'q') ds.isSameSet(a,b)?suc++ : unsuc++; } printf("%d,%d\n",suc,unsuc); if(cases>0) printf("\n"); } return 0; }
[ "lutz.mage@gmail.com" ]
lutz.mage@gmail.com
22231f9711f49b619a863ee5adb6e3229780277a
a411425c7ce87cdd7bd22506d7d2cf8acf42a58f
/src/integration_testing/src/pkb_pql/evaluator_suchthat_clauses/TestUsesEval.cpp
1bcc9a418b4e92328d97c7af5562a5c3691d0b60
[]
no_license
anqichen9856/static-program-analyzer
a3b9e3f21e5c4ce1db0c0817dad397f6398cc5b7
ee4d9af1cc0ca603e2ecfffffc406f56dd5c49f9
refs/heads/master
2023-06-17T08:51:50.628830
2021-07-22T06:55:30
2021-07-22T06:55:30
388,353,777
0
0
null
null
null
null
UTF-8
C++
false
false
7,674
cpp
#include <vector> #include "catch.hpp" #include "front_end/tokenizer/Tokenizer.h" #include "front_end/parser/Parser.h" #include "query_processor/Query.h" #include "utils/SPAEnums.h" #include "clauses/UsesClause.h" #include "query_processor/query_evaluator/QueryEvaluator.h" #include "program_knowledge_base/pkb_storage/PKB.h" TEST_CASE("Evaluate Uses") { string src = "procedure Example {\n" " x = 2;\n" //1 " z = 3;\n" //2 " i = 5;\n" //3 " read x;\n" //4 " while (i!=0) {\n" //5 " x = x - 1;\n" //6 " if (x==1) then {\n" //7 " z = x + 1; \n" //8 " print y;}\n" //9 " else {\n" " y = z + x; }\n" //10 " z = z + x + i;\n" //11 " i = i - 1; }\n" //12 " }\n" "\n" "procedure p {\n" " if (k<9) then {\n" //13 " while (j>8) {\n" //14 " x = z * 3 + 2 * y;\n" //15 " i = i - 1; }\n" //16 " d = x + 1;\n" //17 " z = x + m; }\n" //18 " else {\n" " z = 1; }\n" //19 " z = z + x + i; }\n" //20 "\n" "procedure q {\n" " if (x==1) then {\n" //21 " z = x + 1; }\n" //22 " else {\n" " x = z + x; }" //23 " z=x;}"; //24 Tokenizer* tokenizer = Tokenizer::getInstance(); vector<Token> tokenStream = tokenizer->tokenizeSource(src); Parser* parser = Parser::getInstance(); AST root = parser->buildAST(tokenStream); PKB::getInstance()->reset(); PKB::getInstance()->initAST(root); SECTION("Integer, Name") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("17", "\"x\""); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Integer, Wildcard") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("17", "_"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Name, Wildcard") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("\"p\"", "_"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Integer, Synonym") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("17", "a"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Name, Synonym") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("\"p\"", "a"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Name, Name") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("\"p\"", "\"x\""); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Synonym, Name") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("p", "\"x\""); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Synonym, Wildcard") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable}, {"p",DesignEntity::Procedure} }; query.clauses = vector<Clause*>(); query.selected = { "p" }; vector<string> answer = { "Example", "p", "q" }; UsesClause p = UsesClause("p", "_"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } SECTION("Synonym, Synonym") { QueryResult* query_res = QueryResult::init(); Query query; query.synonyms = { {"a",DesignEntity::Assign}, {"v",DesignEntity::Variable} }; query.clauses = vector<Clause*>(); query.selected = { "v" }; vector<string> answer = { "i", "m", "x", "y", "z" }; UsesClause p = UsesClause("a", "v"); query.clauses.push_back(&p); p.evaluate(&query, query_res); REQUIRE(QueryEvaluator::getInstance()->evaluateQuery(query, query_res)); REQUIRE(query_res->getResults(query.selected) == answer); } }
[ "chenanqi9856@gmail.com" ]
chenanqi9856@gmail.com
d7f9b5060160f7298916246b4c8f8848c6e849e2
34ee28cb914306377446bd8f6dd4d8daf5102665
/Satisfiability/Transformers/Generators/Random/DQClauseSets.hpp
9fc4797301f872cd530438fe4e46fcbb6377e54d
[]
no_license
aileatese/oklibrary
d1abba9633bf83f5ab377bf5798af3d5055d70b7
f82654c4e1a0cb9ab89dc1a7fbf0f3dd2fb255d5
refs/heads/master
2022-11-29T14:43:39.500266
2020-08-06T12:40:20
2020-08-06T12:40:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
31,797
hpp
// Oliver Kullmann, 17.7.2019 (Swansea) /* Copyright 2019, 2020 Oliver Kullmann This file is part of the OKlibrary. OKlibrary is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation and included in this library; either version 3 of the License, or any later version. */ /* Random dependency-quantified CNF Components: Parameter-handling: - typedef ae_numvars: the pair (na, ne) - bool valid(ae_numvars): valid iff sum and product don't overflow - ae_numvars extract_numvars(block_v) - gen_uint_t num_dependencies(block_v) Option-handling: - enum class DepOp (from_scratch, subtract, add) - typedef dep_par_t: pair (gen_uint_t, DepOp) for the dependency-form and the number associated with it - dep_par_t read_dep_par(std::string) Seed-handling: - vec_eseed_t seeds(Param, block_v, dep_par_t) Tools for the generation-process: - typedef orig_new_pair: pair of VarInterval's, for old and shifted interval - typedef ablock_v: vector of orig_new_pair, for translating the fragemented a-intervals into contigous intervals - ablock_v extract(block_v): computing the contiguous a-intervals (shifted) - functor-class AccessA: constructed as AccessA aa(block_v), aa[v] translates 1 <= v <= na into the original variable, while aa(v) computes the inverse. - typedef ae_pair: pair of gen_uint_t, representing a dependency-edge (via indices or variables) - ae_pair extract_ae(gen_uint_t x, gen_uint_t na): translating dependency-index x into a dependency-edge - typedef dep_edges: vector of ae_pair's - dep_edges translate(vec_eseed_t, gen_uint_t na, ne, block_v, DepOp) computes the dependency graph as "set" of ae_pair's (a,e), where a is a variable, while e is an index. - typedef AVarset: set of gen_uint_t - typedef AVarSetsystem: set of AVarset - typedef Dependency: pointer into AVarSetsystem - typedef Dvector: vector of Dependency's - typedef FullDependencies: pair of AVarSetsystem and Dvector - AVarset::size_type num_dependencies(Dvector) - FullDependencies create_dependencies(dep_edges, block_v, DepOp) (a helper function for the following overload) - FullDependencies create_dependencies(RandGen_t, block_v, gen_uint_t na, ne, dep_par_t) - functor class CoveredUniversal, constructed from AVarSetsystem and Dvector, called with operator()(Clause), returning true iff all existential variables in the clause are in the domain of some existential variable in the clause Generation: - void rand_clauselist(std::ostream, RandGen_t, rparam_v, block_v, gen_uint_t na, ne, dep_par_t) - void output_dqblocks(std::ostream, Dvector, AVarSetsystem, rename_info_t R, DepOp) (implementation not complete) - void rand_dqclauseset(RandGen_t, rparam_v, AVarSetsystem, Dvector) DESIGN: 1. The handling of the dependency-sets should be unified with DQCNF/AutarkiesL1.cpp. 2. Filtering of clauses (rejecting clauses with formal universal variables) as with QBRG. TODOS: 0. Complete implementation of output_dqblocks 1. Merging repeated a/e-lines - QBRG in all modes merges neighbouring q-blocks of the same type (by calling output_qblocks) - Currently rand_clauselist in DQClauseSets does not do this; likely it should. DONE: no, too expensive here, due to the possibility of e-lines being removed. So we leave this, for the o,u-mode only, as a special feature of this mode. - DONE Moreover, this functions handles output of quantifier-information itself. - DONE Due to the need for direct output, it seems this is necessary: the dependencies are created on the fly, and are not stored. - DONE Possibly this should be outsorced to another function. On the other hand, the handling of the clauses is just one line. - DONE output_dqblocks for the other forms (not the -1-forms, i.e., "u,o"), needs the dependencies as created before creating the clauses (the former influencing the latter in the {}-form). And thus here likely it needs to be a different function. - DONE Perhaps it just uses the dep_vector, not the original vblock's. A problem here is with renaming: for a complete handling of clean a/e-lines (no repetitions, and always using an e-line if possible), the dependencies needed to be updated (for their output) according to renaming (and non-occurrences). Shall this be done? Would be more consistent. */ #ifndef DQCLAUSESETS_nMH1OTZkKa #define DQCLAUSESETS_nMH1OTZkKa #include <utility> #include <string> #include <algorithm> #include <vector> #include <tuple> #include <queue> #include <functional> #include <set> #include <cassert> #include <ProgramOptions/Environment.hpp> #include <Numerics/FloatingPoint.hpp> #include "Distributions.hpp" // Guaranteed to be included: #include "QClauseSets.hpp" namespace RandGen { // Pair na=#universal variables, ne=#existential variables: typedef std::pair<gen_uint_t, gen_uint_t> ae_numvars; // Whether na+ne and na*ne do not overflow, and ne >= 1: inline constexpr bool valid(const ae_numvars& n) noexcept { if (n.second == 0) return false; {const gen_uint_t sum = n.first + n.second; if (sum < n.first or sum < n.second) return false; } {const gen_uint_t prod = n.first * n.second; if (prod / n.second != n.first) return false; } return true; } static_assert(valid(ae_numvars{0,1})); static_assert(not valid(ae_numvars{1,0})); static_assert(not valid(ae_numvars{0,0})); static_assert(not valid(ae_numvars{gen_uint_t(-1),1})); static_assert(not valid(ae_numvars{1,gen_uint_t(-1)})); static_assert(valid(ae_numvars{gen_uint_t(-1)-1,1})); static_assert(valid(ae_numvars{1,gen_uint_t(-1)-1})); static_assert(valid(ae_numvars{0x1'0000'0000ULL, 0x1'0000'0000ULL-1})); static_assert(valid(ae_numvars{0x1'0000'0000ULL-1, 0x1'0000'0000ULL})); static_assert(not valid(ae_numvars{0x1'0000'0000ULL, 0x1'0000'0000ULL})); static_assert(not valid(ae_numvars{iexp2(63),2})); static_assert(not valid(ae_numvars{2,iexp2(63)})); // Compute na, ne for bv: ae_numvars extract_numvars(const block_v& bv) noexcept { assert(valid(bv)); ae_numvars n{}; for (gen_uint_t i = 1; i < bv.size(); ++i) { const auto& b = bv[i]; if (b.q == Q::fa) n.first += b.v.size(); else n.second += b.v.size(); } assert(bv[0].v.size() == n.first + n.second); return n; // might not be valid regarding product-overflow } gen_uint_t num_dependencies(const block_v& bv) noexcept { assert(valid(extract_numvars(bv))); gen_uint_t sum = 0; gen_uint_t current_a = 0; for (gen_uint_t i = 1; i < bv.size(); ++i) { const auto& b = bv[i]; if (b.q == Q::ex) sum += b.v.size() * current_a; else current_a += b.v.size(); } return sum; } enum class DepOp { from_scratch = 0, subtract = 1, add = 2 }; std::ostream& operator <<(std::ostream& out, const DepOp d) { switch (d) { case DepOp::from_scratch : return out << "ignore_given"; case DepOp::subtract : return out << "subtract_from_given"; case DepOp::add : return out << "add_to_given"; default : return out << "DepOp:" << int(d); } } typedef std::pair<gen_uint_t, DepOp> dep_par_t; dep_par_t read_dep_par(const std::string& p) { if (p.empty()) return {}; if (p.front() == '+') return {FloatingPoint::toUInt(p.substr(1)), DepOp::add}; else if (p.front() == '-') return {FloatingPoint::toUInt(p.substr(1)), DepOp::subtract}; else return {FloatingPoint::toUInt(p), DepOp::from_scratch}; } vec_eseed_t seeds(const Param& par, const block_v& vblock, const dep_par_t& dep) { const auto first = size_type_eseed; const auto second = first + (1 + 1) + (1 + 2 * vblock.size()); vec_eseed_t v; v.reserve(second); v.push_back(gen_uint_t(MainType::block_uniform_dqcnf)); v.push_back(gen_uint_t(int(par.gp))); v.push_back(par.vp.size()); v.push_back(default_thread_index); assert(v.size() == first); v.push_back(gen_uint_t(int(dep.second))); v.push_back(dep.first); v.push_back(vblock.size()); for (const auto& b : vblock) { v.push_back(b.v.size()); v.push_back(gen_uint_t(b.q)); } assert(v.size() == second); for (const auto p : par.vp) add_seeds(p,v); return v; } // The original interval and the shifted interval: typedef std::pair<VarInterval, VarInterval> orig_new_pair; typedef std::vector<orig_new_pair> ablock_v; // Translating the non-contiguous a-intervals into contiguous intervals // (for index-transformation): ablock_v extract(const block_v& bv) { assert(valid(bv)); ablock_v res; {gen_uint_t next = 1; for (const VarBlock& b : bv) if(b.q == Q::fa) { const gen_uint_t diff = b.v.b() - b.v.a(), old = next; res.emplace_back(b.v, VarInterval(old, next+=diff)); ++next; } } return res; } // Initialised with the blocks of variables, via operator [v] translate the // index 1 <= v <= na into the original variable, while (v) does the reverse: class AccessA { const ablock_v abv; typedef ablock_v::const_iterator iterator; const iterator begin, end; public : const gen_uint_t max; const gen_uint_t na; explicit AccessA(const block_v& bv) noexcept : abv(extract(bv)), begin(abv.begin()), end(abv.end()), max(abv.empty() ? 0 : abv.back().first.b()), na(abv.empty() ? 0 : abv.back().second.b()) {} gen_uint_t operator()(const gen_uint_t v) const noexcept { assert(v <= max); if (v == 0) return na; const auto it = std::lower_bound(begin, end, v, [](const orig_new_pair& w, const gen_uint_t v) noexcept { return w.first.b() < v; }); assert(it->first.element(v)); return it->second[v - it->first.a()]; } gen_uint_t operator[](const gen_uint_t v) const noexcept { assert(v <= na); if (v == 0) return max; const auto it = std::lower_bound(begin, end, v, [](const orig_new_pair& w, const gen_uint_t v) noexcept { return w.second.b() < v; }); assert(it->second.element(v)); return it->first[v - it->second.a()]; } }; // Translating x into a dependency, an edge beetween a universal and // an existential variable, represented as indices: typedef std::pair<gen_uint_t, gen_uint_t> ae_pair; inline constexpr ae_pair extract_ae(const gen_uint_t x, const gen_uint_t na, [[maybe_unused]] const gen_uint_t ne) noexcept { assert(x < na*ne); return {x % na, x / na}; } static_assert((extract_ae(0,1,1) == ae_pair{0,0})); static_assert((extract_ae(0,3,4) == ae_pair{0,0})); static_assert((extract_ae(1,3,4) == ae_pair{1,0})); static_assert((extract_ae(2,3,4) == ae_pair{2,0})); static_assert((extract_ae(3,3,4) == ae_pair{0,1})); static_assert((extract_ae(11,3,4) == ae_pair{2,3})); static_assert((extract_ae(8,2,5) == ae_pair{0,4})); typedef std::vector<ae_pair> dep_edges; // Translating a vector rdep of dependency-indices into ae_pairs (a,e), // where a is the original variable, while e is the index (0 <= e < ne): dep_edges translate(const vec_eseed_t& rdep, const gen_uint_t na, const gen_uint_t ne, const block_v& bv, const DepOp op) { assert((extract_numvars(bv) == ae_numvars{na,ne})); dep_edges res; res.reserve(rdep.size()); AccessA aa(bv); switch (op) { case DepOp::from_scratch: { for (const gen_uint_t x : rdep) { const ae_pair ae = extract_ae(x, na, ne); res.emplace_back(aa[1+ae.first], ae.second); } break; } case DepOp::subtract: { gen_uint_t current_na = 0, current_ne = 0, old_sum_ne = 0, sum_ne = 0, old_sum_deps = 0, sum_deps = 0; auto it_bv = bv.cbegin(); ++it_bv; for (const gen_uint_t x : rdep) { while (x >= sum_deps) { assert(it_bv != bv.cend()); const auto b = *it_bv++; assert(b.q == Q::ex or b.q == Q::fa); if (b.q == Q::fa) current_na += b.v.size(); else { current_ne = b.v.size(); old_sum_ne = sum_ne; sum_ne += current_ne; old_sum_deps = sum_deps; sum_deps += current_ne * current_na; } } assert(x >= old_sum_deps); const ae_pair ae = extract_ae(x-old_sum_deps, current_na, current_ne); assert(ae.first < na); assert(ae.second + old_sum_ne < ne); res.emplace_back(aa[1+ae.first], ae.second + old_sum_ne); } break; } case DepOp::add: { gen_uint_t left_na = 0, right_na = na, old_sum_ne = 0, old_sum_deps = 0; auto it_bv = bv.cbegin(); ++it_bv; while (it_bv->q != Q::ex) { const gen_uint_t s = it_bv++->v.size(); left_na += s; right_na -= s; } assert(it_bv->q == Q::ex); gen_uint_t current_ne = it_bv++->v.size(), sum_ne = current_ne, sum_deps = current_ne * right_na; for (const gen_uint_t x : rdep) { while (x >= sum_deps) { assert(it_bv != bv.cend()); const auto b = *it_bv++; assert(b.q == Q::ex or b.q == Q::fa); if (b.q == Q::fa) {const auto s=b.v.size(); left_na+=s; right_na-=s;} else { current_ne = b.v.size(); old_sum_ne = sum_ne; sum_ne += current_ne; old_sum_deps = sum_deps; sum_deps += current_ne * right_na; } } assert(x >= old_sum_deps); const ae_pair ae = extract_ae(x-old_sum_deps, right_na, current_ne); assert(ae.first + left_na < na); assert(ae.second + old_sum_ne < ne); res.emplace_back(aa[1+ae.first+left_na], ae.second + old_sum_ne); } break; } default:; } assert(res.size() == rdep.size()); return res; } void rand_clauselist(std::ostream& out, RandGen_t& g, const rparam_v& par, const block_v& bv, const gen_uint_t na, const gen_uint_t ne, const dep_par_t deppar) { assert(valid(bv)); assert(bv[0].v.b() == na+ne); {const auto dp = extract_parameters(par); assert(dp.n <= na+ne); out << dimacs_pars{bv[0].v.b(), dp.c}; } assert(ne != 0); switch (deppar.second) { case DepOp::from_scratch: { const dep_edges rdep = translate(choose_kn(deppar.first, na*ne, g, true), na, ne, bv, DepOp::from_scratch); assert(rdep.size() == deppar.first); out << Q::fa; for (const auto b : bv) if (b.q == Q::fa) for (const gen_uint_t v : b.v) out << " " << v; out << " 0\n"; gen_uint_t ei = 0; // current index of existential variable auto dep_it = rdep.cbegin(); const auto end = rdep.cend(); for (block_v::size_type index = 1; index < bv.size(); ++index) { const auto& b = bv[index]; if (b.q == Q::ex) { for (const gen_uint_t v : b.v) { out << "d " << v; while (dep_it != end and dep_it->second == ei) { out << " " << dep_it->first; ++dep_it; } out << " 0\n"; ++ei; } } } assert(ei == ne); assert(dep_it == end); break; } case DepOp::subtract: { const dep_edges rdep = translate(choose_kn(deppar.first, num_dependencies(bv), g, true), na, ne, bv, DepOp::subtract); assert(rdep.size() == deppar.first); gen_uint_t ei = 0; auto dep_it = rdep.cbegin(); const auto end = rdep.cend(); for (block_v::size_type index = 1; index < bv.size(); ++index) { const auto& b = bv[index]; if (b.q == Q::fa) { out << Q::fa; for (const gen_uint_t v : b.v) out << " " << v; out << " 0\n"; } else { assert(b.q == Q::ex); if (dep_it != end and dep_it->second < ei+b.v.size()) { bool out_ex = false; typedef std::pair<gen_uint_t,std::vector<gen_uint_t>> deplist; std::vector<deplist> removed_deps; for (const gen_uint_t v : b.v) { if (dep_it != end and dep_it->second == ei) { deplist dl{v,{}}; do dl.second.push_back(dep_it->first); while (++dep_it != end and dep_it->second == ei); removed_deps.push_back(std::move(dl)); } else if (out_ex) out << " " << v; else {out_ex = true; out << Q::ex << " " << v;} ++ei; } if (out_ex) out << " 0\n"; assert(not removed_deps.empty()); for (const auto& d : removed_deps) { out << "d " << d.first; const auto& del = d.second; auto rem_it = del.cbegin(); const auto end = del.cend(); assert(rem_it != end); for (block_v::size_type j = 1; j < index; ++j) { const auto& bj = bv[j]; if (bj.q == Q::ex) continue; for (const gen_uint_t v : bj.v) if (rem_it != end and v == *rem_it) ++rem_it; else out << " " << v; } assert(rem_it == end); out << " 0\n"; } } else { out << Q::ex; for (const gen_uint_t v : b.v) {out << " " << v; ++ei;} out << " 0\n"; } } } assert(ei == ne); assert(dep_it == end); break; } case DepOp::add: { const dep_edges rdep = translate(choose_kn(deppar.first, na*ne - num_dependencies(bv), g, true), na, ne, bv, DepOp::add); assert(rdep.size() == deppar.first); gen_uint_t ei = 0; auto dep_it = rdep.cbegin(); const auto end = rdep.cend(); typedef std::tuple<gen_uint_t, block_v::size_type, std::vector<gen_uint_t>, std::pair<gen_uint_t,dep_edges::size_type>> deplist; typedef std::priority_queue<deplist, std::vector<deplist>, std::function<bool(const deplist&, const deplist&)>> pqueue_t; pqueue_t added_deps([](const deplist& a, const deplist& b) noexcept { return std::get<3>(a) > std::get<3>(b); }); dep_edges::size_type counter = 0; for (block_v::size_type index = 1; index < bv.size(); ++index) { const auto& b = bv[index]; if (b.q == Q::fa) { out << Q::fa; for (const auto v : b.v) out << " " << v; out << " 0\n"; while (not added_deps.empty() and std::get<3>(added_deps.top()).first <= b.v.b()) { const auto& t = added_deps.top(); const gen_uint_t v = std::get<0>(t); const auto i = std::get<1>(t); const auto& vec = std::get<2>(t); out << "d " << v; for (block_v::size_type j = 1; j < i; ++j) if (bv[j].q == Q::fa) for (const gen_uint_t w : bv[j].v) out << " " << w; for (const gen_uint_t w : vec) out << " " << w; out << " 0\n"; added_deps.pop(); } } else { assert(b.q == Q::ex); if (dep_it != end and dep_it->second < ei+b.v.size()) { bool out_ex = false; for (const gen_uint_t v : b.v) { if (dep_it != end and dep_it->second == ei) { deplist dl{v,index,{},{}}; do std::get<2>(dl).push_back(dep_it->first); while (++dep_it != end and dep_it->second == ei); std::get<3>(dl) = {std::get<2>(dl).back(), counter}; assert(not std::get<2>(dl).empty()); counter += std::get<2>(dl).size(); added_deps.push(std::move(dl)); } else if (out_ex) out << " " << v; else {out_ex = true; out << Q::ex << " " << v;} ++ei; } if (out_ex) out << " 0\n"; } else { out << Q::ex; for (gen_uint_t v = b.v.a(); v <= b.v.b(); ++v, ++ei) out<<" "<<v; out << " 0\n"; } } } assert(ei == ne); assert(dep_it == end); assert(counter == rdep.size()); break; } default: out << "UNKNOWN DEPENDENCY-FORM.\n"; return; } rand_clauselist_core(out, g, par); } typedef std::set<gen_uint_t> AVarset; typedef std::set<AVarset> AVarSetsystem; typedef AVarSetsystem::const_pointer Dependency; // nullptr means universal variable: typedef std::vector<Dependency> Dvector; typedef std::pair<AVarSetsystem, Dvector> FullDependencies; AVarset::size_type num_dependencies(const Dvector& D) noexcept { AVarset::size_type sum = 0; for (const auto d : D) if (d) sum += d->size(); return sum; } FullDependencies create_dependencies(const dep_edges& rdep, const block_v& bv, const DepOp dpo) { assert(valid(bv)); const gen_uint_t n = bv[0].v.b(); FullDependencies R{{},n+1}; if (dpo == DepOp::from_scratch) { gen_uint_t ei = 0; auto dep_it = rdep.cbegin(); const auto end = rdep.cend(); for (block_v::size_type index = 1; index < bv.size(); ++index) { const auto& b = bv[index]; if (b.q == Q::ex) { for (const gen_uint_t v : b.v) { AVarset V; auto hint = V.cbegin(); #ifndef NDEBUG const auto old_it = dep_it; #endif while (dep_it != end and dep_it->second == ei) { hint = V.insert(hint, dep_it->first); ++dep_it; } #ifndef NDEBUG assert(Dvector::size_type(dep_it - old_it) == V.size()); #endif R.second[v] = &*R.first.insert(std::move(V)).first; ++ei; } } } assert(dep_it == end); } else { assert(dpo == DepOp::subtract or dpo == DepOp::add); gen_uint_t ei = 0; auto dep_it = rdep.cbegin(); const auto end = rdep.cend(); AVarset VA; for (block_v::size_type index = 1; index < bv.size(); ++index) { const auto& b = bv[index]; if (b.q == Q::fa) { auto hint = VA.end(); for (const gen_uint_t v : b.v) hint = VA.insert(hint,v); } else { assert(b.q == Q::ex); for (const gen_uint_t v : b.v) { AVarset V(VA); #ifndef NDEBUG const auto old_it = dep_it; #endif while (dep_it != end and dep_it->second == ei) { if (dpo == DepOp::subtract) V.erase(dep_it->first); else V.insert(dep_it->first); ++dep_it; } #ifndef NDEBUG assert(Dvector::size_type(dep_it-old_it) == (dpo==DepOp::add ? V.size()-VA.size() : VA.size() - V.size())); #endif R.second[v] = &*R.first.insert(std::move(V)).first; ++ei; } } } assert(dep_it == end); } return R; } FullDependencies create_dependencies(RandGen_t& g, const block_v& bv, const gen_uint_t na, const gen_uint_t ne, const dep_par_t deppar) { assert(valid(bv)); assert(deppar.second==DepOp::from_scratch or deppar.second==DepOp::subtract or deppar.second==DepOp::add); return create_dependencies(translate(choose_kn(deppar.first, deppar.second==DepOp::from_scratch ? na*ne : (deppar.second==DepOp::subtract ? num_dependencies(bv) : na*ne-num_dependencies(bv)), g, true), na, ne, bv, deppar.second), bv, deppar.second); } FullDependencies rename_dependencies(const Dvector& dv, const AVarSetsystem& ds, const rename_info_t& R) { assert(not ds.empty()); [[maybe_unused]] const auto size = dv.size(); assert(ds.size() <= size); assert(size >= 2); const auto size2 = R.second.size(); assert(size2 <= size); const auto max = R.first; assert(max >= 1); assert(size2 >= max); FullDependencies res{{}, max+1}; std::map<Dependency, Dependency> old2new; for (const AVarset& V : ds) { const Dependency olddep = &V; AVarset Vr; auto hint = Vr.end(); for (const gen_uint_t v : V) { assert(v < size and dv[v] == nullptr); if (v < size2 and R.second[v] != 0) hint = Vr.insert(hint, v); } const Dependency newdep = &*res.first.insert(std::move(Vr)).first; old2new[olddep] = newdep; } for (gen_uint_t v = 1; v < size2; ++v) { const gen_uint_t vr = R.second[v]; if (vr == 0) continue; assert(vr <= max); if (dv[v] != nullptr) res.second[vr] = old2new[dv[v]]; } return res; } // Similar to output_qblocks(out, bv, R) in QClauseSets.hpp: void output_dqblocks(std::ostream& out, const Dvector& dv, const AVarSetsystem& ds, const rename_info_t& R, const DepOp dpo) { const bool use_max = R.first != 0; const bool use_renaming = not R.second.empty(); assert(not use_renaming or use_max); typedef Dvector::size_type size_t; const size_t size = dv.size(); assert(size >= 2); const size_t size2 = R.second.size(); assert(size2 <= size); switch (dpo) { case DepOp::from_scratch: { if (not use_max) { out << Q::fa; for (size_t i = 1; i < size; ++i) if (dv[i] == nullptr) out << " " << i; out << " 0\n"; for (size_t i = 1; i < size; ++i) if (dv[i] != nullptr) { out << "d " << i; for (const auto v : *dv[i]) out << " " << v; out << " 0\n"; } } else if (use_renaming) { out << Q::fa; for (size_t i = 1; i < size2; ++i) if (dv[i] == nullptr and R.second[i] != 0) out << " " << R.second[i]; out << " 0\n"; for (size_t i = 1; i < size2; ++i) if (dv[i] != nullptr and R.second[i] != 0) { out << "d " << R.second[i]; for (const auto j : *dv[i]) { assert(dv[j] == nullptr); if (j >= size2) break; if (R.second[j] != 0) out << " " << R.second[j]; } out << " 0\n"; } } else { out << Q::fa; for (size_t i = 1; i <= R.first; ++i) if (dv[i] == nullptr) out << " " << i; out << " 0\n"; for (size_t i = 1; i <= R.first; ++i) if (dv[i] != nullptr) { out << "d " << i; for (const auto v : *dv[i]) if (v > R.first) break; else out << " " << v; out << " 0\n"; } } break;} case DepOp::subtract: { if (not use_max) { AVarset VA; auto hint = VA.end(); for (size_t i = 1; i < size;) { if (dv[i] == nullptr) { SUB_NOTMAX_FA: out << Q::fa << " " << i; hint = VA.insert(hint, i++); while (i < size and dv[i] == nullptr) { out << " " << i; hint = VA.insert(hint, i++); } out << " 0\n"; if (i < size) goto SUB_NOTMAX_EX; else goto SUB_EXIT; } else { SUB_NOTMAX_EX: bool found_ex = false; const auto find = ds.find(VA); const Dependency va = find == ds.end() ? nullptr : &*find; std::vector<gen_uint_t> d_cases; do { if (dv[i] == va) { if (not found_ex) { out << Q::ex << " " << i; found_ex = true; } else out << " " << i; } else d_cases.push_back(i); } while (++i < size and dv[i] != nullptr); if (found_ex) out << " 0\n"; if (not d_cases.empty()) { for (const gen_uint_t v : d_cases) { out << "d " << v; for (const gen_uint_t w : *dv[v]) out << " " << w; out << " 0\n"; } } if (i < size) goto SUB_NOTMAX_FA; else goto SUB_EXIT; } } } else if (use_renaming) { AVarset VA; for (size_t i = 1; i < size2; ++i) { if (dv[i] == nullptr) { SUB_RENAME_FA: bool found_fa = false; do if (const auto ri = R.second[i]; ri != 0) { assert(dv[i] == nullptr); VA.insert(i); if (not found_fa) { out << Q::fa << " " << ri; found_fa = true; } else out << " " << ri; } else if (dv[i] == nullptr) VA.insert(i); while (++i < size2 and (dv[i] == nullptr or R.second[i] == 0)); if (found_fa) out << " 0\n"; if (i < size2) goto SUB_RENAME_EX; else goto SUB_EXIT; } else { SUB_RENAME_EX: assert(i < size2 and dv[i] != nullptr); bool found_ex = false; const auto find = ds.find(VA); const Dependency va = find == ds.end() ? nullptr : &*find; std::vector<gen_uint_t> d_cases; /* Note: the above do-while-loop for fa does grab all immediately following non-occurring ex-variables, while this do-while-loop is not doing that for the fa-variables, since they need to be included into VA. */ do if (const auto ri = R.second[i]; ri != 0) { if (dv[i] == va) { if (not found_ex) { out << Q::ex << " " << ri; found_ex = true; } else out << " " << ri; } else d_cases.push_back(i); } while (++i < size2 and dv[i] != nullptr); if (found_ex) out << " 0\n"; for (const gen_uint_t v : d_cases) { assert(v < size2 and dv[v] != nullptr and R.second[v] != 0); out << "d " << R.second[v]; for (const gen_uint_t w : *dv[v]) if (w < size2 and R.second[w] != 0) out << " " << R.second[w]; out << " 0\n"; } if (i < size2) goto SUB_RENAME_FA; else goto SUB_EXIT; } } } else { [[ unimplemented ]]; } SUB_EXIT: break;} case DepOp::add : { [[ unimplemented ]]; break;} } } struct CoveredUniversal { const AVarSetsystem& Dsets; const Dvector& Dvec; CoveredUniversal(const AVarSetsystem& ds, const Dvector& dv) noexcept : Dsets(ds), Dvec(dv) {} bool operator()(const Clause& C) const noexcept { std::vector<gen_uint_t> A; AVarset D ; for (const Lit x : C) { assert(valid(x)); const gen_uint_t v = x.v.v; assert(v < Dvec.size()); const auto dp = Dvec[v]; if (dp == nullptr) A.push_back(v); else for (const gen_uint_t w : *dp) D.insert(w); } return std::includes(D.begin(), D.end(), A.begin(), A.end()); } }; RDimacsClauseList rand_dqclauseset(RandGen_t& g, const rparam_v& par, const AVarSetsystem& Dsets, const Dvector& Dvec) { const CoveredUniversal valid_clause(Dsets, Dvec); return rand_qclauseset_0(g, par, valid_clause); } enum class DQError { nane_prod = 110, too_many_deps = 111, too_few_deps = 112, overflow = 113, too_much_added = 114, bad_deps = 115, }; } #endif
[ "O.Kullmann@Swansea.ac.uk" ]
O.Kullmann@Swansea.ac.uk
7748bbc9916432d6b16e963010e7b5744815927b
91ba0c0c42b3fcdbc2a7778e4a4684ab1942714b
/Cpp/SDK/bp_fire_bin_a_parameters.h
014c48b3081e180f92cde85a5688de5638a1054d
[]
no_license
zH4x/SoT-SDK-2.1.1
0f8c1ec3ad8821de82df3f75a0356642b581b8c6
35144dfc629aeddf96c1741e9e27e5113a2b1bb3
refs/heads/main
2023-05-12T09:03:32.050860
2021-06-05T01:54:15
2021-06-05T01:54:15
373,997,263
0
0
null
null
null
null
UTF-8
C++
false
false
932
h
#pragma once // Name: SoT, Version: 2.1.1 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function bp_fire_bin_a.bp_fire_bin_a_C.UserConstructionScript struct Abp_fire_bin_a_C_UserConstructionScript_Params { }; // Function bp_fire_bin_a.bp_fire_bin_a_C.ReceiveBeginPlay struct Abp_fire_bin_a_C_ReceiveBeginPlay_Params { }; // Function bp_fire_bin_a.bp_fire_bin_a_C.ExecuteUbergraph_bp_fire_bin_a struct Abp_fire_bin_a_C_ExecuteUbergraph_bp_fire_bin_a_Params { int EntryPoint; // (Parm, ZeroConstructor, IsPlainOldData, NoDestructor) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "Massimo.linker@gmail.com" ]
Massimo.linker@gmail.com
5fc551b5ac295f01c143bf171cb387421af5de74
a4021ebc8dedab84c267301f25a04c82a5225827
/Robot_2D_navigation/src/send_goal.cpp
24a3a6f6e122d8f60e9eadf80d295a3ba4da91ce
[]
no_license
Ramune6110/ROS-navigation-wiki
e661c31b2290ba28a4071a5ec7c10d2e0114dad8
802363854148e90e921ef3a63c9e23683d9ee2c5
refs/heads/master
2022-11-22T06:10:15.585033
2020-07-22T11:23:01
2020-07-22T11:23:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,540
cpp
#include <ros/ros.h> #include <move_base_msgs/MoveBaseAction.h> #include <actionlib/client/simple_action_client.h> #include <tf/transform_broadcaster.h> // アクションクライアントの型 typedef actionlib::SimpleActionClient<move_base_msgs::MoveBaseAction> MoveBaseClient; int main(int argc, char** argv) { // ノード名の初期化 ros::init(argc, argv, "send_goal"); // ROSシステムと通信を行うためのノードハンドルの宣言 ros::NodeHandle nh; // アクションクライアントの宣言 MoveBaseClient ac("controller", true); // アクションサーバが実行されるまで待機 ac.waitForServer(); // アクション目標のオブジェクト宣言 move_base_msgs::MoveBaseGoal goal; goal.target_pose.header.frame_id = "map"; goal.target_pose.header.stamp = ros::Time::now() // アクション目標 try { goal.target_pose.position.x = atof(argv[1]); goal.target_pose.position.y = atof(argv[2]); goal.target_pose.orientation.w = atof(argv[3]); } catch (int e) { goal.target_pose.position.x = 2.0; goal.target_pose.position.y = 0.2; goal.target_pose.orientation.w = 0.1; } // アクション目標の転送 ROS_INFO("Sending move base goal"); ac.sendGoal(goal); ac.waitForResult(); if (ac.getState() == actionlib::SimpleClientGoalState::SUCCEEDED) { ROS_INFO("Success!"); } else { ROS_INFO("Error!"); } return 0; }
[ "arduino6110@gmail.com" ]
arduino6110@gmail.com
0936050e10624242e9cfbf3646ba5df050b0d4f4
3282ccae547452b96c4409e6b5a447f34b8fdf64
/SimModel_Python_API/simmodel_swig/SimModel/framework/SimFlowMover_ReturnFan_OnOff.hxx
492242aa4039a38e397532666fea0aab6d98ced7
[ "MIT" ]
permissive
EnEff-BIM/EnEffBIM-Framework
c8bde8178bb9ed7d5e3e5cdf6d469a009bcb52de
6328d39b498dc4065a60b5cc9370b8c2a9a1cddf
refs/heads/master
2021-01-18T00:16:06.546875
2017-04-18T08:03:40
2017-04-18T08:03:40
28,960,534
3
0
null
2017-04-18T08:03:40
2015-01-08T10:19:18
C++
UTF-8
C++
false
false
22,835
hxx
// Copyright (c) 2005-2014 Code Synthesis Tools CC // // This program was generated by CodeSynthesis XSD, an XML Schema to // C++ data binding compiler. // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA // // In addition, as a special exception, Code Synthesis Tools CC gives // permission to link this program with the Xerces-C++ library (or with // modified versions of Xerces-C++ that use the same license as Xerces-C++), // and distribute linked combinations including the two. You must obey // the GNU General Public License version 2 in all respects for all of // the code used other than Xerces-C++. If you modify this copy of the // program, you may extend this exception to your version of the program, // but you are not obligated to do so. If you do not wish to do so, delete // this exception statement from your version. // // Furthermore, Code Synthesis Tools CC makes a special exception for // the Free/Libre and Open Source Software (FLOSS) which is described // in the accompanying FLOSSE file. // #ifndef SIM_FLOW_MOVER_RETURN_FAN_ON_OFF_HXX #define SIM_FLOW_MOVER_RETURN_FAN_ON_OFF_HXX #ifndef XSD_USE_CHAR #define XSD_USE_CHAR #endif #ifndef XSD_CXX_TREE_USE_CHAR #define XSD_CXX_TREE_USE_CHAR #endif // Begin prologue. // // // End prologue. #include <xsd/cxx/config.hxx> #if (XSD_INT_VERSION != 4000000L) #error XSD runtime version mismatch #endif #include <xsd/cxx/pre.hxx> #include <xsd/cxx/xml/char-utf8.hxx> #include <xsd/cxx/tree/exceptions.hxx> #include <xsd/cxx/tree/elements.hxx> #include <xsd/cxx/tree/types.hxx> #include <xsd/cxx/xml/error-handler.hxx> #include <xsd/cxx/xml/dom/auto-ptr.hxx> #include <xsd/cxx/tree/parsing.hxx> #include <xsd/cxx/tree/parsing/byte.hxx> #include <xsd/cxx/tree/parsing/unsigned-byte.hxx> #include <xsd/cxx/tree/parsing/short.hxx> #include <xsd/cxx/tree/parsing/unsigned-short.hxx> #include <xsd/cxx/tree/parsing/int.hxx> #include <xsd/cxx/tree/parsing/unsigned-int.hxx> #include <xsd/cxx/tree/parsing/long.hxx> #include <xsd/cxx/tree/parsing/unsigned-long.hxx> #include <xsd/cxx/tree/parsing/boolean.hxx> #include <xsd/cxx/tree/parsing/float.hxx> #include <xsd/cxx/tree/parsing/double.hxx> #include <xsd/cxx/tree/parsing/decimal.hxx> namespace xml_schema { // anyType and anySimpleType. // typedef ::xsd::cxx::tree::type type; typedef ::xsd::cxx::tree::simple_type< char, type > simple_type; typedef ::xsd::cxx::tree::type container; // 8-bit // typedef signed char byte; typedef unsigned char unsigned_byte; // 16-bit // typedef short short_; typedef unsigned short unsigned_short; // 32-bit // typedef int int_; typedef unsigned int unsigned_int; // 64-bit // typedef long long long_; typedef unsigned long long unsigned_long; // Supposed to be arbitrary-length integral types. // typedef long long integer; typedef long long non_positive_integer; typedef unsigned long long non_negative_integer; typedef unsigned long long positive_integer; typedef long long negative_integer; // Boolean. // typedef bool boolean; // Floating-point types. // typedef float float_; typedef double double_; typedef double decimal; // String types. // typedef ::xsd::cxx::tree::string< char, simple_type > string; typedef ::xsd::cxx::tree::normalized_string< char, string > normalized_string; typedef ::xsd::cxx::tree::token< char, normalized_string > token; typedef ::xsd::cxx::tree::name< char, token > name; typedef ::xsd::cxx::tree::nmtoken< char, token > nmtoken; typedef ::xsd::cxx::tree::nmtokens< char, simple_type, nmtoken > nmtokens; typedef ::xsd::cxx::tree::ncname< char, name > ncname; typedef ::xsd::cxx::tree::language< char, token > language; // ID/IDREF. // typedef ::xsd::cxx::tree::id< char, ncname > id; typedef ::xsd::cxx::tree::idref< char, ncname, type > idref; typedef ::xsd::cxx::tree::idrefs< char, simple_type, idref > idrefs; // URI. // typedef ::xsd::cxx::tree::uri< char, simple_type > uri; // Qualified name. // typedef ::xsd::cxx::tree::qname< char, simple_type, uri, ncname > qname; // Binary. // typedef ::xsd::cxx::tree::buffer< char > buffer; typedef ::xsd::cxx::tree::base64_binary< char, simple_type > base64_binary; typedef ::xsd::cxx::tree::hex_binary< char, simple_type > hex_binary; // Date/time. // typedef ::xsd::cxx::tree::time_zone time_zone; typedef ::xsd::cxx::tree::date< char, simple_type > date; typedef ::xsd::cxx::tree::date_time< char, simple_type > date_time; typedef ::xsd::cxx::tree::duration< char, simple_type > duration; typedef ::xsd::cxx::tree::gday< char, simple_type > gday; typedef ::xsd::cxx::tree::gmonth< char, simple_type > gmonth; typedef ::xsd::cxx::tree::gmonth_day< char, simple_type > gmonth_day; typedef ::xsd::cxx::tree::gyear< char, simple_type > gyear; typedef ::xsd::cxx::tree::gyear_month< char, simple_type > gyear_month; typedef ::xsd::cxx::tree::time< char, simple_type > time; // Entity. // typedef ::xsd::cxx::tree::entity< char, ncname > entity; typedef ::xsd::cxx::tree::entities< char, simple_type, entity > entities; typedef ::xsd::cxx::tree::content_order content_order; // Flags and properties. // typedef ::xsd::cxx::tree::flags flags; typedef ::xsd::cxx::tree::properties< char > properties; // Parsing/serialization diagnostics. // typedef ::xsd::cxx::tree::severity severity; typedef ::xsd::cxx::tree::error< char > error; typedef ::xsd::cxx::tree::diagnostics< char > diagnostics; // Exceptions. // typedef ::xsd::cxx::tree::exception< char > exception; typedef ::xsd::cxx::tree::bounds< char > bounds; typedef ::xsd::cxx::tree::duplicate_id< char > duplicate_id; typedef ::xsd::cxx::tree::parsing< char > parsing; typedef ::xsd::cxx::tree::expected_element< char > expected_element; typedef ::xsd::cxx::tree::unexpected_element< char > unexpected_element; typedef ::xsd::cxx::tree::expected_attribute< char > expected_attribute; typedef ::xsd::cxx::tree::unexpected_enumerator< char > unexpected_enumerator; typedef ::xsd::cxx::tree::expected_text_content< char > expected_text_content; typedef ::xsd::cxx::tree::no_prefix_mapping< char > no_prefix_mapping; typedef ::xsd::cxx::tree::no_type_info< char > no_type_info; typedef ::xsd::cxx::tree::not_derived< char > not_derived; // Error handler callback interface. // typedef ::xsd::cxx::xml::error_handler< char > error_handler; // DOM interaction. // namespace dom { // Automatic pointer for DOMDocument. // using ::xsd::cxx::xml::dom::auto_ptr; #ifndef XSD_CXX_TREE_TREE_NODE_KEY__XML_SCHEMA #define XSD_CXX_TREE_TREE_NODE_KEY__XML_SCHEMA // DOM user data key for back pointers to tree nodes. // const XMLCh* const tree_node_key = ::xsd::cxx::tree::user_data_keys::node; #endif } } // Forward declarations. // namespace schema { namespace simxml { namespace MepModel { class SimFlowMover_ReturnFan_OnOff; } } } #include <memory> // ::std::auto_ptr #include <limits> // std::numeric_limits #include <algorithm> // std::binary_search #include <xsd/cxx/xml/char-utf8.hxx> #include <xsd/cxx/tree/exceptions.hxx> #include <xsd/cxx/tree/elements.hxx> #include <xsd/cxx/tree/containers.hxx> #include <xsd/cxx/tree/list.hxx> #include <xsd/cxx/xml/dom/parsing-header.hxx> #include "simflowmover_returnfan.hxx" namespace schema { namespace simxml { namespace MepModel { class SimFlowMover_ReturnFan_OnOff: public ::schema::simxml::MepModel::SimFlowMover_ReturnFan { public: // SimFlowMover_Name // typedef ::xml_schema::string SimFlowMover_Name_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_Name_type > SimFlowMover_Name_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_Name_type, char > SimFlowMover_Name_traits; const SimFlowMover_Name_optional& SimFlowMover_Name () const; SimFlowMover_Name_optional& SimFlowMover_Name (); void SimFlowMover_Name (const SimFlowMover_Name_type& x); void SimFlowMover_Name (const SimFlowMover_Name_optional& x); void SimFlowMover_Name (::std::auto_ptr< SimFlowMover_Name_type > p); // SimFlowMover_AvailSchedName // typedef ::xml_schema::idref SimFlowMover_AvailSchedName_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_AvailSchedName_type > SimFlowMover_AvailSchedName_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_AvailSchedName_type, char > SimFlowMover_AvailSchedName_traits; const SimFlowMover_AvailSchedName_optional& SimFlowMover_AvailSchedName () const; SimFlowMover_AvailSchedName_optional& SimFlowMover_AvailSchedName (); void SimFlowMover_AvailSchedName (const SimFlowMover_AvailSchedName_type& x); void SimFlowMover_AvailSchedName (const SimFlowMover_AvailSchedName_optional& x); void SimFlowMover_AvailSchedName (::std::auto_ptr< SimFlowMover_AvailSchedName_type > p); // SimFlowMover_FanTotalEff // typedef ::xml_schema::double_ SimFlowMover_FanTotalEff_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_FanTotalEff_type > SimFlowMover_FanTotalEff_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_FanTotalEff_type, char, ::xsd::cxx::tree::schema_type::double_ > SimFlowMover_FanTotalEff_traits; const SimFlowMover_FanTotalEff_optional& SimFlowMover_FanTotalEff () const; SimFlowMover_FanTotalEff_optional& SimFlowMover_FanTotalEff (); void SimFlowMover_FanTotalEff (const SimFlowMover_FanTotalEff_type& x); void SimFlowMover_FanTotalEff (const SimFlowMover_FanTotalEff_optional& x); // SimFlowMover_PresRise // typedef ::xml_schema::double_ SimFlowMover_PresRise_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_PresRise_type > SimFlowMover_PresRise_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_PresRise_type, char, ::xsd::cxx::tree::schema_type::double_ > SimFlowMover_PresRise_traits; const SimFlowMover_PresRise_optional& SimFlowMover_PresRise () const; SimFlowMover_PresRise_optional& SimFlowMover_PresRise (); void SimFlowMover_PresRise (const SimFlowMover_PresRise_type& x); void SimFlowMover_PresRise (const SimFlowMover_PresRise_optional& x); // SimFlowMover_MaxFlowRate // typedef ::xml_schema::double_ SimFlowMover_MaxFlowRate_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_MaxFlowRate_type > SimFlowMover_MaxFlowRate_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_MaxFlowRate_type, char, ::xsd::cxx::tree::schema_type::double_ > SimFlowMover_MaxFlowRate_traits; const SimFlowMover_MaxFlowRate_optional& SimFlowMover_MaxFlowRate () const; SimFlowMover_MaxFlowRate_optional& SimFlowMover_MaxFlowRate (); void SimFlowMover_MaxFlowRate (const SimFlowMover_MaxFlowRate_type& x); void SimFlowMover_MaxFlowRate (const SimFlowMover_MaxFlowRate_optional& x); // SimFlowMover_MotorEff // typedef ::xml_schema::double_ SimFlowMover_MotorEff_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_MotorEff_type > SimFlowMover_MotorEff_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_MotorEff_type, char, ::xsd::cxx::tree::schema_type::double_ > SimFlowMover_MotorEff_traits; const SimFlowMover_MotorEff_optional& SimFlowMover_MotorEff () const; SimFlowMover_MotorEff_optional& SimFlowMover_MotorEff (); void SimFlowMover_MotorEff (const SimFlowMover_MotorEff_type& x); void SimFlowMover_MotorEff (const SimFlowMover_MotorEff_optional& x); // SimFlowMover_MotorInAirstreamFrac // typedef ::xml_schema::double_ SimFlowMover_MotorInAirstreamFrac_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_MotorInAirstreamFrac_type > SimFlowMover_MotorInAirstreamFrac_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_MotorInAirstreamFrac_type, char, ::xsd::cxx::tree::schema_type::double_ > SimFlowMover_MotorInAirstreamFrac_traits; const SimFlowMover_MotorInAirstreamFrac_optional& SimFlowMover_MotorInAirstreamFrac () const; SimFlowMover_MotorInAirstreamFrac_optional& SimFlowMover_MotorInAirstreamFrac (); void SimFlowMover_MotorInAirstreamFrac (const SimFlowMover_MotorInAirstreamFrac_type& x); void SimFlowMover_MotorInAirstreamFrac (const SimFlowMover_MotorInAirstreamFrac_optional& x); // SimFlowMover_AirInNodeName // typedef ::xml_schema::string SimFlowMover_AirInNodeName_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_AirInNodeName_type > SimFlowMover_AirInNodeName_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_AirInNodeName_type, char > SimFlowMover_AirInNodeName_traits; const SimFlowMover_AirInNodeName_optional& SimFlowMover_AirInNodeName () const; SimFlowMover_AirInNodeName_optional& SimFlowMover_AirInNodeName (); void SimFlowMover_AirInNodeName (const SimFlowMover_AirInNodeName_type& x); void SimFlowMover_AirInNodeName (const SimFlowMover_AirInNodeName_optional& x); void SimFlowMover_AirInNodeName (::std::auto_ptr< SimFlowMover_AirInNodeName_type > p); // SimFlowMover_AirOutNodeName // typedef ::xml_schema::string SimFlowMover_AirOutNodeName_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_AirOutNodeName_type > SimFlowMover_AirOutNodeName_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_AirOutNodeName_type, char > SimFlowMover_AirOutNodeName_traits; const SimFlowMover_AirOutNodeName_optional& SimFlowMover_AirOutNodeName () const; SimFlowMover_AirOutNodeName_optional& SimFlowMover_AirOutNodeName (); void SimFlowMover_AirOutNodeName (const SimFlowMover_AirOutNodeName_type& x); void SimFlowMover_AirOutNodeName (const SimFlowMover_AirOutNodeName_optional& x); void SimFlowMover_AirOutNodeName (::std::auto_ptr< SimFlowMover_AirOutNodeName_type > p); // SimFlowMover_EndUseSubCat // typedef ::xml_schema::string SimFlowMover_EndUseSubCat_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_EndUseSubCat_type > SimFlowMover_EndUseSubCat_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_EndUseSubCat_type, char > SimFlowMover_EndUseSubCat_traits; const SimFlowMover_EndUseSubCat_optional& SimFlowMover_EndUseSubCat () const; SimFlowMover_EndUseSubCat_optional& SimFlowMover_EndUseSubCat (); void SimFlowMover_EndUseSubCat (const SimFlowMover_EndUseSubCat_type& x); void SimFlowMover_EndUseSubCat (const SimFlowMover_EndUseSubCat_optional& x); void SimFlowMover_EndUseSubCat (::std::auto_ptr< SimFlowMover_EndUseSubCat_type > p); // SimFlowMover_FanPowerRatioFuncSpdRatioCurveName // typedef ::xml_schema::idref SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_type > SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_type, char > SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_traits; const SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_optional& SimFlowMover_FanPowerRatioFuncSpdRatioCurveName () const; SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_optional& SimFlowMover_FanPowerRatioFuncSpdRatioCurveName (); void SimFlowMover_FanPowerRatioFuncSpdRatioCurveName (const SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_type& x); void SimFlowMover_FanPowerRatioFuncSpdRatioCurveName (const SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_optional& x); void SimFlowMover_FanPowerRatioFuncSpdRatioCurveName (::std::auto_ptr< SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_type > p); // SimFlowMover_FanEffRatioFuncSpdRatioCurveName // typedef ::xml_schema::idref SimFlowMover_FanEffRatioFuncSpdRatioCurveName_type; typedef ::xsd::cxx::tree::optional< SimFlowMover_FanEffRatioFuncSpdRatioCurveName_type > SimFlowMover_FanEffRatioFuncSpdRatioCurveName_optional; typedef ::xsd::cxx::tree::traits< SimFlowMover_FanEffRatioFuncSpdRatioCurveName_type, char > SimFlowMover_FanEffRatioFuncSpdRatioCurveName_traits; const SimFlowMover_FanEffRatioFuncSpdRatioCurveName_optional& SimFlowMover_FanEffRatioFuncSpdRatioCurveName () const; SimFlowMover_FanEffRatioFuncSpdRatioCurveName_optional& SimFlowMover_FanEffRatioFuncSpdRatioCurveName (); void SimFlowMover_FanEffRatioFuncSpdRatioCurveName (const SimFlowMover_FanEffRatioFuncSpdRatioCurveName_type& x); void SimFlowMover_FanEffRatioFuncSpdRatioCurveName (const SimFlowMover_FanEffRatioFuncSpdRatioCurveName_optional& x); void SimFlowMover_FanEffRatioFuncSpdRatioCurveName (::std::auto_ptr< SimFlowMover_FanEffRatioFuncSpdRatioCurveName_type > p); // AirflowNet_DistribComp_Fan_FanName // typedef ::xml_schema::idref AirflowNet_DistribComp_Fan_FanName_type; typedef ::xsd::cxx::tree::optional< AirflowNet_DistribComp_Fan_FanName_type > AirflowNet_DistribComp_Fan_FanName_optional; typedef ::xsd::cxx::tree::traits< AirflowNet_DistribComp_Fan_FanName_type, char > AirflowNet_DistribComp_Fan_FanName_traits; const AirflowNet_DistribComp_Fan_FanName_optional& AirflowNet_DistribComp_Fan_FanName () const; AirflowNet_DistribComp_Fan_FanName_optional& AirflowNet_DistribComp_Fan_FanName (); void AirflowNet_DistribComp_Fan_FanName (const AirflowNet_DistribComp_Fan_FanName_type& x); void AirflowNet_DistribComp_Fan_FanName (const AirflowNet_DistribComp_Fan_FanName_optional& x); void AirflowNet_DistribComp_Fan_FanName (::std::auto_ptr< AirflowNet_DistribComp_Fan_FanName_type > p); // AirflowNet_DistribComp_Fan_SupFanObjectType // typedef ::xml_schema::string AirflowNet_DistribComp_Fan_SupFanObjectType_type; typedef ::xsd::cxx::tree::optional< AirflowNet_DistribComp_Fan_SupFanObjectType_type > AirflowNet_DistribComp_Fan_SupFanObjectType_optional; typedef ::xsd::cxx::tree::traits< AirflowNet_DistribComp_Fan_SupFanObjectType_type, char > AirflowNet_DistribComp_Fan_SupFanObjectType_traits; const AirflowNet_DistribComp_Fan_SupFanObjectType_optional& AirflowNet_DistribComp_Fan_SupFanObjectType () const; AirflowNet_DistribComp_Fan_SupFanObjectType_optional& AirflowNet_DistribComp_Fan_SupFanObjectType (); void AirflowNet_DistribComp_Fan_SupFanObjectType (const AirflowNet_DistribComp_Fan_SupFanObjectType_type& x); void AirflowNet_DistribComp_Fan_SupFanObjectType (const AirflowNet_DistribComp_Fan_SupFanObjectType_optional& x); void AirflowNet_DistribComp_Fan_SupFanObjectType (::std::auto_ptr< AirflowNet_DistribComp_Fan_SupFanObjectType_type > p); // Constructors. // SimFlowMover_ReturnFan_OnOff (); SimFlowMover_ReturnFan_OnOff (const RefId_type&); SimFlowMover_ReturnFan_OnOff (const ::xercesc::DOMElement& e, ::xml_schema::flags f = 0, ::xml_schema::container* c = 0); SimFlowMover_ReturnFan_OnOff (const SimFlowMover_ReturnFan_OnOff& x, ::xml_schema::flags f = 0, ::xml_schema::container* c = 0); virtual SimFlowMover_ReturnFan_OnOff* _clone (::xml_schema::flags f = 0, ::xml_schema::container* c = 0) const; SimFlowMover_ReturnFan_OnOff& operator= (const SimFlowMover_ReturnFan_OnOff& x); virtual ~SimFlowMover_ReturnFan_OnOff (); // Implementation. // protected: void parse (::xsd::cxx::xml::dom::parser< char >&, ::xml_schema::flags); protected: SimFlowMover_Name_optional SimFlowMover_Name_; SimFlowMover_AvailSchedName_optional SimFlowMover_AvailSchedName_; SimFlowMover_FanTotalEff_optional SimFlowMover_FanTotalEff_; SimFlowMover_PresRise_optional SimFlowMover_PresRise_; SimFlowMover_MaxFlowRate_optional SimFlowMover_MaxFlowRate_; SimFlowMover_MotorEff_optional SimFlowMover_MotorEff_; SimFlowMover_MotorInAirstreamFrac_optional SimFlowMover_MotorInAirstreamFrac_; SimFlowMover_AirInNodeName_optional SimFlowMover_AirInNodeName_; SimFlowMover_AirOutNodeName_optional SimFlowMover_AirOutNodeName_; SimFlowMover_EndUseSubCat_optional SimFlowMover_EndUseSubCat_; SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_optional SimFlowMover_FanPowerRatioFuncSpdRatioCurveName_; SimFlowMover_FanEffRatioFuncSpdRatioCurveName_optional SimFlowMover_FanEffRatioFuncSpdRatioCurveName_; AirflowNet_DistribComp_Fan_FanName_optional AirflowNet_DistribComp_Fan_FanName_; AirflowNet_DistribComp_Fan_SupFanObjectType_optional AirflowNet_DistribComp_Fan_SupFanObjectType_; }; } } } #include <iosfwd> #include <xercesc/sax/InputSource.hpp> #include <xercesc/dom/DOMDocument.hpp> #include <xercesc/dom/DOMErrorHandler.hpp> namespace schema { namespace simxml { namespace MepModel { } } } #include <xsd/cxx/post.hxx> // Begin epilogue. // // // End epilogue. #endif // SIM_FLOW_MOVER_RETURN_FAN_ON_OFF_HXX
[ "cao@e3d.rwth-aachen.de" ]
cao@e3d.rwth-aachen.de
60d97aef8b1e9c4d8c10b1b568d65b6f6a1bb551
4352b5c9e6719d762e6a80e7a7799630d819bca3
/tutorials/eulerVortex.twitch/eulerVortex.cyclic.twitch.test.test/3.96/e
09a373417267d4987160d5269ebe6360765d348f
[]
no_license
dashqua/epicProject
d6214b57c545110d08ad053e68bc095f1d4dc725
54afca50a61c20c541ef43e3d96408ef72f0bcbc
refs/heads/master
2022-02-28T17:20:20.291864
2019-10-28T13:33:16
2019-10-28T13:33:16
184,294,390
1
0
null
null
null
null
UTF-8
C++
false
false
179,767
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "3.96"; object e; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 22500 ( 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.28 1006.28 1006.28 1006.28 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.28 1006.28 1006.28 1006.27 1006.27 1006.27 1006.27 1006.27 1006.28 1006.28 1006.28 1006.28 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.27 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.27 1006.27 1006.28 1006.28 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.26 1006.26 1006.25 1006.24 1006.24 1006.23 1006.23 1006.23 1006.23 1006.24 1006.24 1006.25 1006.25 1006.26 1006.26 1006.27 1006.28 1006.28 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.26 1006.25 1006.23 1006.22 1006.21 1006.21 1006.2 1006.2 1006.2 1006.2 1006.2 1006.21 1006.22 1006.23 1006.24 1006.25 1006.25 1006.26 1006.27 1006.28 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.25 1006.23 1006.22 1006.2 1006.19 1006.17 1006.16 1006.15 1006.14 1006.14 1006.14 1006.15 1006.16 1006.18 1006.19 1006.2 1006.22 1006.23 1006.25 1006.26 1006.27 1006.27 1006.28 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.24 1006.22 1006.2 1006.18 1006.15 1006.12 1006.1 1006.08 1006.06 1006.05 1006.05 1006.06 1006.07 1006.09 1006.11 1006.13 1006.16 1006.18 1006.2 1006.22 1006.24 1006.25 1006.26 1006.27 1006.28 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.25 1006.24 1006.21 1006.18 1006.15 1006.11 1006.07 1006.03 1005.99 1005.96 1005.93 1005.92 1005.92 1005.92 1005.94 1005.97 1006.01 1006.04 1006.08 1006.12 1006.15 1006.18 1006.21 1006.23 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.25 1006.23 1006.21 1006.17 1006.13 1006.08 1006.02 1005.96 1005.89 1005.83 1005.78 1005.74 1005.71 1005.71 1005.72 1005.75 1005.79 1005.85 1005.91 1005.97 1006.03 1006.08 1006.13 1006.16 1006.2 1006.22 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.24 1006.21 1006.17 1006.11 1006.05 1005.97 1005.88 1005.78 1005.68 1005.58 1005.5 1005.43 1005.39 1005.39 1005.41 1005.45 1005.52 1005.61 1005.7 1005.8 1005.89 1005.97 1006.04 1006.1 1006.15 1006.19 1006.22 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.28 1006.28 1006.26 1006.24 1006.21 1006.17 1006.11 1006.02 1005.92 1005.8 1005.66 1005.51 1005.36 1005.21 1005.08 1004.98 1004.92 1004.9 1004.93 1005.01 1005.12 1005.25 1005.4 1005.54 1005.68 1005.81 1005.92 1006.01 1006.08 1006.14 1006.18 1006.22 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.25 1006.22 1006.17 1006.11 1006.02 1005.9 1005.74 1005.56 1005.35 1005.12 1004.88 1004.66 1004.46 1004.3 1004.21 1004.19 1004.24 1004.35 1004.52 1004.72 1004.94 1005.17 1005.38 1005.57 1005.74 1005.88 1005.99 1006.07 1006.13 1006.18 1006.22 1006.24 1006.26 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.23 1006.19 1006.12 1006.02 1005.89 1005.71 1005.48 1005.21 1004.9 1004.55 1004.2 1003.85 1003.55 1003.32 1003.18 1003.15 1003.22 1003.39 1003.64 1003.95 1004.28 1004.62 1004.94 1005.23 1005.48 1005.68 1005.85 1005.97 1006.07 1006.13 1006.18 1006.22 1006.25 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.25 1006.21 1006.15 1006.05 1005.91 1005.71 1005.45 1005.11 1004.71 1004.25 1003.74 1003.21 1002.7 1002.26 1001.92 1001.72 1001.67 1001.78 1002.03 1002.4 1002.86 1003.35 1003.85 1004.32 1004.74 1005.11 1005.41 1005.65 1005.83 1005.97 1006.07 1006.14 1006.19 1006.23 1006.25 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.26 1006.23 1006.18 1006.08 1005.94 1005.74 1005.45 1005.08 1004.6 1004.01 1003.34 1002.59 1001.83 1001.09 1000.44 999.953 999.661 999.594 999.756 1000.13 1000.67 1001.32 1002.04 1002.77 1003.45 1004.07 1004.6 1005.03 1005.38 1005.64 1005.84 1005.98 1006.08 1006.15 1006.2 1006.23 1006.26 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.25 1006.21 1006.13 1006 1005.8 1005.51 1005.1 1004.57 1003.88 1003.05 1002.08 1001.01 999.915 998.864 997.949 997.253 996.841 996.75 996.983 997.514 998.285 999.223 1000.25 1001.28 1002.26 1003.14 1003.89 1004.51 1005 1005.38 1005.66 1005.86 1006 1006.1 1006.17 1006.21 1006.24 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.24 1006.18 1006.07 1005.88 1005.6 1005.19 1004.63 1003.87 1002.91 1001.74 1000.37 998.872 997.332 995.863 994.588 993.621 993.049 992.923 993.25 993.991 995.071 996.387 997.826 999.278 1000.65 1001.89 1002.95 1003.82 1004.51 1005.03 1005.42 1005.7 1005.9 1006.03 1006.12 1006.19 1006.23 1006.25 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.26 1006.22 1006.14 1005.98 1005.73 1005.34 1004.78 1004 1002.96 1001.62 999.993 998.102 996.035 993.918 991.905 990.159 988.833 988.044 987.865 988.307 989.323 990.808 992.622 994.608 996.617 998.521 1000.23 1001.7 1002.9 1003.85 1004.57 1005.11 1005.49 1005.76 1005.94 1006.07 1006.15 1006.2 1006.24 1006.27 1006.28 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.28 1006.26 1006.2 1006.09 1005.87 1005.53 1005 1004.24 1003.18 1001.76 999.94 997.72 995.154 992.36 989.507 986.795 984.439 982.638 981.557 981.297 981.881 983.245 985.252 987.71 990.409 993.143 995.737 998.068 1000.06 1001.7 1002.99 1003.98 1004.7 1005.22 1005.58 1005.83 1006 1006.11 1006.18 1006.22 1006.25 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.28 1006.28 1006.28 1006.28 1006.25 1006.18 1006.02 1005.73 1005.27 1004.56 1003.55 1002.13 1000.23 997.791 994.826 991.414 987.712 983.935 980.335 977.191 974.772 973.308 972.94 973.7 975.504 978.169 981.443 985.044 988.699 992.174 995.299 997.976 1000.17 1001.9 1003.22 1004.19 1004.88 1005.36 1005.69 1005.91 1006.05 1006.14 1006.2 1006.24 1006.27 1006.28 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.28 1006.28 1006.28 1006.28 1006.24 1006.14 1005.93 1005.55 1004.94 1004.02 1002.68 1000.82 998.312 995.11 991.23 986.786 981.971 977.046 972.329 968.187 964.992 963.055 962.565 963.557 965.914 969.394 973.669 978.376 983.162 987.723 991.834 995.36 998.254 1000.54 1002.27 1003.54 1004.45 1005.09 1005.51 1005.8 1005.98 1006.1 1006.18 1006.23 1006.26 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.29 1006.28 1006.28 1006.28 1006.29 1006.28 1006.23 1006.1 1005.82 1005.32 1004.54 1003.35 1001.63 999.211 995.973 991.849 986.879 981.202 975.041 968.706 962.61 957.252 953.137 950.671 950.081 951.389 954.429 958.888 964.352 970.365 976.485 982.332 987.618 992.167 995.908 998.862 1001.11 1002.76 1003.93 1004.75 1005.3 1005.67 1005.9 1006.05 1006.15 1006.21 1006.25 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.28 1006.28 1006.28 1006.29 1006.28 1006.22 1006.04 1005.68 1005.06 1004.06 1002.56 1000.37 997.294 993.189 987.989 981.751 974.626 966.859 958.832 951.098 944.34 939.218 936.217 935.578 937.296 941.152 946.751 953.582 961.086 968.725 976.034 982.664 988.391 993.12 996.865 999.718 1001.82 1003.31 1004.35 1005.05 1005.51 1005.81 1005.99 1006.11 1006.19 1006.23 1006.26 1006.28 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.28 1006.27 1006.28 1006.3 1006.29 1006.21 1005.98 1005.52 1004.74 1003.51 1001.63 998.898 995.065 989.966 983.547 975.867 967.071 957.428 947.435 937.858 929.598 923.447 919.928 919.278 921.469 926.242 933.129 941.507 950.69 960.02 968.947 977.056 984.086 989.916 994.555 998.103 1000.72 1002.59 1003.88 1004.75 1005.32 1005.69 1005.93 1006.07 1006.16 1006.22 1006.26 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.27 1006.27 1006.28 1006.3 1006.3 1006.19 1005.91 1005.35 1004.39 1002.88 1000.59 997.233 992.546 986.346 978.583 969.297 958.608 946.838 934.674 923.152 913.37 906.184 902.111 901.386 904.016 909.75 918.06 928.189 939.279 950.513 961.222 970.934 979.36 986.372 991.978 996.287 999.479 1001.76 1003.35 1004.41 1005.12 1005.57 1005.85 1006.03 1006.14 1006.2 1006.25 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.27 1006.27 1006.29 1006.32 1006.31 1006.18 1005.83 1005.15 1004.01 1002.19 999.437 995.401 989.784 982.404 973.197 962.16 949.388 935.31 920.883 907.416 896.119 887.816 882.993 881.964 884.868 891.535 901.392 913.52 926.824 940.253 952.976 964.441 974.351 982.598 989.211 994.32 998.123 1000.86 1002.76 1004.04 1004.88 1005.43 1005.77 1005.98 1006.11 1006.19 1006.24 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.28 1006.26 1006.26 1006.29 1006.33 1006.32 1006.16 1005.75 1004.95 1003.6 1001.47 998.211 993.448 986.856 978.249 967.531 954.636 939.656 923.201 906.54 891.187 878.327 868.668 862.726 861.023 863.951 871.473 882.981 897.358 913.22 929.209 944.252 957.681 969.189 978.718 986.354 992.271 996.697 999.895 1002.13 1003.64 1004.64 1005.28 1005.68 1005.93 1006.08 1006.17 1006.23 1006.26 1006.28 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.28 1006.26 1006.26 1006.29 1006.34 1006.33 1006.15 1005.67 1004.74 1003.19 1000.72 996.949 991.439 983.861 974.019 961.77 946.97 929.753 910.977 892.205 875.023 860.453 849.093 841.619 838.904 841.648 849.944 863.127 879.891 898.556 917.417 935.093 950.73 963.981 974.849 983.514 990.225 995.261 998.916 1001.48 1003.23 1004.38 1005.12 1005.58 1005.87 1006.05 1006.15 1006.22 1006.26 1006.28 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.3 1006.3 1006.28 1006.25 1006.25 1006.29 1006.36 1006.35 1006.15 1005.6 1004.55 1002.79 999.993 995.702 989.454 980.914 969.875 956.124 939.453 920.088 899.162 878.454 859.473 843.023 829.696 820.484 816.669 819.194 828.194 842.931 861.964 883.397 905.211 925.686 943.71 958.834 971.098 980.791 988.266 993.877 997.965 1000.85 1002.82 1004.12 1004.96 1005.49 1005.82 1006.01 1006.13 1006.21 1006.25 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.31 1006.3 1006.28 1006.25 1006.24 1006.29 1006.37 1006.37 1006.15 1005.54 1004.38 1002.43 999.314 994.528 987.583 978.145 965.99 950.832 932.417 911.102 888.283 865.841 845.114 826.74 811.474 800.713 796.061 798.525 808.151 824.132 845.001 868.794 893.291 916.453 936.865 953.9 967.58 978.281 986.475 992.611 997.086 1000.25 1002.43 1003.87 1004.81 1005.4 1005.76 1005.98 1006.12 1006.19 1006.24 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.31 1006.31 1006.28 1006.24 1006.23 1006.29 1006.38 1006.4 1006.17 1005.51 1004.25 1002.13 998.724 993.49 985.916 975.679 962.537 946.133 926.194 903.224 878.829 854.89 832.566 812.472 795.66 783.897 778.908 781.554 791.691 808.463 830.509 855.963 882.552 907.996 930.568 949.4 964.432 976.081 984.928 991.52 996.325 999.735 1002.08 1003.65 1004.67 1005.32 1005.71 1005.95 1006.1 1006.19 1006.24 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.31 1006.31 1006.28 1006.24 1006.22 1006.28 1006.39 1006.43 1006.19 1005.51 1004.17 1001.91 998.262 992.646 984.541 973.637 959.677 942.252 921.089 896.835 871.225 846.082 822.455 801.083 783.351 771.246 766.413 769.436 779.936 797.036 819.558 845.875 873.803 900.925 925.232 945.595 961.81 974.292 983.693 990.657 995.72 999.317 1001.8 1003.47 1004.56 1005.24 1005.67 1005.93 1006.09 1006.18 1006.23 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.29 1006.31 1006.31 1006.29 1006.23 1006.21 1006.27 1006.4 1006.46 1006.24 1005.53 1004.15 1001.78 997.96 992.052 983.537 972.123 957.551 939.378 917.354 892.235 865.809 839.823 815.31 793.219 775.188 763.254 758.868 762.337 773.066 790.146 812.589 839.064 867.584 895.708 921.218 942.729 959.87 973.006 982.832 990.064 995.303 999.023 1001.6 1003.33 1004.47 1005.19 1005.64 1005.91 1006.07 1006.17 1006.23 1006.26 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.31 1006.29 1006.29 1006.31 1006.32 1006.29 1006.23 1006.2 1006.25 1006.4 1006.49 1006.29 1005.6 1004.19 1001.78 997.845 991.75 982.963 971.215 956.26 937.648 915.162 889.625 862.809 836.395 811.474 789.193 771.311 759.781 755.874 759.718 770.572 787.462 809.508 835.645 864.14 892.63 918.777 940.993 958.736 972.3 982.389 989.769 995.093 998.869 1001.49 1003.26 1004.42 1005.16 1005.62 1005.9 1006.07 1006.17 1006.23 1006.26 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.32 1006.3 1006.29 1006.3 1006.32 1006.3 1006.24 1006.18 1006.23 1006.38 1006.51 1006.36 1005.7 1004.31 1001.89 997.934 991.77 982.864 970.969 955.868 937.134 914.595 889.089 862.322 835.917 811.054 789.007 771.519 760.398 756.797 760.816 771.683 788.342 809.897 835.438 863.472 891.79 918.038 940.497 958.487 972.221 982.391 989.789 995.101 998.861 1001.47 1003.24 1004.4 1005.14 1005.61 1005.89 1006.06 1006.17 1006.23 1006.26 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.32 1006.3 1006.28 1006.3 1006.32 1006.31 1006.25 1006.18 1006.2 1006.36 1006.52 1006.44 1005.83 1004.49 1002.13 998.231 992.124 983.258 971.408 956.398 937.853 915.647 890.596 864.299 838.328 813.934 792.439 775.48 764.688 761.148 765.061 775.774 792.186 813.275 838.127 865.423 893.145 919.016 941.274 959.148 972.782 982.84 990.12 995.325 999 1001.55 1003.28 1004.42 1005.15 1005.61 1005.9 1006.06 1006.17 1006.23 1006.26 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.32 1006.3 1006.28 1006.29 1006.32 1006.33 1006.26 1006.17 1006.17 1006.31 1006.51 1006.51 1005.99 1004.74 1002.48 998.726 992.803 984.141 972.526 957.831 939.757 918.231 894.014 868.57 843.412 819.827 799.132 782.833 772.358 768.712 772.263 782.612 798.705 819.329 843.437 869.789 896.566 921.639 943.283 960.692 973.959 983.716 990.745 995.751 999.276 1001.72 1003.38 1004.48 1005.19 1005.63 1005.9 1006.07 1006.17 1006.23 1006.26 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.32 1006.31 1006.28 1006.28 1006.32 1006.34 1006.28 1006.18 1006.14 1006.26 1006.48 1006.56 1006.16 1005.03 1002.92 999.397 993.779 985.484 974.288 960.115 942.759 922.204 899.138 874.876 850.848 828.341 808.658 793.191 783.15 779.396 782.449 792.241 807.852 827.903 851.143 876.339 901.857 925.76 946.421 963.044 975.697 984.974 991.631 996.354 999.672 1001.97 1003.53 1004.57 1005.24 1005.66 1005.92 1006.08 1006.17 1006.23 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.3 1006.31 1006.32 1006.31 1006.28 1006.27 1006.31 1006.34 1006.31 1006.2 1006.12 1006.2 1006.43 1006.59 1006.33 1005.36 1003.45 1000.21 995.002 987.228 976.631 963.166 946.732 927.379 905.718 882.91 860.271 839.052 820.559 806.114 796.705 792.98 795.538 804.632 819.546 838.801 860.96 884.768 908.747 931.162 950.523 966.086 977.909 986.551 992.733 997.103 1000.17 1002.29 1003.73 1004.69 1005.31 1005.7 1005.95 1006.09 1006.18 1006.23 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.32 1006.29 1006.26 1006.29 1006.34 1006.33 1006.23 1006.12 1006.14 1006.34 1006.57 1006.47 1005.7 1004.02 1001.12 996.407 989.288 979.458 966.873 951.528 933.543 913.471 892.325 871.281 851.517 834.35 821.082 812.502 808.993 811.138 819.461 833.474 851.678 872.507 894.691 916.893 937.567 955.38 969.665 980.485 988.371 993.994 997.959 1000.73 1002.65 1003.96 1004.83 1005.39 1005.75 1005.97 1006.11 1006.19 1006.24 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.31 1006.3 1006.32 1006.33 1006.3 1006.26 1006.28 1006.33 1006.35 1006.27 1006.14 1006.1 1006.24 1006.5 1006.56 1006.02 1004.62 1002.08 997.92 991.562 982.646 971.101 956.984 940.479 922.111 902.77 883.471 865.283 849.531 837.539 829.921 826.774 828.606 836.152 849.135 866.079 885.354 905.707 925.935 944.677 960.758 973.605 983.302 990.347 995.356 998.881 1001.34 1003.05 1004.21 1004.98 1005.49 1005.81 1006 1006.13 1006.2 1006.25 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.31 1006.3 1006.31 1006.33 1006.31 1006.27 1006.26 1006.31 1006.35 1006.32 1006.19 1006.08 1006.14 1006.39 1006.57 1006.28 1005.2 1003.05 999.468 993.928 986.039 975.678 962.914 947.972 931.37 913.91 896.449 879.913 865.622 854.943 848.339 845.616 847.216 854.042 865.956 881.502 899.047 917.404 935.512 952.188 966.419 977.731 986.233 992.39 996.758 999.829 1001.97 1003.46 1004.47 1005.14 1005.58 1005.86 1006.04 1006.14 1006.21 1006.25 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.32 1006.32 1006.3 1006.3 1006.32 1006.32 1006.28 1006.25 1006.28 1006.34 1006.35 1006.24 1006.1 1006.07 1006.25 1006.49 1006.44 1005.71 1003.99 1000.99 996.275 989.47 980.399 969.097 955.788 940.99 925.452 909.872 895.011 882.189 872.823 867.197 864.873 866.294 872.496 883.366 897.424 913.099 929.342 945.244 959.791 972.124 981.868 989.156 994.417 998.145 1000.76 1002.59 1003.86 1004.73 1005.3 1005.68 1005.92 1006.07 1006.16 1006.22 1006.26 1006.28 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.31 1006.3 1006.32 1006.33 1006.3 1006.26 1006.26 1006.32 1006.36 1006.3 1006.16 1006.05 1006.12 1006.35 1006.47 1006.09 1004.84 1002.42 998.516 992.788 985.051 975.278 963.651 950.684 937.091 923.4 910.199 898.845 890.762 886.002 883.985 885.274 890.966 900.825 913.321 927.025 941.088 954.768 967.196 977.652 985.855 991.96 996.355 999.467 1001.66 1003.19 1004.25 1004.97 1005.46 1005.77 1005.98 1006.1 1006.18 1006.23 1006.26 1006.28 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.31 1006.3 1006.31 1006.32 1006.31 1006.27 1006.25 1006.29 1006.35 1006.35 1006.23 1006.08 1006.03 1006.18 1006.38 1006.28 1005.51 1003.7 1000.58 995.889 989.458 981.207 971.258 960.133 948.496 936.655 925.074 915.197 908.347 904.291 902.48 903.713 909.008 917.852 928.698 940.37 952.26 963.773 974.159 982.821 989.564 994.556 998.144 1000.69 1002.48 1003.73 1004.6 1005.2 1005.6 1005.86 1006.03 1006.13 1006.2 1006.24 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.32 1006.32 1006.31 1006.3 1006.31 1006.32 1006.29 1006.26 1006.26 1006.32 1006.36 1006.3 1006.15 1006.03 1006.05 1006.21 1006.29 1005.92 1004.73 1002.39 998.691 993.5 986.684 978.347 969.045 959.32 949.229 939.227 930.856 925.16 921.635 919.994 921.288 926.244 933.993 943.094 952.729 962.533 972.009 980.492 987.495 992.9 996.884 999.745 1001.78 1003.21 1004.22 1004.93 1005.41 1005.73 1005.94 1006.08 1006.16 1006.22 1006.25 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.31 1006.3 1006.31 1006.32 1006.31 1006.27 1006.25 1006.28 1006.34 1006.34 1006.24 1006.09 1006 1006.04 1006.16 1006.07 1005.4 1003.82 1001.1 997.076 991.571 984.752 977.215 969.272 960.769 952.326 945.479 940.8 937.674 936.277 937.747 942.297 948.788 956.082 963.772 971.665 979.294 986.062 991.583 995.805 998.905 1001.13 1002.72 1003.85 1004.65 1005.2 1005.59 1005.84 1006.01 1006.12 1006.19 1006.23 1006.26 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.32 1006.32 1006.31 1006.3 1006.31 1006.32 1006.29 1006.26 1006.26 1006.3 1006.34 1006.31 1006.19 1006.04 1005.96 1006 1006 1005.7 1004.79 1002.99 1000.03 995.734 990.382 984.516 978.126 971.047 964.178 958.795 954.934 952.168 951.158 952.8 956.723 961.778 967.318 973.282 979.518 985.536 990.803 995.041 998.254 1000.61 1002.31 1003.53 1004.4 1005.01 1005.44 1005.74 1005.94 1006.07 1006.15 1006.21 1006.25 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.31 1006.31 1006.28 1006.26 1006.27 1006.31 1006.33 1006.27 1006.14 1005.99 1005.91 1005.86 1005.74 1005.3 1004.25 1002.2 999.039 995.14 990.773 985.674 979.947 974.657 970.537 967.291 964.956 964.418 966.031 969.032 972.611 976.638 981.207 986.076 990.726 994.717 997.876 1000.26 1002 1003.27 1004.19 1004.84 1005.31 1005.64 1005.87 1006.02 1006.12 1006.18 1006.23 1006.26 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.32 1006.31 1006.3 1006.3 1006.31 1006.3 1006.27 1006.26 1006.28 1006.31 1006.3 1006.23 1006.09 1005.93 1005.8 1005.7 1005.49 1004.87 1003.51 1001.43 998.867 995.712 991.72 987.376 983.552 980.38 977.646 975.86 975.7 976.946 978.865 981.191 984.113 987.647 991.412 994.915 997.846 1000.13 1001.85 1003.11 1004.04 1004.72 1005.21 1005.55 1005.8 1005.97 1006.08 1006.16 1006.21 1006.24 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.32 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.27 1006.26 1006.28 1006.3 1006.28 1006.19 1006.03 1005.87 1005.74 1005.54 1005.07 1004.21 1003.02 1001.43 999.139 996.2 993.214 990.544 988.034 985.855 984.647 984.597 985.236 986.239 987.77 990.018 992.791 995.643 998.192 1000.27 1001.87 1003.08 1003.98 1004.64 1005.13 1005.49 1005.75 1005.93 1006.05 1006.14 1006.19 1006.23 1006.26 1006.27 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.28 1006.27 1006.27 1006.27 1006.27 1006.23 1006.14 1006.02 1005.85 1005.58 1005.17 1004.66 1003.98 1002.89 1001.24 999.303 997.402 995.473 993.511 991.964 991.189 990.997 991.111 991.638 992.839 994.681 996.826 998.897 1000.67 1002.08 1003.18 1004.01 1004.63 1005.11 1005.45 1005.71 1005.89 1006.02 1006.11 1006.18 1006.22 1006.25 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.28 1006.27 1006.26 1006.26 1006.25 1006.22 1006.13 1005.96 1005.7 1005.4 1005.07 1004.54 1003.67 1002.56 1001.39 1000.12 998.653 997.256 996.272 995.693 995.338 995.271 995.746 996.836 998.325 999.889 1001.3 1002.47 1003.4 1004.13 1004.69 1005.12 1005.45 1005.7 1005.88 1006.01 1006.1 1006.16 1006.21 1006.24 1006.26 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.25 1006.23 1006.17 1006.05 1005.89 1005.7 1005.4 1004.9 1004.26 1003.58 1002.8 1001.82 1000.77 999.891 999.25 998.742 998.409 998.463 999.021 999.965 1001.05 1002.09 1002.99 1003.73 1004.33 1004.81 1005.19 1005.48 1005.71 1005.87 1006 1006.09 1006.15 1006.2 1006.23 1006.25 1006.27 1006.28 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.26 1006.23 1006.19 1006.13 1006.06 1005.9 1005.62 1005.26 1004.87 1004.4 1003.78 1003.05 1002.39 1001.84 1001.36 1000.97 1000.82 1001.04 1001.57 1002.26 1002.96 1003.59 1004.14 1004.6 1004.98 1005.29 1005.54 1005.74 1005.89 1006 1006.09 1006.15 1006.19 1006.23 1006.25 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.27 1006.26 1006.24 1006.22 1006.19 1006.12 1005.99 1005.81 1005.62 1005.36 1004.98 1004.51 1004.07 1003.67 1003.28 1002.93 1002.71 1002.74 1003 1003.38 1003.8 1004.2 1004.57 1004.89 1005.18 1005.42 1005.63 1005.79 1005.92 1006.02 1006.09 1006.15 1006.19 1006.22 1006.25 1006.26 1006.27 1006.29 1006.29 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.26 1006.25 1006.21 1006.15 1006.08 1006 1005.87 1005.65 1005.39 1005.12 1004.87 1004.59 1004.31 1004.11 1004.05 1004.14 1004.32 1004.53 1004.75 1004.98 1005.19 1005.39 1005.57 1005.73 1005.85 1005.96 1006.04 1006.11 1006.16 1006.19 1006.22 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.25 1006.22 1006.2 1006.17 1006.1 1005.99 1005.85 1005.72 1005.57 1005.39 1005.2 1005.04 1004.97 1004.98 1005.03 1005.12 1005.22 1005.34 1005.47 1005.6 1005.72 1005.83 1005.93 1006.01 1006.07 1006.13 1006.17 1006.2 1006.23 1006.24 1006.26 1006.27 1006.28 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.27 1006.26 1006.25 1006.24 1006.21 1006.15 1006.09 1006.03 1005.95 1005.84 1005.72 1005.62 1005.56 1005.54 1005.54 1005.55 1005.58 1005.64 1005.71 1005.78 1005.86 1005.93 1006 1006.06 1006.11 1006.15 1006.18 1006.21 1006.23 1006.25 1006.26 1006.27 1006.28 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.27 1006.25 1006.22 1006.2 1006.17 1006.14 1006.08 1006.01 1005.95 1005.91 1005.88 1005.86 1005.84 1005.84 1005.86 1005.89 1005.94 1005.98 1006.03 1006.07 1006.11 1006.14 1006.17 1006.2 1006.22 1006.24 1006.25 1006.26 1006.27 1006.28 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.27 1006.26 1006.25 1006.24 1006.22 1006.19 1006.15 1006.12 1006.1 1006.08 1006.05 1006.03 1006.02 1006.02 1006.04 1006.05 1006.08 1006.1 1006.13 1006.15 1006.18 1006.2 1006.21 1006.23 1006.24 1006.25 1006.26 1006.27 1006.28 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.27 1006.27 1006.26 1006.24 1006.22 1006.21 1006.2 1006.18 1006.16 1006.14 1006.13 1006.13 1006.13 1006.14 1006.15 1006.16 1006.18 1006.19 1006.2 1006.22 1006.23 1006.24 1006.25 1006.26 1006.27 1006.27 1006.28 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.27 1006.27 1006.26 1006.25 1006.24 1006.23 1006.22 1006.21 1006.2 1006.2 1006.2 1006.2 1006.2 1006.2 1006.21 1006.22 1006.23 1006.24 1006.24 1006.25 1006.26 1006.26 1006.27 1006.28 1006.28 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.28 1006.28 1006.28 1006.27 1006.27 1006.26 1006.25 1006.25 1006.24 1006.24 1006.24 1006.23 1006.23 1006.24 1006.24 1006.24 1006.25 1006.25 1006.26 1006.26 1006.27 1006.27 1006.28 1006.28 1006.28 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.28 1006.28 1006.27 1006.27 1006.27 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.26 1006.27 1006.27 1006.27 1006.28 1006.28 1006.28 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.28 1006.28 1006.28 1006.28 1006.27 1006.27 1006.27 1006.27 1006.27 1006.27 1006.27 1006.27 1006.27 1006.28 1006.28 1006.28 1006.28 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.28 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.31 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.3 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 1006.29 ) ; boundaryField { emptyPatches_empt { type empty; } top_cyc { type cyclic; } bottom_cyc { type cyclic; } inlet_cyc { type cyclic; } outlet_cyc { type cyclic; } } // ************************************************************************* //
[ "tdg@debian" ]
tdg@debian
b393da1149d2abefb1aaee2e623e419ddd347a48
6433dd2d101492c20ab2f6088835fdb895bce6d4
/Classes/PlaySE.cpp
6f4c25a74c177af7105d8d500bc79ac422739d44
[]
no_license
UenoTAKAFUMI/Cocos2dx_practice_chapter01
eea3366b0c448841230dec7d6064e8d952123a21
878076a635c9feb9a331ba401a2ed46b73c44a2a
refs/heads/master
2021-01-10T20:21:44.229815
2014-07-09T00:44:47
2014-07-09T00:44:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,341
cpp
// // PlaySE.cpp // Nyangame // // Created by P on 2014/07/05. // // #include "PlaySE.h" #include "SimpleAudioEngine.h" using namespace cocos2d; using namespace CocosDenshion; CCPlaySE::CCPlaySE(std::string sound) { m_sound = sound; } CCPlaySE* CCPlaySE::create(std::string sound) { CCPlaySE* pRet = new CCPlaySE(sound); if (pRet) { pRet->autorelease(); } return pRet; } void CCPlaySE::update(float time) { CC_UNUSED_PARAM(time); SimpleAudioEngine::sharedEngine()->playEffect(m_sound.c_str()); } ActionInstant * CCPlaySE::reverse() const { return (ActionInstant*)(CCPlaySE::create(m_sound)); } // おそらくこれを実装しないとうまくいかないからreverseと同じような効果がでればいい感じで試しに実装 ActionInstant* CCPlaySE::clone() const { return (ActionInstant*)(CCPlaySE::create(m_sound)); } //CCObject* CCPlaySE::copyWithZone(CCZone* pZone) //{ // CCZone* pNewZone = NULL; // CCPlaySE* pRet = NULL; // if (pZone && pZone->m_pCopyObject) // { // pRet = (CCPlaySE*) (pZone->m_pCopyObject); // } // else // { // pRet = new CCPlaySE(m_sound); // pZone = pNewZone = new CCZone(pRet); // } // // CCActionInstant::copyWithZone(pZone); // CC_SAFE_DELETE(pNewZone); // return pRet; //}
[ "git.email.ueno@gmail.com" ]
git.email.ueno@gmail.com
8557c2b2dc5967a03f1b62dee216ffb266d6fa2f
ea3f27b607f017e6a975ddfa63c9d1eaa649c7ea
/CodeForce/1690/E.cpp
130b22930e69fb21aabf0f56bd159a90a9438128
[]
no_license
Igorjan94/CF
fbbda0037a866ebab33efe2db49b67302e420c37
816648a3a8e310e790e43b9c62a56ae6cc273844
refs/heads/master
2023-08-08T19:13:14.785199
2023-08-08T18:44:22
2023-08-08T18:44:22
19,123,715
0
0
null
2021-01-09T02:10:45
2014-04-24T20:52:42
C++
UTF-8
C++
false
false
2,742
cpp
// Igorjan94, template version from 13 October 2017. C++17 version, modified 18 march 2020 (writeln<tuple>, whole->all) {{{ #include <bits/stdc++.h> #ifdef ONLINE_JUDGE #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt") #endif using namespace std; #define FOR(i, m, n) for (int i = m; i < (int) (n); ++i) #define ROF(i, m, n) for (int i = m; i >= (int) (n); --i) #define forn(i, n) for (int i = 0; i < (int) (n); ++i) #define fori1(n) for (int i = 1; i < (int) (n); ++i) #define forj1(n) for (int j = 1; j < (int) (n); ++j) #define fori(n) for (int i = 0; i < (int) (n); ++i) #define forj(n) for (int j = 0; j < (int) (n); ++j) #define SZ(a) int(size(a)) typedef pair<int, int> pii; typedef vector<int> vi; typedef long long ll; #define pb push_back #define all(a) begin(a), end(a) #define ints(a...) int a; readln(a) [[maybe_unused]] const int MOD = 1000000007; [[maybe_unused]] const int INTMAX = numeric_limits<int>::max(); #define ttt12i template<class T1, class T2> inline #define ttti template<class T> inline void writeln(){cout<<"\n";}ttti void print(T&& a);ttti void priws(T&& a);ttti void read(T& a); template<class... Args> inline void readln(Args&... args){(read(args),...);} template<class H, class...T> inline void writeln(H&& h,T&&...t){priws(h);(print(t),...);writeln();} //Igorjan //}}} void run() { ints(n, k); vi a(n); readln(a); vector<pair<int, int>> g; ll ans = 0; fori(n) ans += a[i] / k, g.pb({a[i] % k, a[i]}); sort(all(g)); int i = 0; int j = n - 1; while (i < j) { while (i < j && g[i].first + g[j].first < k) ++i; if (i < j) ++i, ans++; --j; } writeln(ans); } //{{{ int main() { ios_base::sync_with_stdio(false); ints(t); fori(t) run(); cerr << fixed << setprecision(0) << "Execution time = " << 1000.0 * clock() / CLOCKS_PER_SEC << "ms\n"; return 0; } #define a _a #define n _n ttt12i ostream&operator<<(ostream&os,pair<T1,T2>const&a); template<typename T,typename D=decltype(*begin(declval<T>())),typename enable_if<!is_same<T,basic_string<char>>::value>::type* =nullptr> ostream&operator<<(ostream&os,T const&a){auto it=begin(a);if(it!=end(a))os<<*it++;while(it!=end(a))os<<"\n "[is_fundamental<typename T::value_type>::value]<<*it++;return os;} ttt12i ostream&operator<<(ostream&os,pair<T1,T2>const&a){return os<<a.first<<" "<<a.second;} ttt12i istream&operator>>(istream&is,pair<T1,T2>&a){return is>>a.first>>a.second;} ttti istream&operator>>(istream&is,vector<T>&a){fori(a.size())is>>a[i];return is;} ttti void print(T&&a){cout<<" "<<a;} ttti void priws(T&&a){cout<<a;} ttti void read(T&a){cin>>a;} //}}}
[ "igorjan94@mail.ru" ]
igorjan94@mail.ru
40e4df12d90c5d28095414a74b7818e3b2180420
6105ea25e9375e5aa19c4e83659a3a1d8fa27b21
/Test_beam_2015/Test_Beam_2015/code/src/anaSelector.h
8917960f1f4a956e483964cc2e694e1465883c17
[]
no_license
Fedespring/TestBeam
cf1a97504f513aa55cbcf76b5dac44098ca365b8
97b0fae42476386307be8bbee7f87a49b37703f4
refs/heads/master
2021-01-10T17:19:35.925632
2015-10-30T08:54:22
2015-10-30T08:54:22
45,199,883
0
0
null
null
null
null
UTF-8
C++
false
false
9,162
h
////////////////////////////////////////////////////////// // This class has been automatically generated on // Tue Nov 18 13:00:44 2014 by ROOT version 5.34/14 // from TTree t1/GemData // found on file: recSim_run34.root ////////////////////////////////////////////////////////// #ifndef anaSelector_h #define anaSelector_h #include <TROOT.h> #include <TChain.h> #include <TFile.h> #include <TSelector.h> // Header file for the classes stored in the TTree if any. // Fixed size dimensions of array or collections stored in the TTree if any. class anaSelector : public TSelector { private: public : TTree *fChain; //!pointer to the analyzed TTree or TChain // Declaration of leaf types Int_t Event; Int_t nGemHit; Int_t GemHit_apv[500]; //[nGemHit] Int_t GemHit_plane[500]; //[nGemHit] Int_t GemHit_view[500]; //[nGemHit] Int_t GemHit_half[500]; //[nGemHit] Int_t GemHit_sample[500]; //[nGemHit] Int_t GemHit_strip[500]; //[nGemHit] Int_t GemHit_q[500]; //[nGemHit] Double_t GemHit_x[500]; //[nGemHit] Double_t GemHit_y[500]; //[nGemHit] Double_t GemHit_z[500]; //[nGemHit] Int_t nGemCluster; Int_t GemCluster1d_plane[500]; //[nGemCluster] Int_t GemCluster1d_view[500]; //[nGemCluster] Int_t GemCluster1d_q[500]; //[nGemCluster] Int_t GemCluster1d_nHit[500]; //[nGemCluster] Double_t GemCluster1d_x[500]; //[nGemCluster] Double_t GemCluster1d_y[500]; //[nGemCluster] Double_t GemCluster1d_z[500]; //[nGemCluster] Double_t GemCluster1d_dx[500]; //[nGemCluster] Double_t GemCluster1d_dy[500]; //[nGemCluster] Double_t GemCluster1d_dz[500]; //[nGemCluster] Int_t nGemCluster2d; Int_t GemCluster2d_plane[500]; //[nGemCluster2d] Int_t GemCluster2d_q[500]; //[nGemCluster2d] Int_t GemCluster2d_qx[500]; //[nGemCluster2d] Int_t GemCluster2d_qy[500]; //[nGemCluster2d] Double_t GemCluster2d_x[500]; //[nGemCluster2d] Double_t GemCluster2d_y[500]; //[nGemCluster2d] Double_t GemCluster2d_z[500]; //[nGemCluster2d] Double_t GemCluster2d_dx[500]; //[nGemCluster2d] Double_t GemCluster2d_dy[500]; //[nGemCluster2d] Double_t GemCluster2d_dz[500]; //[nGemCluster2d] Int_t GemCluster2d_nHit[500]; //[nGemCluster2d] Int_t GemCluster2d_nHitX[500]; //[nGemCluster2d] Int_t GemCluster2d_nHitY[500]; //[nGemCluster2d] // List of branches TBranch *b_Event; //! TBranch *b_nGemHit; //! TBranch *b_GemHit_apv; //! TBranch *b_GemHit_plane; //! TBranch *b_GemHit_view; //! TBranch *b_GemHit_half; //! TBranch *b_GemHit_sample; //! TBranch *b_GemHit_strip; //! TBranch *b_GemHit_q; //! TBranch *b_GemHit_x; //! TBranch *b_GemHit_y; //! TBranch *b_GemHit_z; //! TBranch *b_nGemCluster; //! TBranch *b_GemCluster1d_plane; //! TBranch *b_GemCluster1d_view; //! TBranch *b_GemCluster1d_q; //! TBranch *b_GemCluster1d_nHit; //! TBranch *b_GemCluster1d_x; //! TBranch *b_GemCluster1d_y; //! TBranch *b_GemCluster1d_z; //! TBranch *b_GemCluster1d_dx; //! TBranch *b_GemCluster1d_dy; //! TBranch *b_GemCluster1d_dz; //! TBranch *b_nGemCluster2d; //! TBranch *b_GemCluster2d_plane; //! TBranch *b_GemCluster2d_q; //! TBranch *b_GemCluster2d_qx; //! TBranch *b_GemCluster2d_qy; //! TBranch *b_GemCluster2d_x; //! TBranch *b_GemCluster2d_y; //! TBranch *b_GemCluster2d_z; //! TBranch *b_GemCluster2d_dx; //! TBranch *b_GemCluster2d_dy; //! TBranch *b_GemCluster2d_dz; //! TBranch *b_GemCluster2d_nHit; //! TBranch *b_GemCluster2d_nHitX; //! TBranch *b_GemCluster2d_nHitY; //! anaSelector(TTree * /*tree*/ =0) : fChain(0) { } virtual ~anaSelector() { } virtual Int_t Version() const { return 2; } virtual void Begin(TTree *tree , TString); virtual void SlaveBegin(TTree *tree); virtual void Init(TTree *tree); virtual Bool_t Notify(); virtual Bool_t Process(Long64_t entry); virtual Int_t GetEntry(Long64_t entry, Int_t getall = 0) { return fChain ? fChain->GetTree()->GetEntry(entry, getall) : 0; } virtual void SetOption(const char *option) { fOption = option; } virtual void SetObject(TObject *obj) { fObject = obj; } virtual void SetInputList(TList *input) { fInput = input; } virtual TList *GetOutputList() const { return fOutput; } virtual void SlaveTerminate(); virtual void Terminate(TString); //ClassDef(anaSelector,0); }; #endif #ifdef anaSelector_cxx void anaSelector::Init(TTree *tree) { // The Init() function is called when the selector needs to initialize // a new tree or chain. Typically here the branch addresses and branch // pointers of the tree will be set. // It is normally not necessary to make changes to the generated // code, but the routine can be extended by the user if needed. // Init() will be called many times when running on PROOF // (once per file to be processed). // Set branch addresses and branch pointers if (!tree) return; fChain = tree; fChain->SetMakeClass(1); fChain->SetBranchAddress("Event", &Event, &b_Event); fChain->SetBranchAddress("nGemHit", &nGemHit, &b_nGemHit); fChain->SetBranchAddress("GemHit_apv", GemHit_apv, &b_GemHit_apv); fChain->SetBranchAddress("GemHit_plane", GemHit_plane, &b_GemHit_plane); fChain->SetBranchAddress("GemHit_view", GemHit_view, &b_GemHit_view); fChain->SetBranchAddress("GemHit_half", GemHit_half, &b_GemHit_half); fChain->SetBranchAddress("GemHit_sample", GemHit_sample, &b_GemHit_sample); fChain->SetBranchAddress("GemHit_strip", GemHit_strip, &b_GemHit_strip); fChain->SetBranchAddress("GemHit_q", GemHit_q, &b_GemHit_q); fChain->SetBranchAddress("GemHit_x", GemHit_x, &b_GemHit_x); fChain->SetBranchAddress("GemHit_y", GemHit_y, &b_GemHit_y); fChain->SetBranchAddress("GemHit_z", GemHit_z, &b_GemHit_z); fChain->SetBranchAddress("nGemCluster", &nGemCluster, &b_nGemCluster); fChain->SetBranchAddress("GemCluster1d_plane", GemCluster1d_plane, &b_GemCluster1d_plane); fChain->SetBranchAddress("GemCluster1d_view", GemCluster1d_view, &b_GemCluster1d_view); fChain->SetBranchAddress("GemCluster1d_q", GemCluster1d_q, &b_GemCluster1d_q); fChain->SetBranchAddress("GemCluster1d_nHit", GemCluster1d_nHit, &b_GemCluster1d_nHit); fChain->SetBranchAddress("GemCluster1d_x", GemCluster1d_x, &b_GemCluster1d_x); fChain->SetBranchAddress("GemCluster1d_y", GemCluster1d_y, &b_GemCluster1d_y); fChain->SetBranchAddress("GemCluster1d_z", GemCluster1d_z, &b_GemCluster1d_z); fChain->SetBranchAddress("GemCluster1d_dx", GemCluster1d_dx, &b_GemCluster1d_dx); fChain->SetBranchAddress("GemCluster1d_dy", GemCluster1d_dy, &b_GemCluster1d_dy); fChain->SetBranchAddress("GemCluster1d_dz", GemCluster1d_dz, &b_GemCluster1d_dz); fChain->SetBranchAddress("nGemCluster2d", &nGemCluster2d, &b_nGemCluster2d); fChain->SetBranchAddress("GemCluster2d_plane", GemCluster2d_plane, &b_GemCluster2d_plane); fChain->SetBranchAddress("GemCluster2d_q", GemCluster2d_q, &b_GemCluster2d_q); fChain->SetBranchAddress("GemCluster2d_qx", GemCluster2d_qx, &b_GemCluster2d_qx); fChain->SetBranchAddress("GemCluster2d_qy", GemCluster2d_qy, &b_GemCluster2d_qy); fChain->SetBranchAddress("GemCluster2d_x", GemCluster2d_x, &b_GemCluster2d_x); fChain->SetBranchAddress("GemCluster2d_y", GemCluster2d_y, &b_GemCluster2d_y); fChain->SetBranchAddress("GemCluster2d_z", GemCluster2d_z, &b_GemCluster2d_z); fChain->SetBranchAddress("GemCluster2d_dx", GemCluster2d_dx, &b_GemCluster2d_dx); fChain->SetBranchAddress("GemCluster2d_dy", GemCluster2d_dy, &b_GemCluster2d_dy); fChain->SetBranchAddress("GemCluster2d_dz", GemCluster2d_dz, &b_GemCluster2d_dz); fChain->SetBranchAddress("GemCluster2d_nHit", GemCluster2d_nHit, &b_GemCluster2d_nHit); fChain->SetBranchAddress("GemCluster2d_nHitX", GemCluster2d_nHitX, &b_GemCluster2d_nHitX); fChain->SetBranchAddress("GemCluster2d_nHitY", GemCluster2d_nHitY, &b_GemCluster2d_nHitY); } Bool_t anaSelector::Notify() { // The Notify() function is called when a new file is opened. This // can be either for a new TTree in a TChain or when when a new TTree // is started when using PROOF. It is normally not necessary to make changes // to the generated code, but the routine can be extended by the // user if needed. The return value is currently not used. return kTRUE; } #endif // #ifdef anaSelector_cxx
[ "fedespring@gmail.com" ]
fedespring@gmail.com
0551d10cb1609ecf39c8042925de9f5d92207f77
9fcabf72c99fff2b51334dd1bce0d993de0b2d96
/Lesson01/Chapter02/GetWords.cpp
45460680ad88965d72f2c373d3080e6af587596a
[]
no_license
tuturuam/TICPP
d5f13c69f3aa6082fc0a4334974eb38d69ba4163
fc8924091103cc259c115e0e2129ae304bbff50f
refs/heads/master
2021-05-09T02:45:46.073690
2018-01-28T04:38:22
2018-01-28T04:38:22
119,219,986
0
0
null
null
null
null
UTF-8
C++
false
false
133
cpp
#include <iostream> #include <fstream> using namespace std; int main() { cout << "There are three word word word words" << endl; }
[ "aizadmoh@gmail.com" ]
aizadmoh@gmail.com
061d40216ecf9659afbe7094c163478043560a0c
00b70b0a46e8193284fbbfab9d06a94ae2df4c24
/Project1/RoutesAnalyser.h
cf8d613a6ce026308f07b49d28ac3e39b6ee2439
[]
no_license
CallMeK/Computer-Network-Codes
20785a1a03731b78051feae3b3ff81c6cb9f85a2
f575d1483c8b33145bcb937dfb7442065dd3dbe7
refs/heads/master
2021-01-13T01:03:10.348752
2015-10-08T19:52:18
2015-10-08T19:52:18
43,912,720
0
1
null
null
null
null
UTF-8
C++
false
false
3,812
h
// // RoutesAnalyser.h // Project1 // // Created by WuKe on 2/25/15. // Copyright (c) 2015 WuKe. All rights reserved. // #ifndef __Project1__RoutesAnalyser__ #define __Project1__RoutesAnalyser__ #include <iostream> #include <fstream> #include <sstream> #include <string> #include <vector> #include <bitset> #include <map> #include <set> class node { public: std::bitset<32> network_prefix; std::string ip_str; node* left; node* right; node() { this->left = NULL; this->right = NULL; } node(std::bitset<32> network_prefix_) { this->network_prefix = network_prefix_; this->left = NULL; this->right = NULL; } void SetValue(std::bitset<32> network_prefix_) { this->network_prefix = network_prefix_; } ~node() { delete this->left; delete this->right; } }; class BinaryTrie { public: BinaryTrie() { this->head = NULL; } BinaryTrie(std::vector<std::string>& routes_dest) { this->set(routes_dest); } void set(std::vector<std::string>& routes_dest) { for(unsigned int i = 0; i < routes_dest.size(); i++) { this->insert(routes_dest[i]); } } ~BinaryTrie() { delete this->head; } const std::string& find(const std::string& new_ip); private: void ip_convert(const std::string& network_prefix, std::bitset<32>& temp, int& size); void IptoBitset(const std::string& network_prefix, std::bitset<32>& temp); void insert(const std::string& network); node* head; }; class RoutesAnalyser { public: RoutesAnalyser(std::string filename) { this->filename = filename; createTable(); createBinaryTrie(); } std::string search(const std::string& new_ip); const std::vector<std::string>& report(const std::string& matched_network) { return table[matched_network]; } void printTable(); private: void createTable(); void createBinaryTrie(); std::map<std::string, std::vector<std::string> > table; std::string filename; BinaryTrie bt; }; class ARPtable { public: ARPtable(const std::string& filename) { this->filename = filename; this->err = "Not Found"; createTable(); } const std::string& search(const std::string& ip) { if (this->table.find(ip)!=this->table.end()) { return this->table[ip]; } else { return this->err; } } private: void createTable(); std::map<std::string,std::string> table; std::string filename; std::string err; }; class Nattable { public: Nattable(const std::string& filename) { this->filename = filename; this->err = "Not Found"; createTable(); } const std::string& search(const std::string& interface) { if (this->table.find(interface)!=this->table.end()) { return this->table[interface]; } else { return this->err; } } bool check() { return this->exist; } void translate_forward(std::string& interface,std::string& source, std::string& source_port, std::string& trans_source, std::string& trans_source_port); void translate_back(std::string& destination, std::string& dest_port); bool tablecheck(std::string& destination, std::string& dest_port); void printTranstable(); private: void createTable(); std::map<std::string, std::string> table; std::string filename; std::string err; std::map<std::string, std::string> transtable; std::set<std::string> portset; bool exist; }; #endif /* defined(__Project1__RoutesAnalyser__) */
[ "wkcoke.work@gmail.com" ]
wkcoke.work@gmail.com
7e5f9593defffd8beccd309c17b645fc6255cf1a
6e57bdc0a6cd18f9f546559875256c4570256c45
/cts/tests/tests/debug/libdebugtest/android_debug_cts.cpp
3aa43181f6632b2419a20b1137993944d76e2a06
[]
no_license
dongdong331/test
969d6e945f7f21a5819cd1d5f536d12c552e825c
2ba7bcea4f9d9715cbb1c4e69271f7b185a0786e
refs/heads/master
2023-03-07T06:56:55.210503
2020-12-07T04:15:33
2020-12-07T04:15:33
134,398,935
2
1
null
2022-11-21T07:53:41
2018-05-22T10:26:42
null
UTF-8
C++
false
false
4,154
cpp
/* * Copyright (C) 2017 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. */ #include <jni.h> #include <gtest/gtest.h> #include <android/log.h> #include <errno.h> #include <sys/ptrace.h> #include <sys/types.h> #include <sys/uio.h> #include <sys/wait.h> #include <unistd.h> #include <functional> #include <vector> #define LOG_TAG "Cts-DebugTest" // Used by child processes only #define assert_or_exit(x) \ do { \ if(x) break; \ __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, "Assertion " #x " failed. errno(%d): %s", \ errno, strerror(errno)); \ _exit(1); \ } while (0) static void parent(pid_t child) { int status; int wpid = waitpid(child, &status, 0); ASSERT_EQ(child, wpid); ASSERT_TRUE(WIFEXITED(status)); ASSERT_EQ(0, WEXITSTATUS(status)); } static void run_test(const std::function<void(pid_t)> &test) { pid_t pid = fork(); ASSERT_NE(-1, pid) << "fork() failed with " << strerror(errno); if (pid != 0) { parent(pid); } else { // child test(getppid()); _exit(0); } } static void ptraceAttach(pid_t parent) { assert_or_exit(ptrace(PTRACE_ATTACH, parent, nullptr, nullptr) == 0); int status; assert_or_exit(waitpid(parent, &status, __WALL) == parent); assert_or_exit(WIFSTOPPED(status)); assert_or_exit(WSTOPSIG(status) == SIGSTOP); assert_or_exit(ptrace(PTRACE_DETACH, parent, nullptr, nullptr) == 0); } TEST(DebugTest, ptraceAttach) { run_test(ptraceAttach); } static void processVmReadv(pid_t parent, const std::vector<long *> &addresses) { long destination; iovec local = { &destination, sizeof destination }; for (long *address : addresses) { // Since we are forked, the address will be valid in the remote process as well. iovec remote = { address, sizeof *address }; __android_log_print(ANDROID_LOG_INFO, LOG_TAG, "%s About to read %p\n", __func__, address); assert_or_exit(process_vm_readv(parent, &local, 1, &remote, 1, 0) == sizeof destination); // Compare the data with the contents of our memory. assert_or_exit(destination == *address); } } static long global_variable = 0x47474747; // public static native boolean processVmReadv(); TEST(DebugTest, processVmReadv) { long stack_variable = 0x42424242; // This runs the test with a selection of different kinds of addresses and // makes sure the child process (simulating a debugger) can read them. run_test([&](pid_t parent) { processVmReadv(parent, std::vector<long *>{ &global_variable, &stack_variable, reinterpret_cast<long *>(&processVmReadv)}); }); } // public static native boolean processVmReadvNullptr(); TEST(DebugTest, processVmReadvNullptr) { // Make sure reading unallocated memory behaves reasonably. run_test([](pid_t parent) { long destination; iovec local = {&destination, sizeof destination}; iovec remote = {nullptr, sizeof(long)}; assert_or_exit(process_vm_readv(parent, &local, 1, &remote, 1, 0) == -1); assert_or_exit(errno == EFAULT); }); }
[ "dongdong331@163.com" ]
dongdong331@163.com
b70f7e2229a7fa9e1c630d587ee8a298e9670a45
3d1c29b2001a05e0c960f9eb7adb5535572e4dfe
/MainDialog.cpp
b4169a056c68dfc451a04425a8066bca3f6a460e
[]
no_license
lorenzostefanopiscioli/TaskScheduler
e64b3ab4319cfe7fb6ec2f773826ad1a1f9b2b44
8bf91a476e2c63b1a6b653827bf5cacdc0c84962
refs/heads/master
2022-11-09T22:08:12.891426
2020-06-30T02:12:48
2020-06-30T02:12:48
275,805,808
0
0
null
null
null
null
UTF-8
C++
false
false
5,113
cpp
#include "MainDialog.h" MainDialog::MainDialog( const TiCare::Scheduler *_scheduler, QWidget *parent ) : QDialog( parent ), scheduler( _scheduler ) { createSystemTrayIconActions(); createSystemTrayIcon(); taskComboBox = new QComboBox; taskComboBox->addItem( tr( "Seleziona un task" ) ); taskComboBox->addItems( scheduler->getTaskNameList() ); timeList = new QListWidget; QGroupBox *taskListGroupBox = new QGroupBox( tr( "List" ) ); QVBoxLayout *taskListLayout = new QVBoxLayout; taskListLayout->addWidget( taskComboBox ); taskListLayout->addWidget( timeList ); taskListGroupBox->setLayout( taskListLayout ); QPushButton *configButton = new QPushButton( "Configurazione" ); QPushButton *closeButton = new QPushButton( "Nascondi" ); QGroupBox *buttonGroupBox = new QGroupBox(); QHBoxLayout *buttonGroupLayout = new QHBoxLayout; buttonGroupLayout->addWidget( configButton ); buttonGroupLayout->addWidget( closeButton ); buttonGroupBox->setLayout( buttonGroupLayout ); QGridLayout *mainLayout = new QGridLayout; mainLayout->addWidget( taskListGroupBox, 0, 0, 5, 1 ); mainLayout->addWidget( buttonGroupBox, 5, 0, 1, 1 ); setLayout( mainLayout ); connect( taskComboBox, &QComboBox::currentTextChanged, this, &MainDialog::setTimeList ); connect( closeButton, &QAbstractButton::clicked, this, &MainDialog::hide ); connect( configButton, &QAbstractButton::clicked, this, &MainDialog::configTask ); systemTrayIcon->show(); // Assegna titolo, icona e dimensione alla finestra di gestione // delle impostazioni dello Scheduler setWindowTitle( tr( "Ti-Care | Scheduler" ) ); setWindowIcon( QIcon( ":/Icons/logo64x64.png" ) ); resize( 500, 400 ); } void MainDialog::closeEvent( QCloseEvent *event ) { if ( systemTrayIcon->isVisible() ) { QMessageBox::information( this, tr( "Ti-Care | Scheduler" ), tr( "Il programma resterà attivo nella " "system tray di Windows. Per terminare, " "l'applicazione, cliccare <b>Chiudi</b> " "nel menu contestuale della system " "tray." ) ); // Nascondo il dialogo delle impostazioni hide(); // Interrompo l'ulteriore propagazione dell'evento event->ignore(); } } void MainDialog::createSystemTrayIconActions() { // Connette la voce del menu contestuale della system tray "Impostazioni" // all'apertura della finestra di dialogo per il controllo delle // configurazioni showSettingsDialogAction = new QAction( tr( "&Impostazioni" ), this ); connect( showSettingsDialogAction, &QAction::triggered, this, &QWidget::showNormal ); // Istanzia l'azione di chiusura e la connette con // l'effettiva chiusura dell'applicazione quitAction = new QAction( tr( "&Chiudi" ), this ); connect( quitAction, &QAction::triggered, qApp, &QCoreApplication::quit ); } // Metodo che imposta l'interazione dell'applicazione // con la system tray del sistema operativo void MainDialog::createSystemTrayIcon() { // Crea un menu contestuale per la System Tray systemTrayIconMenu = new QMenu( this ); // Aggiunge al menu contestuale il comando per mostrare // la finestra di gestione delle impostazioni systemTrayIconMenu->addAction( showSettingsDialogAction ); systemTrayIconMenu->addSeparator(); // Aggiunge al menu contestuale il comando per chiudere // l'applicazione systemTrayIconMenu->addAction( quitAction ); // Istanzia un oggetto System Tray Icon systemTrayIcon = new QSystemTrayIcon( this ); // Assegna alla System Tray il menu contestulae systemTrayIcon->setContextMenu( systemTrayIconMenu ); // Assegna l'icona che verrà visualizzata nella System Tray di Windows systemTrayIcon->setIcon( QIcon( ":/Icons/logo64x64.png" ) ); } // Questo metodo serve ad aggiornare la lista dei timer void MainDialog::setTimeList( const QString currentText ) { // Se non viene selezionato alcun task, esco if ( currentText == "Seleziona un task" ) { timeList->clear(); return; } // Svuoto la lista dei nomi dei timer associata al task scelto in // precedenza timeList->clear(); // aggiungo i nomi dei timer alla lista associata al nuovo task scelto timeList->addItems( scheduler->getTask( currentText )->getTimerNameList() ); } // Questo metodo viene invocato a seguito di un click sul bottone impostazioni // ed eseguie il metodo virtuale setConfiguration() del task selezionato nel // combobox void MainDialog::configTask() { // Se non viene selezionato alcun task, esco if ( taskComboBox->currentText() == "Seleziona un task" ) { return; } // Invoco il metodo virtuale per la configurazione del task scheduler->getTask( taskComboBox->currentText() )->setConfiguration(); }
[ "lorenzo.piscioli@digitalview.ai" ]
lorenzo.piscioli@digitalview.ai
3046d2ea75a9db7a174f70e76cd6ed059e82936a
45a26f28a29ab6dd9d3bcf315117d814f50808b1
/src/AppleMacRISC4PE/AppleMacRISC4PE-160.0.9/IOPlatformPlugins/PBG4_PlatformPlugin/CtrlLoops/PBG4_DPSCtrlLoop.cpp
2a19899649db63d8dfdd0944efda22a7143a7e95
[]
no_license
zeborrego/opensource.apple.com
0eb9161029ce8440dbdc4b5157b3927a6e381f8d
88cbaab4a42e97cbbfe6b660f2f0945536821be6
refs/heads/master
2021-07-06T17:16:28.241638
2017-10-02T11:58:56
2017-10-02T11:58:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
22,672
cpp
/* * Copyright (c) 2004 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * Copyright (c) 2004 Apple Computer, Inc. All rights reserved. * * File: $Id: PBG4_DPSCtrlLoop.cpp,v 1.12 2005/01/21 23:11:59 yee1 Exp $ * */ #include <IOKit/IOLib.h> #include <machine/machine_routines.h> #include "IOPlatformPluginSymbols.h" #include "IOPlatformPlugin.h" #include "PBG4_PlatformPlugin.h" #include "PBG4_DPSCtrlLoop.h" #define super IOPlatformCtrlLoop OSDefineMetaClassAndStructors( PBG4_DPSCtrlLoop, IOPlatformCtrlLoop ) #pragma mark - #pragma mark *** Initialization *** #pragma mark - /******************************************************************************* * Method: * initPlatformCtrlLoop * * Purpose: * Fetch control loop parameters (from thermal profile, SDB, etc.) and setup * control loop initial state. ******************************************************************************/ // virtual IOReturn PBG4_DPSCtrlLoop::initPlatformCtrlLoop(const OSDictionary *dict) { char functionName[64]; OSData *pHandle; OSNumber *watts; UInt32 pHandleValue; IOService *resources; IOReturn result; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop entered\n" ); // Find pHandle provided by platform expert if (pHandle = OSDynamicCast (OSData, gPlatformPlugin->getProvider()->getProperty (kAAPLPHandle))) pHandleValue = *(UInt32 *)pHandle->getBytesNoCopy(); else pHandleValue = 0; // Find service that handles cpu voltage if (gPlatformPlugin->getProvider()->getProperty (kCpuVCoreSelect)) { sprintf(functionName, "%s-%08lx", kCpuVCoreSelect, pHandleValue); fCpuVoltageControlSym = OSSymbol::withCString(functionName); CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop waiting for function '%s'\n", functionName ); resources = gPlatformPlugin->waitForService(gPlatformPlugin->resourceMatching(fCpuVoltageControlSym)); if (resources) { fCpuVoltageControlService = OSDynamicCast (IOService, resources->getProperty(fCpuVoltageControlSym)); } } else { IOLog ("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no property '%s' - Dynamic Power Step will NOT be supported\n", kCpuVCoreSelect); CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop no property '%s'\n", kCpuVCoreSelect); return kIOReturnError; } // lookup the cpu temp sensor by key kCPUTempSensorDesc if (!(fCpuTempSensor = lookupAndAddSensorByKey (kCPUTempSensorDesc))) CTRLLOOP_DLOG("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no CPU sensor!!\n"); // lookup the battery temp sensor by key kBatteryTempSensorDesc if (!(fBattTempSensor = lookupAndAddSensorByKey (kBatteryTempSensorDesc))) CTRLLOOP_DLOG("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no battery sensor!!\n"); // lookup the track pad temp sensor by key kTrackPadTempSensorDesc if (!(fTPadTempSensor = lookupAndAddSensorByKey (kTrackPadTempSensorDesc))) CTRLLOOP_DLOG("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no track pad sensor!!\n"); // lookup the Uni-N temp sensor by key kUniNTempSensorDesc if (!(fUniNTempSensor = lookupAndAddSensorByKey (kUniNTempSensorDesc))) CTRLLOOP_DLOG("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no Uni-N temp sensor!!\n"); // lookup the power supply temp sensor by key kPwrSupTempSensorDesc if (!(fPwrSupTempSensor = lookupAndAddSensorByKey (kPwrSupTempSensorDesc))) CTRLLOOP_DLOG("PBG4_DPSCtrlLoop::initPlatformCtrlLoop no power supply sensor!!\n"); watts = OSDynamicCast (OSNumber, dict->getObject (kCtrlLoopPowerAdapterBaseline)); if (watts) { fBaselineWatts = watts->unsigned32BitValue(); // CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop got baseline watts %d\n", fBaselineWatts ); } else { fBaselineWatts = 0xFF; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop no baseline watts - defaulting to worst case\n" ); } result = super::initPlatformCtrlLoop (dict); fUsePowerPlay = gPlatformPlugin->fUsePowerPlay; // pmRootDomain is the recipient of GPU controller messages fPMRootDomain = OSDynamicCast(IOPMrootDomain, gPlatformPlugin->waitForService(gPlatformPlugin->serviceMatching("IOPMrootDomain"))); if (result == kIOReturnSuccess) (void) setInitialState (); CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::initPlatformCtrlLoop done\n" ); return result; } #pragma mark - #pragma mark *** Control Loop Primitives *** #pragma mark - /******************************************************************************* * Method: * setProcessorVoltage * * Purpose: * Set the processor voltage high or low for vStep * stepValue == 0 => run fast (voltage high) * stepValue == 1 => run slow (voltage low) * * NOTE - this is opposite the sense of how the GPIO is set: * gpioData == 1 (true) => run fast (voltage high) * gpioData == 0 (false) => run slow (voltage low) ******************************************************************************/ bool PBG4_DPSCtrlLoop::setProcessorVoltage( UInt32 stepValue ) { if (fCpuVoltageControlSym && fCpuVoltageControlService) fCpuVoltageControlService->callPlatformFunction (fCpuVoltageControlSym, false, (void *) (stepValue == 0), 0, 0, 0); // Wait for power to settle when raising voltage if (stepValue == 0) IODelay (600); // 600 µseconds return true; } /******************************************************************************* * Method: * setProcessorVStepValue * * Purpose: * Set the processor stepping to the desired stepping value. * metaState == 0 => run fast (DP) * metaState == 1 => run slow (DP) * ******************************************************************************/ bool PBG4_DPSCtrlLoop::setProcessorVStepValue( const OSNumber *newMetaState ) { bool newUserStateSlow, prevUserStateSlow; //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - entered\n"); if (newMetaState->isEqualTo(fPreviousMetaState)) { //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - no change in metaState - exiting\n"); return true; } // Determine new and old conditions newUserStateSlow = (newMetaState->isEqualTo(gIOPPluginOne) || newMetaState->isEqualTo(gIOPPluginThree)); prevUserStateSlow = (fPreviousMetaState->isEqualTo(gIOPPluginOne) || fPreviousMetaState->isEqualTo(gIOPPluginThree)); // If going fast, raise voltage first if (!newUserStateSlow) { // Step the processor voltage up //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - stepping voltage up\n"); setProcessorVoltage (0); //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - step voltage up done\n"); } if (prevUserStateSlow != newUserStateSlow) { //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - setting processor speed %d\n", //newUserStateSlow ? 1 : 0); #if defined( __ppc__ ) ml_set_processor_speed( newUserStateSlow ? 1 : 0 ); #endif //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - done setting processor speed\n"); IODelay (300); // 300 µseconds } // else CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - no processor speed change required\n"); // If going slow, lower voltage after setting speed if (newUserStateSlow) { // Step the processor voltage down //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - stepping voltage down\n"); setProcessorVoltage (1); //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - step voltage down done\n"); } fPreviousMetaState = newMetaState; // Remember state //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setProcessorVStepValue - done\n"); return( true ); } /******************************************************************************* * Method: * setGraphicsProcessorStepValue * * Purpose: * Set the graphics processor stepping to the desired stepping value. * metaState == 0 => run fast * metaState == 1 => run slow * * This is not based on load but based on user setting "Reduced" in the * Energy Saver preferences. This is transmitted to us in the high bit * (kSetAggrUserAuto) of the setAggressiveness call ******************************************************************************/ bool PBG4_DPSCtrlLoop::setGraphicsProcessorStepValue( const OSNumber *newGPUMetaState ) { bool newUserStateSlow, prevUserStateSlow; // Determine new and old conditions newUserStateSlow = (newGPUMetaState->isEqualTo(gIOPPluginOne) || newGPUMetaState->isEqualTo(gIOPPluginThree)); prevUserStateSlow = (fPreviousGPUMetaState->isEqualTo(gIOPPluginOne) || fPreviousGPUMetaState->isEqualTo(gIOPPluginThree)); if (prevUserStateSlow != newUserStateSlow) { //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setGraphicsProcessorStepValue - sending %d\n", //newUserStateSlow ? 3 : 0); // Change GPU accordingly fPMRootDomain->setAggressiveness (kIOFBLowPowerAggressiveness, newUserStateSlow ? 3 : 0); fPreviousGPUMetaState = newGPUMetaState; // Remember state } return true; } /******************************************************************************* * Method: * batteryIsOvercurrent * ******************************************************************************/ bool PBG4_DPSCtrlLoop::batteryIsOvercurrent( void ) { bool envBatOvercurrent; if (!gPlatformPlugin->fEnvDataIsValid) // No battery data yet, assume we're OK return false; // Get the currently reported global environment state of the battery current envBatOvercurrent = (gPlatformPlugin->getEnv(gIOPPluginEnvBatteryOvercurrent) == kOSBooleanTrue); //If we're in an overcurrent situation re-evaluate it once the deadline expires if (fBatteryIsOvercurrent) { if (AbsoluteTime_to_scalar(&deadline) == 0) { // Deadline has expired, clear it unless the env overcurrent says otherwise fBatteryIsOvercurrent = envBatOvercurrent; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::batteryIsOvercurrent - deadline expired, setting overcurrent '%s'\n", fBatteryIsOvercurrent ? "true" : "false"); } } else { // Not currently in overcurrent if (envBatOvercurrent) { // Setup a deadline (kOvercurrentInterval seconds) for the overcurrent to expire clock_interval_to_deadline( kOvercurrentInterval /* seconds */, NSEC_PER_SEC, &deadline ); fBatteryIsOvercurrent = true; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::batteryIsOvercurrent - setting overcurrent 'true'\n"); } } return fBatteryIsOvercurrent; } /******************************************************************************* * Method: * lowPowerForcedDPS * ******************************************************************************/ bool PBG4_DPSCtrlLoop::lowPowerForcedDPS( void ) { OSNumber *powerStatus; UInt32 powerVal, curWatts; bool result; result = false; powerStatus = OSDynamicCast (OSNumber, gPlatformPlugin->getEnv (gIOPPluginEnvPowerStatus)); if (powerStatus) { powerVal = powerStatus->unsigned32BitValue(); curWatts = (powerVal >> 24) & 0xFF; if (!((curWatts > 0) && (curWatts >= fBaselineWatts)) || ((curWatts == 0) && ((powerVal & (kIOPMACInstalled | kIOPMACnoChargeCapability)) == (kIOPMACInstalled | kIOPMACnoChargeCapability)))) { CTRLLOOP_DLOG ("PBG4_DPSCtrlLoop::lowPowerForcedDPS - got powerStatus 0x%x, curWatts %d\n", powerVal, curWatts); if (((powerVal & (kIOPMACInstalled | kIOPMACnoChargeCapability)) == (kIOPMACInstalled | kIOPMACnoChargeCapability)) || ((powerVal & (kIOPMRawLowBattery | kIOPMBatteryDepleted)) != 0) || ((powerVal & kIOPMBatteryInstalled) == 0)) { CTRLLOOP_DLOG ("PBG4_DPSCtrlLoop::lowPowerForcedDPS - forcing reduced speed\n"); result = true; // force low speed } } } return result; } #pragma mark - #pragma mark *** High Level Transition Logic *** #pragma mark - /******************************************************************************* * Method: * setInitialState * * Purpose: * At the end of initialization, we set the stepping and voltage to known * initial settings. Initial state is based on dynamic power step and * whether or not we can step and switch voltage. At this early point we'll * never have a temp sensor or a slew controller available yet. * ******************************************************************************/ bool PBG4_DPSCtrlLoop::setInitialState( void ) { bool success = false; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setInitialState entered\n" ); fPreviousMetaState = gIOPPluginOne; // Start out in low state setMetaState( fPreviousMetaState ); // Remember the initial state fPreviousGPUMetaState = gIOPPluginZero; // Graphics starts out high ctrlloopState = kIOPCtrlLoopFirstAdjustment; success = updateMetaState(); CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::setInitialState returning %s\n", success ? "true" : "false" ); return success; } /******************************************************************************* * Method: * adjustControls * * Purpose: * Implements high-level slewing/stepping algorithm and performs system sleep * check(s). * ******************************************************************************/ void PBG4_DPSCtrlLoop::adjustControls( void ) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::adjustControls entered\n" ); updateMetaState(); // updateMetaState does the work for us CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::adjustControls done\n" ); return; } /******************************************************************************* * Method: * updateMetaState * * Purpose: * Examine environmental conditions and choose DPSCtrlLoop's meta state. * ******************************************************************************/ // virtual bool PBG4_DPSCtrlLoop::updateMetaState( void ) { OSNumber *tmpNumber; const OSNumber *newMetaState, *newGPUMetaState; UInt32 dpsTarget; bool isIdle, didAct; if (ctrlloopState == kIOPCtrlLoopNotReady) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState entered with control loop not ready\n"); return false; } if (ctrlloopState == kIOPCtrlLoopWillSleep) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState entered with control loop in sleep state - exiting\n" ); return false; } //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState entered\n" ); // fetch the current Dynamic Power Step setting tmpNumber = OSDynamicCast( OSNumber, gPlatformPlugin->getEnv( gIOPPluginEnvDynamicPowerStep ) ); dpsTarget = tmpNumber ? tmpNumber->unsigned32BitValue() : 0; /* * Check idle state - based on no events happening in kIdleInterval when we're on battery * Only do this if we are DFS low and not in an overcurrent situation, i.e., the idleTimer is active * Once the deadline reaches zero, we consider ourselves in the idle state until fIdleTimerActive is cleared */ isIdle = false; if ((gPlatformPlugin->getEnv(gIOPPluginEnvACPresent) == kOSBooleanFalse) && fIdleTimerActive) isIdle = (AbsoluteTime_to_scalar(&deadline) == 0); /* * gIOPPluginEnvUserPowerAuto being true indicates user set "Automatic" in Energy Saver Preferences * If it's false then the user has chosen either "Highest" or "Reduced". If it's "Reduced", then * our response to that is to request the graphics processor run slower * * If fUsePowerPlay is false we never go slow on graphics */ if ((gPlatformPlugin->getEnv(gIOPPluginEnvUserPowerAuto) == kOSBooleanTrue) || !fUsePowerPlay) { if (!fUsePowerPlay) // Stay with highest newGPUMetaState = gIOPPluginZero; else { if (isIdle) CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState GPU low based on idle\n"); // Base it on the idle state newGPUMetaState = isIdle ? gIOPPluginOne : gIOPPluginZero; } } else // Use whatever user set newGPUMetaState = dpsTarget ? gIOPPluginOne : gIOPPluginZero; // Start out in 0 - the highest metaState or 1 if DFS requests it newMetaState = dpsTarget ? gIOPPluginOne : gIOPPluginZero; if (!fIdleTimerActive && batteryIsOvercurrent()) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState - battery overcurrent forced metastate 1\n"); newMetaState = gIOPPluginOne; } /* * Get thermal sensor states. The current model here is that if *any* sensors report a thermal * state >= 1 then we DFS low. There is more resolution than states 0 & 1 in the state sensors * but for now all the two states are all we care about */ // fetch the current cpu0 temperature state if (safeGetState(fCpuTempSensor) >= 1) { newMetaState = gIOPPluginOne; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState CPU0 non-zero temp state 0x%lx\n", safeGetState(fCpuTempSensor)); } // fetch the current batt temperature state if (safeGetState(fBattTempSensor) >= 1) { newMetaState = gIOPPluginOne; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState battery non-zero temp state 0x%lx\n", safeGetState(fBattTempSensor)); } // fetch the current trackpad temperature state if (safeGetState(fTPadTempSensor) >= 1) { newMetaState = gIOPPluginOne; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState trackpad non-zero temp state 0x%lx\n", safeGetState(fTPadTempSensor)); } // fetch the current Uni-N temperature state if (safeGetState(fUniNTempSensor) >= 1) { newMetaState = gIOPPluginOne; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState Uni-N non-zero temp state 0x%lx\n", safeGetState(fUniNTempSensor)); } // fetch the current power supply temperature state if (safeGetState(fPwrSupTempSensor) >= 1) { newMetaState = gIOPPluginOne; CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState power supply non-zero temp state 0x%lx\n", safeGetState(fPwrSupTempSensor)); } // Check for low power conditions if (lowPowerForcedDPS ()) { newMetaState = gIOPPluginOne; } //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState - final metaState %d\n", newMetaState->unsigned32BitValue() ); didAct = false; // Step processor, if necessary if (!newMetaState->isEqualTo(getMetaState())) { setMetaState( newMetaState ); // Set the new state CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState calling setProcessorVStepValue(0x%lx)\n", newMetaState->unsigned32BitValue()); setProcessorVStepValue (newMetaState); // If we're not in an overcurrent situation, handle idle timers if (!fBatteryIsOvercurrent) { // If the new state is high, clear any idle timer if (newMetaState->isEqualTo(gIOPPluginZero)) { // Clear out deadline so we don't get called because of the idle timer super::deadlinePassed(); // Use the IOPlatformCtrlLoop implementation so we don't get re-entered // CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState - state high - clearing idle timer\n"); fIdleTimerActive = false; } else { // The new state is low so, start the idle timer // Setup a deadline (kIdleInterval seconds) for the activity monitor to expire // CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState - state low - setting idle timer\n"); clock_interval_to_deadline( kIdleInterval /* seconds */, NSEC_PER_SEC, &deadline ); fIdleTimerActive = true; } } didAct = true; } // Step graphics processor, if necessary if (!newGPUMetaState->isEqualTo(fPreviousGPUMetaState)) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::updateMetaState calling setGraphicsProcessorStepValue(0x%lx)\n", newGPUMetaState->unsigned32BitValue()); setGraphicsProcessorStepValue (newGPUMetaState); didAct = true; } return(didAct); // Signal the change } #pragma mark - #pragma mark *** Helpers / Entry Points *** #pragma mark - /******************************************************************************* * Method: * willSleep * * Purpose: * This is a virtual method that's called when the system is going down to sleep ******************************************************************************/ // virtual void PBG4_DPSCtrlLoop::willSleep( void ) { if (ctrlloopState == kIOPCtrlLoopNotReady) { CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::willSleep entered with control loop not ready\n"); return; } CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::willSleep entered\n"); super::willSleep(); fSavedMetaState = getMetaState(); // Save state setMetaState( gIOPPluginZero ); // Force highspeed CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::willSleep calling setProcessorVStepValue(0)\n"); setProcessorVStepValue (gIOPPluginZero); CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::willSleep done\n"); return; } /******************************************************************************* * Method: * didWake * * Purpose: * This is a virtual method that's called when the system is waking from sleep ******************************************************************************/ // virtual void PBG4_DPSCtrlLoop::didWake( void ) { if (ctrlloopState == kIOPCtrlLoopNotReady) { //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::didWake entered with control loop not ready\n"); return; } if (!fSavedMetaState) { //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::didWake entered with no savedMetaState - exiting\n"); return; } //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::didWake entered\n"); setMetaState( fSavedMetaState ); // Restore previous state //CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::didWake calling setProcessorVStepValue(0x%lx)\n", //fSavedMetaState->unsigned32BitValue()); setProcessorVStepValue (fSavedMetaState); super::didWake(); updateMetaState(); // Set new state based on current conditions CTRLLOOP_DLOG( "PBG4_DPSCtrlLoop::didWake done\n"); return; } /******************************************************************************* * Method: * deadlinePassed * * Purpose: * When a battery overcurrent event occurs we set an interval timer to clear * it later. We get called here when that happens. The deadline is set in * batteryIsOvercurrent() *******************************************************************************/ // virtual void PBG4_DPSCtrlLoop::deadlinePassed( void ) { super::deadlinePassed(); // clear the deadline updateMetaState(); // Re-evaluate the situation return; }
[ "mattl@cnuk.org" ]
mattl@cnuk.org
e0200041558c97ec9e32bdf5e2e99fdc70439742
df61db6bae315efb7de401584f6932220dfc97a2
/Concurency/threadsafe_queue.h
b1702528349510d757814a81c601c864481fbd09
[]
no_license
Fedorr47/concurrency
3e8873ca46c5b5970013850d3a423849576db4a6
89a4c99002f821276463af2e8b2bea413b175421
refs/heads/develop/1.0.0
2020-09-06T16:33:36.753232
2020-01-30T12:13:59
2020-01-30T12:13:59
220,481,991
1
0
null
2019-12-23T12:35:46
2019-11-08T14:21:23
C++
UTF-8
C++
false
false
3,070
h
#pragma once #include <mutex> #include <chrono> #include <memory> template<typename T> class threadsafe_queue { private: struct node { std::shared_ptr<T> data; std::unique_ptr<node> next; }; std::mutex head_mutex; std::unique_ptr<node> head; std::mutex tail_mutex; node* tail; std::condition_variable data_cond; std::condition_variable free_cond; size_t size_node{ sizeof(node) }; size_t size_{ sizeof(node) }; node* get_tail() { std::lock_guard<std::mutex> tail_lock(tail_mutex); return tail; } std::unique_ptr<node> pop_head() { std::unique_ptr<node> old_head = std::move(head); head = std::move(old_head->next); size_ += size_node; return old_head; } std::unique_lock<std::mutex> wait_for_data() { std::unique_lock<std::mutex> head_lock(head_mutex); data_cond.wait(head_lock, [&] { if (head.get() != get_tail()) { return true; } else { free_cond.notify_one(); return false; } }); return std::move(head_lock); } std::unique_ptr<node> wait_pop_head() { std::unique_lock<std::mutex> head_lock(wait_for_data()); return pop_head(); } std::unique_ptr<node> wait_pop_head(T& value) { std::unique_lock<std::mutex> head_lock(wait_for_data()); value = std::move(*head->data); return pop_head(); } std::unique_ptr<node> try_pop_head() { std::lock_guard<std::mutex> head_lock(head_mutex); if (head.get() == get_tail()) { return std::unique_ptr<node>(); } return pop_head(); } std::unique_ptr<node> try_pop_head(T& value) { std::lock_guard<std::mutex> head_lock(head_mutex); if (head.get() == get_tail()) { return std::unique_ptr<node>(); } value = std::move(*head->data); return pop_head(); } public: explicit threadsafe_queue(size_t count_size) : head(new node), tail(head.get()) { size_ *= count_size; } threadsafe_queue(const threadsafe_queue& other) = delete; threadsafe_queue& operator=(const threadsafe_queue& other) = delete; void wait_and_push(T new_value) { std::shared_ptr<T> new_data( std::make_shared<T>(std::move(new_value))); std::unique_lock<std::mutex> tail_lock(tail_mutex); free_cond.wait(tail_lock, [&] {return size_ != 0; }); std::unique_ptr<node> p(new node); tail->data = new_data; node* const new_tail = p.get(); tail->next = std::move(p); tail = new_tail; size_ -= size_node; data_cond.notify_one(); } std::shared_ptr<T> wait_and_pop() { std::unique_ptr<node> const old_head = wait_pop_head(); free_cond.notify_one(); return old_head->data; } void wait_and_pop(T& value) { std::unique_ptr<node> const old_head = wait_pop_head(value); } std::shared_ptr<T> try_pop() { std::unique_ptr<node> const old_head = try_pop_head(); free_cond.notify_one(); return old_head ? old_head->data : std::shared_ptr<T>(); } bool try_pop(T& value) { std::unique_ptr<node> const old_head = try_pop_head(value); free_cond.notify_one(); return old_head; } void empty() { std::lock_guard<std::mutex> head_lock(head_mutex); return (head.get() == get_tail()); } };
[ "Fedor.Andreev@billing.ru" ]
Fedor.Andreev@billing.ru
05a37fa7ad026ff0456327e80ba48d8bf6eb006b
65ec68d841e158de3376657fa843db0cb152c142
/condition.cpp
62a5bfc2c6c3f17315e1b7c1eacca70f242a206b
[]
no_license
iversongit/20160302
d4fd2c037f5271884fda59a16ee49996683fa66a
e90b2bee341a9a31cf7070d6188eebbec78b83eb
refs/heads/master
2021-01-10T10:27:24.928524
2016-03-03T06:44:44
2016-03-03T06:44:44
52,935,851
0
0
null
null
null
null
UTF-8
C++
false
false
2,016
cpp
/// /// @file homework4_condition.cpp /// @iverson (1564329410@qq.com) /// @date 2016-02-29 05:18:03 /// #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <pthread.h> #include <iostream> using std::cout; using std::endl; class Mutexlock{ //互斥锁类 public: Mutexlock(); ~Mutexlock(); void lock(); void unlock(); // private: pthread_mutex_t _mutex; //由于pthread_cond_wait中要用到_mutex,为方便起见, }; //将_mutex设置于public下 class Condition{ //条件变量类 public: Condition(); ~Condition(); void wait(); void signal(); void broadcast(); private: pthread_cond_t _cond; }; Condition cond; Mutexlock mutex; /*---------Mutexlock区------------*/ Mutexlock::Mutexlock(){ cout<<"Mutexlock()"<<endl; pthread_mutex_init(&_mutex,NULL); } Mutexlock::~Mutexlock(){ cout<<"~Mutexlock()"<<endl; pthread_mutex_destroy(&_mutex); } void Mutexlock::lock(){ pthread_mutex_lock(&_mutex); } void Mutexlock::unlock(){ pthread_mutex_unlock(&_mutex); } /*---------Condition区------------*/ Condition::Condition(){ cout<<"Condition()"<<endl; pthread_cond_init(&_cond,NULL); } Condition::~Condition(){ cout<<"~Condition()"<<endl; pthread_cond_destroy(&_cond); } void Condition::wait(){ pthread_cond_wait(&_cond,&(mutex._mutex)); } void Condition::signal(){ pthread_cond_signal(&_cond); } void Condition::broadcast(){ pthread_cond_broadcast(&_cond); } void * pthread_func(void* p){ mutex.lock(); cout<<"this is child thread"<<endl; cond.wait(); cout<<"waking"<<endl; mutex.unlock(); pthread_exit(NULL); } int main(void){ //创建子线程 pthread_t phid[5]; for(int i=0; i<5; i++){ pthread_create(&phid[i],NULL,pthread_func,NULL); } sleep(1); mutex.lock(); cout<<"this is main thread"<<endl; mutex.unlock(); // cond.signal(); // cond.broadcast(); for(int j=0; j<5; j++){ pthread_join(phid[j],NULL); } // pthread_join(phid,NULL); return 0; }
[ "1564329410@qq.com" ]
1564329410@qq.com
a30caac20e6dc01e4db0073c782b2cf79269ada1
c2fa8eda9baacc45c46a7079a61f5468c770562b
/iOS9/PrivateFrameworks/CoreLocation/CDStructures.h
4a042d60cd3ca0b7c2248eeb123f171eeb875d46
[]
no_license
silence0201/Headers
c832b10265bd2a913a579cc76ed7299319cf2d5a
3fe779d8e72817748eec8fa7c9ee9cfe8493ac77
refs/heads/master
2020-09-24T17:19:24.853523
2017-05-30T08:07:54
2017-05-30T08:07:54
66,088,098
6
1
null
null
null
null
UTF-8
C++
false
false
3,579
h
// // Generated by class-dump 3.5 (64 bit) (Debug version compiled Aug 19 2016 22:08:00). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. // #pragma mark Blocks typedef void (^CDUnknownBlockType)(void); // return type and parameters are unknown #pragma mark Named Structures struct CLConnection; struct CLConnectionClient { struct basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> _field1; id _field2; id _field3; id _field4; struct CLConnection *_field5; struct CLNameValuePair _field6; struct CLNameValuePair _field7; struct basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> _field8; CDUnknownBlockType _field9; CDUnknownBlockType _field10; id _field11; CDUnknownBlockType _field12; CDUnknownBlockType _field13; }; struct CLNameValuePair { CDUnknownFunctionPointerType *_field1; struct __CFDictionary *_field2; }; struct basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> { struct __compressed_pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>::__rep, std::__1::allocator<char>> { struct __rep { union { struct __long { unsigned long long _field1; unsigned long long _field2; char *_field3; } _field1; struct __short { union { unsigned char _field1; char _field2; } _field1; char _field2[23]; } _field2; struct __raw { unsigned long long _field1[3]; } _field3; } _field1; } _field1; } _field1; }; struct ostream; struct value_ostream { _Bool _field1; struct ostream *_field2; }; #pragma mark Typedef'd Structures typedef struct { double x; double y; double z; double magneticHeading; double trueHeading; double accuracy; double timestamp; double temperature; double magnitude; double inclination; int calibration; } CDStruct_b560b707; typedef struct { int padding1; int suitability; CDStruct_2c43369c coordinate; double horizontalAccuracy; double altitude; double verticalAccuracy; double padding2; double padding3; double speed; double speedAccuracy; double course; double courseAccuracy; double timestamp; int confidence; double lifespan; int type; CDStruct_2c43369c rawCoordinate; double rawCourse; int floor; unsigned int integrity; int referenceFrame; } CDStruct_0aa5cb5c; typedef struct { char identifier[512]; char onBehalfOfIdentifier[512]; int type; _Bool notifyOnEntry; _Bool notifyOnExit; _Bool conservativeEntry; union { struct { char proximityUUID[512]; unsigned short major; unsigned short minor; int definitionMask; _Bool notifyEntryStateOnDisplay; } beaconAttributes; struct { CDStruct_2c43369c center; double radius; double desiredAccuracy; int referenceFrame; } circularAttributes; } ; } CDStruct_3afce72c; // Ambiguous groups typedef struct { double _field1; double _field2; } CDStruct_c3b9c2ee; typedef struct { double latitude; double longitude; } CDStruct_2c43369c;
[ "374619540@qq.com" ]
374619540@qq.com
42ddd096d0ba5246c2873d66ded63b5c06cae3d9
862e7afe5da58e3dd4fc800eb178626b666663fb
/BoostLab/src/boost_asio_api.cpp
a4a283e11ab98086d9c80da746a16000a2357a7d
[]
no_license
goofycoder/goofytest
ca051dcdc7928ead4fe387cc156c192931a22153
9188fdf0e2dfc559fcdb05e360ee81575959335c
refs/heads/master
2020-06-06T14:18:18.757662
2014-10-13T19:31:33
2014-10-13T19:31:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,897
cpp
/* boost::asio::io_service io_service; // provide core I/O functionality boost::asio::io_service::work work(io_service); // 'work' class is a "class to inform io_service when it has work to do." // As long as an io_service has a work object associated with it, it will never run out of stuff to do. io_service.run() // run io_service object's event processing loop // run() blocks until all work has finished and there are no more handlers to be dispatched, // or until the io_service has been stopped // Multiple threads may call the run() function to set up a pool of threads // from which the io_service may execute handlers. // All threads that are waiting in the pool are equivalent and // the io_service may choose any one of them to invoke a handler. io_service.poll() // Run io_service object's event processing loop to execute ready handlers. // poll() function runs handlers that are ready to run, ** without blocking** // until the io_service has been stopped or there are no more ready handlers. io_service.reset() // Remove a work object from io_service // must be called prior to any second or later set of invocations of the run(), run_one(), poll() or poll_one() functions // when a previous invocation of these functions returned due to the io_service being stopped or running out of work. io_service.stop() // stop() function will signal the io_service that all work should be stopped // so after the current batch of work finishes, no more work will be done. // It stops the io_service object's event processing loop. // This function does not block, but instead simply signals the io_service to stop. // All invocations of its run() or run_one() member functions should return as soon as possible. io_service.post() // give io_service work via post() // post() asks the io_service to execute the given handler // but without allowing the io_service to call the handler from inside this function. // io_service guarantees that the handler will only be called in a thread in which // the run(), run_one(), poll() or poll_one() member functions is currently being invoked. ** Difference between stop() and reset(): 1) If we had associated a work object with the io_service and wanted to let all queued work finish - we would not call stop but rather destroy the work object. 2) If we want all work to finish but keep giving the io_service more things to do - it will never exit! - In that case, at some point, we would want to call the stop function to ensure the system actually stops. boost::bind() // supports arbitrary function objects, functions, function pointers, and class member function pointers // provides a great deal of flexibility */ #include <boost/asio.hpp> #include <boost/shared_ptr.hpp> #include <boost/thread.hpp> #include <boost/thread/mutex.hpp> #include <boost/bind.hpp> #include <iostream> static void example_run(); static void example_poll(); static void example_reset(); static void example_mthread_io(); static void WorkerThread(boost::shared_ptr<boost::asio::io_service> io_service_t); static void example_boost_bind(); static void goo(int i, float f); static void calc_fibo(size_t n); static size_t fibo(size_t n); boost::mutex global_stream_lock; // for std::cout class MyClass { public: void mFoo(int i, float f) { std::cout << "mFoo has input arg i: " << i << "\n"; std::cout << "mFoo has input arg f: " << f << "\n"; } }; static void example_run() { boost::asio::io_service io_service; //boost::asio::io_service::work work(io_service); // will block at run() blow if uncommented io_service.run(); std::cout << "Event processing is not blocked." << std::endl; // never reach here if io_server has work object associated with } static void example_poll() { const int NUM_TASKS = 7; boost::asio::io_service io_service; boost::asio::io_service::work work(io_service); for (int i=0; i<NUM_TASKS; i++) { size_t rv; rv = io_service.poll(); std::cout << "Task #" << i << " with return value: " << rv << "\n"; } } // remove a work object from an io_service static void example_reset() { boost::asio::io_service io_service; boost::shared_ptr<boost::asio::io_service::work> work(new boost::asio::io_service::work(io_service)); work.reset(); io_service.run(); std::cout << "Event processing is not blocked." << std::endl; } static void example_boost_bind() { // bind and invocate the regular function std::cout << "Bind regular function: \n"; boost::bind(&goo, 23, 3.14f)(); // bind and invocate the class member function std::cout << "Bind class member function: \n"; MyClass mc; boost::bind(&MyClass::mFoo, mc, 23, 3.14f)(); // pay attention to the bind and invocation of class member function } static void goo(int i, float f) { std::cout << "goo has input arg i: " << i << "\n"; std::cout << "goo has input arg f: " << f << "\n"; } static size_t fibo(size_t n) { if (n<=1) return n; boost::this_thread::sleep(boost::posix_time::millisec(500)); return fibo(n-1) + fibo(n-2); } static void calc_fibo(size_t n) { global_stream_lock.lock(); std::cout << "[" << boost::this_thread::get_id() << "] Now calculating fib( " << n << " ) " << std::endl; global_stream_lock.unlock(); size_t f = fibo(n); global_stream_lock.lock(); std::cout << "[" << boost::this_thread::get_id() << "] fib(" << n << ") = " << f << std::endl; global_stream_lock.unlock(); } static void WorkerThread(boost::shared_ptr<boost::asio::io_service> io_service_t) { global_stream_lock.lock(); std::cout << "Thread [" << boost::this_thread::get_id() <<"] Starts...\n"; global_stream_lock.unlock(); size_t rv = io_service_t->run(); // support more concurrency for processing work through io_service object. global_stream_lock.lock(); std::cout << "Thread [" << boost::this_thread::get_id() <<"] Terminates. Executed " << rv << " tasks.\n"; global_stream_lock.unlock(); } // create multiple threads to handle io_service events static void example_mthread_io() { global_stream_lock.lock(); std::cout << "Main thread [" << boost::this_thread::get_id() <<"] Starts...\n"; global_stream_lock.unlock(); const int NUM_THREADS = 3; // shared_ptr makes it copyable boost::shared_ptr<boost::asio::io_service> io_service_t(new boost::asio::io_service); boost::shared_ptr<boost::asio::io_service::work> work(new boost::asio::io_service::work(*io_service_t)); boost::thread_group worker_threads; for (int i=0; i<NUM_THREADS; ++i) { worker_threads.create_thread(boost::bind(&WorkerThread, io_service_t)); } // give io_service work via post() // post work to other worker threads (because the current thread did not call poll() or run() io_service_t->post( boost::bind(calc_fibo, 3) ); io_service_t->post( boost::bind(calc_fibo, 4) ); io_service_t->post( boost::bind(calc_fibo, 5) ); io_service_t->post( boost::bind(calc_fibo, 6) ); io_service_t->post( boost::bind(calc_fibo, 7) ); io_service_t->post( boost::bind(calc_fibo, 8) ); size_t rv = io_service_t->poll(); std::cout << "Main thread processed " << rv << " tasks.\n"; // reset the work object to signal once the work has been completed that we wish to exit work.reset(); //io_service_t->stop(); // if still use stop(), none of the work would be done // wait on all the threads to finish worker_threads.join_all(); global_stream_lock.lock(); std::cout << "Main thread [" << boost::this_thread::get_id() <<"] Terminates.\n"; global_stream_lock.unlock(); } void TEST_boost_asio_api() { std::cout << "\n=== Example: io_service run:\n"; example_run(); std::cout << "\n=== Example: io_service poll:\n"; example_poll(); std::cout << "\n=== Example: io_service reset:\n"; example_reset(); std::cout << "\n=== Example: boost bind:\n"; example_boost_bind(); std::cout << "\n=== Example: multithread io:\n"; example_mthread_io(); }
[ "yazhou2@linux01.(none)" ]
yazhou2@linux01.(none)
fe825585ba1537250bc69b7b96acc1cd9a6bb0cf
ac7ba4252b430473ecf93fd3ee4818ac17e1e639
/C&C++基础/my_code/OrderedSet_template.h
6378e4c076978f1d36d280c69308d2d7d1f5a7af
[]
no_license
jiaGuYuan/StudyNote
8aaef0d51ce0be2d343b1a5814be8e4d7f193e9c
ccc740c62b035746a977847f10c1207914989f2e
refs/heads/master
2023-06-28T04:24:07.140969
2023-06-17T14:42:15
2023-06-17T14:42:15
219,988,184
4
0
null
null
null
null
UTF-8
C++
false
false
7,769
h
#include <list> #include <set> #include <iostream> #include <sstream> #include <algorithm> #include <iterator> // 使用Set+List构造一个'维持插入顺序的Set' template <typename T> class OrderedSet { using ListOfT = typename std::list<T>; using TIterator = typename ListOfT::iterator; using TConstIterator = typename ListOfT::const_iterator; // 集合中存储 pair(value, 以及value在list中的迭代器), 方便对list中元素的快速删除 using SetItem = typename std::pair<T, TIterator>; // set中元素的比较只与集合元素的value有关 struct classcomp { bool operator() (const SetItem& lhs, const SetItem& rhs) const {return lhs.first < rhs.first;} }; using SetOfListIter = typename std::set<SetItem, classcomp>; public: OrderedSet() {} OrderedSet(const OrderedSet &other){ for (auto item : other) { this->append(item); } } OrderedSet& operator=(const OrderedSet &other) { if (this == &other) { return *this; } m_set.clear(); m_list.clear(); for (auto item : other) { this->append(item); } return *this; } void append(T val) { // 元素已存在(只根据val进行查找) if (m_set.find(SetItem(val, m_list.end())) != m_set.end()) { return; } // 元素未存在. 加入到list和set中 auto iter = m_list.insert(m_list.end(), val); m_set.insert(SetItem(val, iter)); } void remove(T val) { auto iter = m_set.find(SetItem(val, m_list.end())); if (iter == m_set.end()) { // 元素不存在 return; } // 元素存在. 从list和set中删除 auto list_iter = iter->second; m_list.erase(list_iter); m_set.erase(iter); } void clear() { m_set.clear(); m_list.clear(); } TIterator begin() { return m_list.begin(); } TConstIterator begin() const { return m_list.begin(); } TIterator end() { return {m_list.end()}; } TConstIterator end() const { return m_list.end(); } // 交集 void intersection_set(const OrderedSet &other, OrderedSet &out_oset) { SetOfListIter inter_set; std::set_intersection(m_set.begin(), m_set.end(), other.m_set.begin(), other.m_set.end(), std::inserter(inter_set, inter_set.begin()), classcomp()); // 为了维护插入顺序, 需要从m_list进行操作 for (auto item : *this) { if (inter_set.find(SetItem(item, m_list.end())) != inter_set.end() ) { out_oset.append(item); } } } // 差集 void difference_set(const OrderedSet &other, OrderedSet &out_oset) { SetOfListIter diff_set; std::set_difference(m_set.begin(), m_set.end(), other.m_set.begin(), other.m_set.end(), std::inserter(diff_set, diff_set.begin()), classcomp()); // 为了维护插入顺序, 需要从m_list进行操作 for (auto item : *this) { if (diff_set.find(SetItem(item, m_list.end())) != diff_set.end() ) { out_oset.append(item); } } } // 并集 void union_set(OrderedSet &other, OrderedSet &out_oset) { // 为了维护插入顺序, 使用 "A并B = A + B差A" 来求并集 SetOfListIter diff_set; std::set_difference(other.m_set.begin(), other.m_set.end(), m_set.begin(), m_set.end(), std::inserter(diff_set, diff_set.begin()), classcomp()); for (auto item : *this) { out_oset.append(item); } for (auto item : other) { if (diff_set.find(SetItem(item, other.m_list.end())) != diff_set.end() ) { out_oset.append(item); } } } public: ListOfT m_list; SetOfListIter m_set; }; void orderset_test_01(){ OrderedSet<int> oset1; oset1.append(5); oset1.append(3); oset1.append(9); oset1.append(1); oset1.append(5); oset1.append(5); for (auto val : oset1) std::cout << val << " "; std::cout << std::endl; OrderedSet<int> oset2; oset2.append(3); oset2.append(1); oset2.append(10); oset2.append(12); oset2.append(10); oset2.append(10); for (auto val : oset2) std::cout << val << " "; std::cout << std::endl; OrderedSet<int> out_set; oset1.difference_set(oset2, out_set); for (auto val : out_set) std::cout << val << " "; std::cout << std::endl; out_set.clear(); oset1.union_set(oset2, out_set); for (auto val : out_set) std::cout << val << " "; std::cout << std::endl; out_set.clear(); oset1.intersection_set(oset2, out_set); for (auto val : out_set) std::cout << val << " "; std::cout << std::endl; out_set.clear(); for (int i=0; i<1000000; i++) { out_set.append(i); }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; for (int i=0; i<1000000; i++) { if (i%8==0) { out_set.remove(i); } }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; for (int i=0; i<1000000; i++) { out_set.append(i); }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; } struct Point2 { public: Point2(int x, int y) : x(x), y(y) {} // bool operator<(const Point2 &right) const { // if (this->x < right.x) { // return true; // } // else if (this->x > right.x) { // return false; // } // else { // return this->y < right.y; // } // } std::string str() { std::ostringstream os; os << "(" << x << ", " << y << ")"; return os.str(); } public: int x; int y; }; bool operator<(const Point2 &left, const Point2 &right) { if (left.x < right.x) { return true; } else if (left.x > right.x) { return false; } else { return left.y < right.y; } } void orderset_test(){ OrderedSet<Point2> oset1; oset1.append(Point2(1, 1)); oset1.append(Point2(2, 2)); oset1.append(Point2(9, 9)); oset1.append(Point2(1, 1)); oset1.append(Point2(5, 5)); oset1.append(Point2(5, 5)); for (auto val : oset1) std::cout << val.str() << " "; std::cout << std::endl; OrderedSet<Point2> oset2; oset2.append(Point2(3, 3)); oset2.append(Point2(5, 5)); for (auto val : oset2) std::cout << val.str() << " "; std::cout << std::endl; OrderedSet<Point2> out_set; oset1.difference_set(oset2, out_set); for (auto val : out_set) std::cout << val.str() << " "; std::cout << std::endl; out_set.clear(); oset1.union_set(oset2, out_set); for (auto val : out_set) std::cout << val.str() << " "; std::cout << std::endl; out_set.clear(); oset1.intersection_set(oset2, out_set); for (auto val : out_set) std::cout << val.str() << " "; std::cout << std::endl; out_set.clear(); for (int i=0; i<1000000; i++) { out_set.append(Point2(i, i)); }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; for (int i=0; i<1000000; i++) { if (i%8==0) { out_set.remove(Point2(i, i)); } }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; for (int i=0; i<1000000; i++) { out_set.append(Point2(i, i)); }; std::cout << out_set.m_list.size() << ", " << out_set.m_set.size() << std::endl; }
[ "w2504187153@sina.com" ]
w2504187153@sina.com
9e3ac081a50cb16bc2330008da1b91ba5cb4fef5
ad44b6ba053a35154df530f8639a92e00184073f
/main.cpp
7c0230213685ea40428d9e47e0905d0e123fdf16
[]
no_license
xbubus/blackjack
00972104f8b849e1050cc8bd839b5e5bf3f887e3
3843fc9ce12ce8eb1adf2aabc12cc8c33f07f013
refs/heads/master
2022-11-30T17:18:43.845402
2020-08-06T15:27:33
2020-08-06T15:27:33
258,182,302
0
0
null
null
null
null
UTF-8
C++
false
false
1,768
cpp
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include "time.h" #include "Casino.h" std::ostream& operator<<(std::ostream& os, Card& card); void chooseNumberFrom1To3(int& number); int main() { Casino c1; int choice = 0; bool gameON = true; int numberOfHumanPlayers = 0; int numberOfBotPlayers = 0; srand(time(NULL)); while (gameON) { std::cout << "Enter 1 to start new game with the same players\n"; std::cout << "Enter 2 to start new game with other players\n"; std::cout << "Enter 3 to exit program\n"; chooseNumberFrom1To3(choice); switch (choice) { case 1: system("cls"); if (numberOfHumanPlayers == 0) { std::cout << "\nYou have to start first game with option 2!\n\n"; break; } system("cls"); c1.manageGame(); break; case 2: system("cls"); c1.deleteAllPlayers(); std::cout << "Choose how many human players will play(1-3):\n"; chooseNumberFrom1To3(numberOfHumanPlayers); std::cout << "Choose how many bots will play(1-3):\n"; chooseNumberFrom1To3(numberOfBotPlayers); c1.setNumberOfBotPlayers(numberOfBotPlayers); c1.setNumberOfHumanPlayers(numberOfHumanPlayers); c1.createPlayers(); c1.setupNicknamesAndBravery(); c1.manageGame(); break; case 3: gameON = false; break; } } } std::ostream& operator<<(std::ostream& os, Card& card) { os << card.getRank() << card.getSuit() << " "; return os; } void chooseNumberFrom1To3(int& number) { while (1) { std::cin >> number; if (std::cin.fail() == true || number < 1 || number>3) { std::cout << "Something went wrong. Try again." << std::endl; std::cin.clear(); std::cin.ignore(256, '\n'); } else return; } }
[ "xbubus@gmail.com" ]
xbubus@gmail.com
4b9ced68e07824a426a0b9873c169e892d696024
ac1c9fbc1f1019efb19d0a8f3a088e8889f1e83c
/out/release/gen/services/network/public/mojom/fetch_api.mojom.h
ef4d53e6b1840eaefea5dec9a95b76e6eba69684
[ "BSD-3-Clause" ]
permissive
xueqiya/chromium_src
5d20b4d3a2a0251c063a7fb9952195cda6d29e34
d4aa7a8f0e07cfaa448fcad8c12b29242a615103
refs/heads/main
2022-07-30T03:15:14.818330
2021-01-16T16:47:22
2021-01-16T16:47:22
330,115,551
1
0
null
null
null
null
UTF-8
C++
false
false
1,371
h
// services/network/public/mojom/fetch_api.mojom.h is auto generated by mojom_bindings_generator.py, do not edit // Copyright 2013 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 SERVICES_NETWORK_PUBLIC_MOJOM_FETCH_API_MOJOM_H_ #define SERVICES_NETWORK_PUBLIC_MOJOM_FETCH_API_MOJOM_H_ #include <stdint.h> #include <limits> #include <type_traits> #include <utility> #include "base/callback.h" #include "base/macros.h" #include "base/optional.h" #include "mojo/public/cpp/bindings/mojo_buildflags.h" #if BUILDFLAG(MOJO_TRACE_ENABLED) #include "base/trace_event/trace_event.h" #endif #include "mojo/public/cpp/bindings/clone_traits.h" #include "mojo/public/cpp/bindings/equals_traits.h" #include "mojo/public/cpp/bindings/lib/serialization.h" #include "mojo/public/cpp/bindings/struct_ptr.h" #include "mojo/public/cpp/bindings/struct_traits.h" #include "mojo/public/cpp/bindings/union_traits.h" #include "services/network/public/mojom/fetch_api.mojom-shared.h" #include "services/network/public/mojom/fetch_api.mojom-forward.h" #include <string> #include <vector> namespace network { namespace mojom { } // namespace mojom } // namespace network namespace mojo { } // namespace mojo #endif // SERVICES_NETWORK_PUBLIC_MOJOM_FETCH_API_MOJOM_H_
[ "xueqi@zjmedia.net" ]
xueqi@zjmedia.net
e055d8782bf27ba337b41f2f9e6c6076117388e0
e0da8fc913c7c34b00dc42fd1c1e6a3076caed33
/include/container_traits/has_subscript_operator.h
356556c3ccacad4b39739ae9836ba4fb7c6258de
[ "MIT" ]
permissive
zeta1999/container_traits
f50c568131b8ca579db9ae69f369dd5a1a40954c
85d970030b8836ab1893ff72f38c74c4ca2908de
refs/heads/master
2022-12-28T20:05:39.535093
2020-10-11T03:03:20
2020-10-11T03:03:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
655
h
#pragma once #include <type_traits> namespace container_traits { template <typename, typename T> struct has_subscript_operator : std::false_type {}; template <typename C, typename Ret, typename... Args> struct has_subscript_operator<C, Ret(Args...)> { private: template <typename T> static constexpr auto check(T *) -> typename std::is_same<decltype(std::declval<T>().operator[](std::declval<Args>()...)), Ret>::type; template <typename> static constexpr std::false_type check(...); typedef decltype(check<C>(0)) type; public: static constexpr bool value = type::value; }; } // namespace container_traits
[ "pranav.srinivas.kumar@gmail.com" ]
pranav.srinivas.kumar@gmail.com
32e2b5915fc92d2bece7634cf0edfdf873fa36a8
2f18747e7d2ba0123e046eabc322c5441454b923
/2_Foundations/02_Introduction_to_the_C++_Language/27_Formatting_the_Printed_Board/solution.cpp
d8d8a29dc8b204df88f95f3fc5a88efd90ede2d5
[]
no_license
jiangnanqw12/CPP-Nanodegree-master
37080a50bcd7e9ce77df63b48ff2739c18f9ab7d
362118edcf9ff59f02858d485a6fbd9fabf9347d
refs/heads/master
2020-08-08T14:31:02.580364
2020-08-03T23:50:38
2020-08-03T23:50:38
213,848,821
0
0
null
null
null
null
UTF-8
C++
false
false
2,126
cpp
/* Formatting the Printed Board 0 ⛰️ 0 0 0 0 0 ⛰️ 0 0 0 0 0 ⛰️ 0 0 0 0 0 ⛰️ 0 0 0 0 0 0 0 0 ⛰️ 0 The board will eventually have more than two cell states as the program becomes more complicated, and it would be nice to add formatting to the printed output of the board to ensure readability as the number of board states increases. To accommodate more board states and facilitate print formatting, we have provided the State enum with enumerator values kEmpty and kObstacle. In this exercise, you will write a CellString function which converts each State to an appropriate string. In the next exercise, we will update the program to use the enum values and CellString function. */ #include <fstream> #include <iostream> #include <sstream> #include <string> #include <vector> using std::cout; using std::ifstream; using std::istringstream; using std::string; using std::vector; enum class State {kEmpty, kObstacle}; vector<int> ParseLine(string line) { istringstream sline(line); int n; char c; vector<int> row; while (sline >> n >> c && c == ',') { row.push_back(n); } return row; } vector<vector<int>> ReadBoardFile(string path) { ifstream myfile (path); vector<vector<int>> board{}; if (myfile) { string line; while (getline(myfile, line)) { vector<int> row = ParseLine(line); board.push_back(row); } } return board; } // TODO: Create the CellString function here, // using the following return strings: // "⛰️ " // "0 " string CellString(State cell){ switch(cell){ case State::kEmpty: return "0 "; case State::kObstacle: return "⛰️ "; } } void PrintBoard(const vector<vector<int>> board) { for (int i = 0; i < board.size(); i++) { for (int j = 0; j < board[i].size(); j++) { cout << board[i][j]; } cout << "\n"; } } int main() { auto board = ReadBoardFile("1.board"); PrintBoard(board); }
[ "382961818@qq.com" ]
382961818@qq.com
fefc953311bbdd7ec91f1d0047afbc4eb01ce354
10c14a95421b63a71c7c99adf73e305608c391bf
/gui/core/qsize.cpp
a55b26ea65d32ffc8b573f00f2e2391ec6a953df
[]
no_license
eaglezzb/wtlcontrols
73fccea541c6ef1f6db5600f5f7349f5c5236daa
61b7fce28df1efe4a1d90c0678ec863b1fd7c81c
refs/heads/master
2021-01-22T13:47:19.456110
2009-05-19T10:58:42
2009-05-19T10:58:42
33,811,815
0
0
null
null
null
null
UTF-8
C++
false
false
21,576
cpp
/**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). ** Contact: Qt Software Information (qt-info@nokia.com) ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Commercial License Agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qsize.h" // #include "qdatastream.h" // #include "qdebug.h" QT_BEGIN_NAMESPACE /*! \class QSize \ingroup multimedia \brief The QSize class defines the size of a two-dimensional object using integer point precision. A size is specified by a width() and a height(). It can be set in the constructor and changed using the setWidth(), setHeight(), or scale() functions, or using arithmetic operators. A size can also be manipulated directly by retrieving references to the width and height using the rwidth() and rheight() functions. Finally, the width and height can be swapped using the transpose() function. The isValid() function determines if a size is valid (a valid size has both width and height greater than zero). The isEmpty() function returns true if either of the width and height is less than, or equal to, zero, while the isNull() function returns true only if both the width and the height is zero. Use the expandedTo() function to retrieve a size which holds the maximum height and width of \e this size and a given size. Similarly, the boundedTo() function returns a size which holds the minimum height and width of \e this size and a given size. QSize objects can be streamed as well as compared. \sa QSizeF, QPoint, QRect */ /***************************************************************************** QSize member functions *****************************************************************************/ /*! \fn QSize::QSize() Constructs a size with an invalid width and height (i.e., isValid() returns false). \sa isValid() */ /*! \fn QSize::QSize(int width, int height) Constructs a size with the given \a width and \a height. \sa setWidth(), setHeight() */ /*! \fn bool QSize::isNull() const Returns true if both the width and height is 0; otherwise returns false. \sa isValid(), isEmpty() */ /*! \fn bool QSize::isEmpty() const Returns true if either of the width and height is less than or equal to 0; otherwise returns false. \sa isNull(), isValid() */ /*! \fn bool QSize::isValid() const Returns true if both the width and height is equal to or greater than 0; otherwise returns false. \sa isNull(), isEmpty() */ /*! \fn int QSize::width() const Returns the width. \sa height(), setWidth() */ /*! \fn int QSize::height() const Returns the height. \sa width(), setHeight() */ /*! \fn void QSize::setWidth(int width) Sets the width to the given \a width. \sa rwidth(), width(), setHeight() */ /*! \fn void QSize::setHeight(int height) Sets the height to the given \a height. \sa rheight(), height(), setWidth() */ /*! Swaps the width and height values. \sa setWidth(), setHeight() */ void QSize::transpose() { int tmp = wd; wd = ht; ht = tmp; } /*! \fn void QSize::scale(int width, int height, Qt::AspectRatioMode mode) Scales the size to a rectangle with the given \a width and \a height, according to the specified \a mode: \list \i If \a mode is Qt::IgnoreAspectRatio, the size is set to (\a width, \a height). \i If \a mode is Qt::KeepAspectRatio, the current size is scaled to a rectangle as large as possible inside (\a width, \a height), preserving the aspect ratio. \i If \a mode is Qt::KeepAspectRatioByExpanding, the current size is scaled to a rectangle as small as possible outside (\a width, \a height), preserving the aspect ratio. \endlist Example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 0 \sa setWidth(), setHeight() */ /*! \fn void QSize::scale(const QSize &size, Qt::AspectRatioMode mode) \overload Scales the size to a rectangle with the given \a size, according to the specified \a mode. */ void QSize::scale(const QSize &s, Qt::AspectRatioMode mode) { if (mode == Qt::IgnoreAspectRatio || wd == 0 || ht == 0) { wd = s.wd; ht = s.ht; } else { bool useHeight; qint64 rw = qint64(s.ht) * qint64(wd) / qint64(ht); if (mode == Qt::KeepAspectRatio) { useHeight = (rw <= s.wd); } else { // mode == Qt::KeepAspectRatioByExpanding useHeight = (rw >= s.wd); } if (useHeight) { wd = rw; ht = s.ht; } else { ht = qint32(qint64(s.wd) * qint64(ht) / qint64(wd)); wd = s.wd; } } } /*! \fn int &QSize::rwidth() Returns a reference to the width. Using a reference makes it possible to manipulate the width directly. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 1 \sa rheight(), setWidth() */ /*! \fn int &QSize::rheight() Returns a reference to the height. Using a reference makes it possible to manipulate the height directly. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 2 \sa rwidth(), setHeight() */ /*! \fn QSize &QSize::operator+=(const QSize &size) Adds the given \a size to \e this size, and returns a reference to this size. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 3 */ /*! \fn QSize &QSize::operator-=(const QSize &size) Subtracts the given \a size from \e this size, and returns a reference to this size. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 4 */ /*! \fn QSize &QSize::operator*=(qreal factor) \overload Multiplies both the width and height by the given \a factor, and returns a reference to the size. Note that the result is rounded to the nearest integer. \sa scale() */ /*! \fn bool operator==(const QSize &s1, const QSize &s2) \relates QSize Returns true if \a s1 and \a s2 are equal; otherwise returns false. */ /*! \fn bool operator!=(const QSize &s1, const QSize &s2) \relates QSize Returns true if \a s1 and \a s2 are different; otherwise returns false. */ /*! \fn const QSize operator+(const QSize &s1, const QSize &s2) \relates QSize Returns the sum of \a s1 and \a s2; each component is added separately. */ /*! \fn const QSize operator-(const QSize &s1, const QSize &s2) \relates QSize Returns \a s2 subtracted from \a s1; each component is subtracted separately. */ /*! \fn const QSize operator*(const QSize &size, qreal factor) \relates QSize Multiplies the given \a size by the given \a factor, and returns the result rounded to the nearest integer. \sa QSize::scale() */ /*! \fn const QSize operator*(qreal factor, const QSize &size) \overload \relates QSize Multiplies the given \a size by the given \a factor, and returns the result rounded to the nearest integer. */ /*! \fn QSize &QSize::operator/=(qreal divisor) \overload Divides both the width and height by the given \a divisor, and returns a reference to the size. Note that the result is rounded to the nearest integer. \sa QSize::scale() */ /*! \fn const QSize operator/(const QSize &size, qreal divisor) \relates QSize \overload Divides the given \a size by the given \a divisor, and returns the result rounded to the nearest integer. \sa QSize::scale() */ /*! \fn QSize QSize::expandedTo(const QSize & otherSize) const Returns a size holding the maximum width and height of this size and the given \a otherSize. \sa boundedTo(), scale() */ /*! \fn QSize QSize::boundedTo(const QSize & otherSize) const Returns a size holding the minimum width and height of this size and the given \a otherSize. \sa expandedTo(), scale() */ /***************************************************************************** QSize stream functions *****************************************************************************/ // #ifndef QT_NO_DATASTREAM // /*! // \fn QDataStream &operator<<(QDataStream &stream, const QSize &size) // \relates QSize // // Writes the given \a size to the given \a stream, and returns a // reference to the stream. // // \sa {Format of the QDataStream Operators} // */ // // QDataStream &operator<<(QDataStream &s, const QSize &sz) // { // if (s.version() == 1) // s << (qint16)sz.width() << (qint16)sz.height(); // else // s << (qint32)sz.width() << (qint32)sz.height(); // return s; // } // // /*! // \fn QDataStream &operator>>(QDataStream &stream, QSize &size) // \relates QSize // // Reads a size from the given \a stream into the given \a size, and // returns a reference to the stream. // // \sa {Format of the QDataStream Operators} // */ // // QDataStream &operator>>(QDataStream &s, QSize &sz) // { // if (s.version() == 1) { // qint16 w, h; // s >> w; sz.rwidth() = w; // s >> h; sz.rheight() = h; // } // else { // qint32 w, h; // s >> w; sz.rwidth() = w; // s >> h; sz.rheight() = h; // } // return s; // } // #endif // QT_NO_DATASTREAM // // #ifndef QT_NO_DEBUG_STREAM // QDebug operator<<(QDebug dbg, const QSize &s) { // dbg.nospace() << "QSize(" << s.width() << ", " << s.height() << ')'; // return dbg.space(); // } // #endif /*! \class QSizeF \brief The QSizeF class defines the size of a two-dimensional object using floating point precision. \ingroup multimedia A size is specified by a width() and a height(). It can be set in the constructor and changed using the setWidth(), setHeight(), or scale() functions, or using arithmetic operators. A size can also be manipulated directly by retrieving references to the width and height using the rwidth() and rheight() functions. Finally, the width and height can be swapped using the transpose() function. The isValid() function determines if a size is valid. A valid size has both width and height greater than or equal to zero. The isEmpty() function returns true if either of the width and height is \e less than (or equal to) zero, while the isNull() function returns true only if both the width and the height is zero. Use the expandedTo() function to retrieve a size which holds the maximum height and width of this size and a given size. Similarly, the boundedTo() function returns a size which holds the minimum height and width of this size and a given size. The QSizeF class also provides the toSize() function returning a QSize copy of this size, constructed by rounding the width and height to the nearest integers. QSizeF objects can be streamed as well as compared. \sa QSize, QPointF, QRectF */ /***************************************************************************** QSizeF member functions *****************************************************************************/ /*! \fn QSizeF::QSizeF() Constructs an invalid size. \sa isValid() */ /*! \fn QSizeF::QSizeF(const QSize &size) Constructs a size with floating point accuracy from the given \a size. \sa toSize() */ /*! \fn QSizeF::QSizeF(qreal width, qreal height) Constructs a size with the given \a width and \a height. */ /*! \fn bool QSizeF::isNull() const Returns true if both the width and height is 0; otherwise returns false. \sa isValid(), isEmpty() */ /*! \fn bool QSizeF::isEmpty() const Returns true if either of the width and height is less than or equal to 0; otherwise returns false. \sa isNull(), isValid() */ /*! \fn bool QSizeF::isValid() const Returns true if both the width and height is equal to or greater than 0; otherwise returns false. \sa isNull(), isEmpty() */ /*! \fn int QSizeF::width() const Returns the width. \sa height(), setWidth() */ /*! \fn int QSizeF::height() const Returns the height. \sa width(), setHeight() */ /*! \fn void QSizeF::setWidth(qreal width) Sets the width to the given \a width. \sa width(), rwidth(), setHeight() */ /*! \fn void QSizeF::setHeight(qreal height) Sets the height to the given \a height. \sa height(), rheight(), setWidth() */ /*! \fn QSize QSizeF::toSize() const Returns an integer based copy of this size. Note that the coordinates in the returned size will be rounded to the nearest integer. \sa QSizeF() */ /*! Swaps the width and height values. \sa setWidth(), setHeight() */ void QSizeF::transpose() { qreal tmp = wd; wd = ht; ht = tmp; } /*! \fn void QSizeF::scale(qreal width, qreal height, Qt::AspectRatioMode mode) Scales the size to a rectangle with the given \a width and \a height, according to the specified \a mode. \list \i If \a mode is Qt::IgnoreAspectRatio, the size is set to (\a width, \a height). \i If \a mode is Qt::KeepAspectRatio, the current size is scaled to a rectangle as large as possible inside (\a width, \a height), preserving the aspect ratio. \i If \a mode is Qt::KeepAspectRatioByExpanding, the current size is scaled to a rectangle as small as possible outside (\a width, \a height), preserving the aspect ratio. \endlist Example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 5 \sa setWidth(), setHeight() */ /*! \fn void QSizeF::scale(const QSizeF &size, Qt::AspectRatioMode mode) \overload Scales the size to a rectangle with the given \a size, according to the specified \a mode. */ void QSizeF::scale(const QSizeF &s, Qt::AspectRatioMode mode) { if (mode == Qt::IgnoreAspectRatio || qIsNull(wd) || qIsNull(ht)) { wd = s.wd; ht = s.ht; } else { bool useHeight; qreal rw = s.ht * wd / ht; if (mode == Qt::KeepAspectRatio) { useHeight = (rw <= s.wd); } else { // mode == Qt::KeepAspectRatioByExpanding useHeight = (rw >= s.wd); } if (useHeight) { wd = rw; ht = s.ht; } else { ht = s.wd * ht / wd; wd = s.wd; } } } /*! \fn int &QSizeF::rwidth() Returns a reference to the width. Using a reference makes it possible to manipulate the width directly. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 6 \sa rheight(), setWidth() */ /*! \fn int &QSizeF::rheight() Returns a reference to the height. Using a reference makes it possible to manipulate the height directly. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 7 \sa rwidth(), setHeight() */ /*! \fn QSizeF &QSizeF::operator+=(const QSizeF &size) Adds the given \a size to this size and returns a reference to this size. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 8 */ /*! \fn QSizeF &QSizeF::operator-=(const QSizeF &size) Subtracts the given \a size from this size and returns a reference to this size. For example: \snippet doc/src/snippets/code/src_corelib_tools_qsize.cpp 9 */ /*! \fn QSizeF &QSizeF::operator*=(qreal factor) \overload Multiplies both the width and height by the given \a factor and returns a reference to the size. \sa scale() */ /*! \fn bool operator==(const QSizeF &s1, const QSizeF &s2) \relates QSizeF Returns true if \a s1 and \a s2 are equal; otherwise returns false. */ /*! \fn bool operator!=(const QSizeF &s1, const QSizeF &s2) \relates QSizeF Returns true if \a s1 and \a s2 are different; otherwise returns false. */ /*! \fn const QSizeF operator+(const QSizeF &s1, const QSizeF &s2) \relates QSizeF Returns the sum of \a s1 and \a s2; each component is added separately. */ /*! \fn const QSizeF operator-(const QSizeF &s1, const QSizeF &s2) \relates QSizeF Returns \a s2 subtracted from \a s1; each component is subtracted separately. */ /*! \fn const QSizeF operator*(const QSizeF &size, qreal factor) \overload \relates QSizeF Multiplies the given \a size by the given \a factor and returns the result. \sa QSizeF::scale() */ /*! \fn const QSizeF operator*(qreal factor, const QSizeF &size) \overload \relates QSizeF Multiplies the given \a size by the given \a factor and returns the result. */ /*! \fn QSizeF &QSizeF::operator/=(qreal divisor) \overload Divides both the width and height by the given \a divisor and returns a reference to the size. \sa scale() */ /*! \fn const QSizeF operator/(const QSizeF &size, qreal divisor) \relates QSizeF \overload Divides the given \a size by the given \a divisor and returns the result. \sa QSizeF::scale() */ /*! \fn QSizeF QSizeF::expandedTo(const QSizeF & otherSize) const Returns a size holding the maximum width and height of this size and the given \a otherSize. \sa boundedTo(), scale() */ /*! \fn QSizeF QSizeF::boundedTo(const QSizeF & otherSize) const Returns a size holding the minimum width and height of this size and the given \a otherSize. \sa expandedTo(), scale() */ /***************************************************************************** QSizeF stream functions *****************************************************************************/ // #ifndef QT_NO_DATASTREAM // /*! // \fn QDataStream &operator<<(QDataStream &stream, const QSizeF &size) // \relates QSizeF // // Writes the the given \a size to the given \a stream and returns a // reference to the stream. // // \sa {Format of the QDataStream Operators} // */ // // QDataStream &operator<<(QDataStream &s, const QSizeF &sz) // { // s << double(sz.width()) << double(sz.height()); // return s; // } // // /*! // \fn QDataStream &operator>>(QDataStream &stream, QSizeF &size) // \relates QSizeF // // Reads a size from the given \a stream into the given \a size and // returns a reference to the stream. // // \sa {Format of the QDataStream Operators} // */ // // QDataStream &operator>>(QDataStream &s, QSizeF &sz) // { // double w, h; // s >> w; // s >> h; // sz.setWidth(qreal(w)); // sz.setHeight(qreal(h)); // return s; // } // #endif // QT_NO_DATASTREAM // // #ifndef QT_NO_DEBUG_STREAM // QDebug operator<<(QDebug dbg, const QSizeF &s) { // dbg.nospace() << "QSizeF(" << s.width() << ", " << s.height() << ')'; // return dbg.space(); // } // #endif QT_END_NAMESPACE
[ "zhangyinquan@0feb242a-2539-11de-a0d7-251e5865a1c7" ]
zhangyinquan@0feb242a-2539-11de-a0d7-251e5865a1c7
f490d62c699838a3baabfab762973f2394c14b56
8c03b5a410c7747d5ef601db1f75f0c664739fdd
/JCDT/JCDT_Lib/internal/ast/AstSwitchStatement.h
754c40d4d1b6795707a177c855e78cc274fd2106
[ "MIT" ]
permissive
15831944/JCDT
5d76f4cdb3751b54bc8700f46ab7c8e27ed9e07c
2b009ea887b4816303fed9e6e1dc104a90c67d16
refs/heads/main
2023-04-14T18:28:39.589647
2021-04-25T02:34:54
2021-04-25T02:34:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,098
h
#ifndef AstSwitchStatement_INCLUDED #define AstSwitchStatement_INCLUDED #include "JCDT_Lib/internal/ast/ast_Pre_declaration.h" #include "JCDT_Lib/internal/ast/ReachComleteAbleStatement.h" namespace Jikes { // Open namespace Jikes block // // SwitchStatement --> <SWITCH, Label_opt, switch_token, Expression, {_token, // SwitchBlockStatements, SwitchLabels_opt, }_token> // class SwitchStatement : public ReachComleteAbleStatement { AstStoragePool* pool; // // The sorted list of case label values. Index 0 is reserved for the // default case. Index 1 - size are for the case labels, and get sorted. // CaseElement** cases; unsigned num_cases; #ifdef JIKES_DEBUG unsigned max_cases; // bounds check only when debugging #endif // JIKES_DEBUG public: static SwitchStatement* SwitchStatementCast(Ast* node) { return DYNAMIC_CAST<SwitchStatement*>(node->kind == SWITCH ? node : NULL); } Token* switch_token; Expression* expression; AstBlock* switch_block; SwitchStatement(AstStoragePool* p); ~SwitchStatement() {} CaseElement*& Case(unsigned i) { assert(i < num_cases); return cases[i + 1]; } CaseElement*& DefaultCase() { return cases[0]; } unsigned NumCases() { return num_cases; } void AllocateCases(unsigned estimate = 1); void AddCase(CaseElement*); AstSwitchBlockStatement* GetBlock(unsigned i); unsigned NumBlocks(); void SortCases(); CaseElement* CaseForValue(i4 value); #ifdef JIKES_DEBUG void Print(Ostream&,LexStream&) override; virtual void Unparse(Ostream&, LexStream*); #endif // JIKES_DEBUG virtual Ast* Clone(AstStoragePool*); virtual void traverse(ASTVisitor* visitor,AstNodeScope* scope) override; ; virtual Token* LeftToken() { return switch_token; } virtual Token* RightToken(); }; inline void SwitchStatement::AddCase(CaseElement* case_element) { assert(cases); cases[++num_cases] = case_element; #ifdef JIKES_DEBUG assert(num_cases < max_cases); #endif // JIKES_DEBUG } } // Close namespace Jikes block #endif // AstSwitchStatement_INCLUDED
[ "731784510@qq.com" ]
731784510@qq.com
75924d4fe4119e962351ebeb5dd2b69af8edef25
5014bc1560490ac37e8c5d2562a2bfdb16727ea9
/SDK/NanoCore/NanoCPP/tests/algorithms/25.generate.cpp
eb78ba6cd5a448e5b7ce26bb81317ae3f779af0f
[ "Apache-2.0" ]
permissive
PSP-Archive/Nanodesktop
6fbf130d668dc9aa6afd06d8c4fff55a8cdcbdaf
37f502dff47c1a0b11c2a9d65c8cdcde12591e39
refs/heads/main
2023-02-28T08:41:12.147204
2021-02-08T13:01:00
2021-02-08T13:01:00
337,077,653
0
0
null
null
null
null
UTF-8
C++
false
false
10,916
cpp
/*************************************************************************** * * 25.generate.cpp - test exercising 25.2.6 [lib.alg.generate] * * $Id: 25.generate.cpp 510970 2007-02-23 14:57:45Z faridz $ * *************************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you 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. * * Copyright 1994-2006 Rogue Wave Software. * **************************************************************************/ #include <algorithm> // for generate #include <cstddef> // for size_t #include <alg_test.h> #include <rw_value.h> // for UserClass #include <driver.h> // for rw_test() /**************************************************************************/ template <class T> struct Generator { // return a const reference to avoid requiring // that T be copy-constructible const T& operator() () const { static const union { void* align_; unsigned char buf_ [sizeof (T)]; } u = { 0 }; return *(const T*)(const void*)&u; } }; _RWSTD_SPECIALIZED_CLASS struct Generator<UserClass> { // dummy arguments provided to prevent Generator // from being DefaultConstructible Generator (int, int /* dummy */) { // use the generator of sequential values UserClass::gen_ = gen_seq; } UserClass operator() () /* non-const */ { // return a default-constructed UserClass intialized // to the next sequential value return UserClass (); } }; /**************************************************************************/ _RWSTD_NAMESPACE (std) { // disable explicit instantiation for compilers (like MSVC) // that can't handle it #ifndef _RWSTD_NO_EXPLICIT_INSTANTIATION template void generate (FwdIter<assign<base<> > >, FwdIter<assign<base<> > >, Generator<assign<base<> > >); template void generate_n (OutputIter<assign<base<> > >, std::size_t, Generator<assign<base<> > >); #endif // _RWSTD_NO_EXPLICIT_INSTANTIATION } // namespace std /**************************************************************************/ // exercises std::generate() template <class ForwardIterator, class T> void test_generate (std::size_t N, const ForwardIterator& gen_iter, const T* ) { static const char* const itname = type_name (gen_iter, (T*) 0); static const char* const genname = "Generator"; rw_info (0, 0, 0, "void std::generate (%s, %1$s, %s)", itname, genname); // generate sequential values for each default constructed T T::gen_ = gen_seq; T *buf = new UserClass [N]; for (std::size_t i = 0; i < N; ++i) { // exercise 25.2.6, std::generate<> () std::size_t last_n_op_assign = T::n_total_op_assign_; T* const buf_end = buf + i + 1; const ForwardIterator begin = make_iter (buf, buf, buf_end, gen_iter); const ForwardIterator end = make_iter (buf_end, buf_end, buf_end, gen_iter); const Generator<T> gen (0, 0); // store the value of the next element const int last_val = Generator<T>(0, 0)().data_.val_; std::generate (begin, end, gen); bool success = true; // verify 25.2.6, p2 std::size_t j = 0; for ( ; j != i; ++j) { success = (begin.cur_ + j)->data_.val_ == int (last_val + j + 1); if (!success) break; } rw_assert (success, 0, __LINE__, "%zu. generate (): buf[%zu]: %d != %d", i + 1, j, last_val + j + 1, (begin.cur_ + j)->data_.val_ ); if (!success) break; // verify 25.2.6, p3 success = T::n_total_op_assign_ - last_n_op_assign == i + 1; rw_assert (success, 0, __LINE__, "%zu. generate (): complexity: %zu != %zu", i + 1, T::n_total_op_assign_ - last_n_op_assign, i + 1); if (!success) break; } delete[] (buf); } /**************************************************************************/ // exercises std::generate_n() template <class ForwardIterator, class Size, class T> void test_generate_n (std::size_t N, const ForwardIterator &gen_iter, const Size*, const T*) { static const char* const itname = type_name (gen_iter, (T*) 0); static const char* const szname = "Size<int>"; static const char* const genname = "Generator"; rw_info (0, 0, 0, "void std::generate_n (%s, %s, %s)", itname, szname, genname); // generate sequential values for each default constructed T T::gen_ = gen_seq; T *buf = new UserClass [N]; for (std::size_t i = 0; i <= N; ++i) { std::size_t last_n_op_assign = T::n_total_op_assign_; T* const buf_end = buf + i + 1; const ForwardIterator begin = make_iter (buf, buf, buf_end, gen_iter); const Size n (i, 0); const Generator<T> gen (0, 0); // store the value of the next element const int last_val = Generator<T>(0, 0)().data_.val_; std::generate_n (begin, n, gen); bool success = true; // verify 25.2.6, p2 std::size_t j = 0; for ( ; j != i; ++j) { success = (begin.cur_ + j)->data_.val_ == int (last_val + j + 1); if (!success) break; } rw_assert (success, 0, __LINE__, "%zu. generate_n (): buf[%zu]: %d != %d", i + 1, j, last_val + j + 1, (begin.cur_ + j)->data_.val_ ); if (!success) break; // verify 25.2.6, p3 success = T::n_total_op_assign_ - last_n_op_assign == i; rw_assert (success, 0, __LINE__, "%zu. generate_n (): complexity: %zu != %zu", i + 1, T::n_total_op_assign_ - last_n_op_assign, i); if (!success) break; } delete[] (buf); } /**************************************************************************/ /* extern */ int rw_opt_nloops = 32; // --nloops /* extern */ int rw_opt_no_generate; // --no-generate /* extern */ int rw_opt_no_generate_n; // --no-generate_n /* extern */ int rw_opt_no_output_iter; // --no-OutputIterator /* extern */ int rw_opt_no_fwd_iter; // --no-ForwardIterator /* extern */ int rw_opt_no_bidir_iter; // --no-BidirectionalIterator /* extern */ int rw_opt_no_rnd_iter; // --no-RandomAccessIterator static void test_generate (const std::size_t N) { rw_info (0, 0, 0, "template <class %s, class %s> " "void std::generate (%1$s, %1$s, %2$s&)", "ForwardIterator", "Generator"); if (rw_opt_no_fwd_iter) { rw_note (0, __FILE__, __LINE__, "ForwardIterator test disabled"); } else { test_generate (N, FwdIter<UserClass>(), (UserClass*)0); } if (rw_opt_no_bidir_iter) { rw_note (0, __FILE__, __LINE__, "BidirectionalIterator test disabled"); } else { test_generate (N, BidirIter<UserClass>(), (UserClass*)0); } if (rw_opt_no_rnd_iter) { rw_note (0, __FILE__, __LINE__, "RandomAccessIterator test disabled"); } else { test_generate (N, RandomAccessIter<UserClass>(), (UserClass*)0); } } /**************************************************************************/ static void test_generate_n (const std::size_t N) { rw_info (0, 0, 0, "template <class %s, class %s, class %s> " "void std::generate_n (%1$s, %2$s, const %3$s&)", "OutputIterator", "Size", "Generator"); if (rw_opt_no_output_iter) { rw_note (0, __FILE__, __LINE__, "OutputIterator test disabled"); } else { test_generate_n (N, OutputIter<UserClass>(0, 0, 0), (Size<int>*)0, (UserClass*)0); } if (rw_opt_no_fwd_iter) { rw_note (0, __FILE__, __LINE__, "ForwardIterator test disabled"); } else { test_generate_n (N, FwdIter<UserClass>(), (Size<int>*)0, (UserClass*)0); } if (rw_opt_no_bidir_iter) { rw_note (0, __FILE__, __LINE__, "BidirectionalIterator test disabled"); } else { test_generate_n (N, BidirIter<UserClass>(), (Size<int>*)0, (UserClass*)0); } if (rw_opt_no_rnd_iter) { rw_note (0, __FILE__, __LINE__, "RandomAccessIterator test disabled"); } else { test_generate_n (N, RandomAccessIter<UserClass>(), (Size<int>*)0, (UserClass*)0); } } /**************************************************************************/ static int run_test (int, char*[]) { RW_ASSERT (0 <= rw_opt_nloops); const std::size_t N = std::size_t (rw_opt_nloops); if (rw_opt_no_generate) { rw_note (0, __FILE__, __LINE__, "std::generate test disabled"); } else { test_generate (N); } if (rw_opt_no_generate_n) { rw_note (0, __FILE__, __LINE__, "std::generate_n test disabled"); } else { test_generate_n (N); } return 0; } /**************************************************************************/ int main (int argc, char *argv[]) { return rw_test (argc, argv, __FILE__, "lib.alg.generate", 0 /* no comment */, run_test, "|-nloops#0 " // argument must be non-negative "|-no-generate# " "|-no-generate_n# " "|-no-OutputIterator# " "|-no-ForwardIterator# " "|-no-BidirectionalIterator# " "|-no-RandomAccessIterator#", &rw_opt_nloops, &rw_opt_no_generate, &rw_opt_no_generate_n, &rw_opt_no_output_iter, &rw_opt_no_fwd_iter, &rw_opt_no_bidir_iter, &rw_opt_no_rnd_iter); }
[ "pierluigiortenzi@gmail.com" ]
pierluigiortenzi@gmail.com
2e5f54b8668446dbbfdd1fa5af10c6112d66327b
90cf003e72163de2c209456d5d6908bfe40d6c8c
/src/NNWordLocalContextSeparate/model/Driver.h
e8f56aabc8cc3d8ba90373f1543db1dc2b9d5d8a
[]
no_license
zhangmeishan/SarcasmDetection
504829d3d78e02805df63e281a3741d2aadaf311
1ad8b31cd89d69417b90f5288bf0597f03f2546f
refs/heads/master
2021-01-11T18:16:23.486994
2017-04-28T02:53:55
2017-04-28T02:53:55
69,332,367
16
8
null
2017-04-28T02:53:56
2016-09-27T07:49:20
C++
UTF-8
C++
false
false
2,988
h
/* * Driver.h * * Created on: Mar 18, 2015 * Author: mszhang */ #ifndef SRC_Driver_H_ #define SRC_Driver_H_ #include <iostream> #include "ComputionGraph.h" //A native neural network classfier using only linear features class Driver{ public: Driver(size_t memsize) : aligned_mem(memsize){ _pcg = NULL; } ~Driver() { if (_pcg != NULL) delete _pcg; _pcg = NULL; } public: ComputionGraph *_pcg; // build neural graphs ModelParams _modelparams; // model parameters HyperParams _hyperparams; Metric _eval; CheckGrad _checkgrad; ModelUpdate _ada; // model update AlignedMemoryPool aligned_mem; public: inline void initial(int maxseq_size) { if (!_hyperparams.bValid()){ std::cout << "hyper parameter initialization Error, Please check!" << std::endl; return; } if (!_modelparams.initial(_hyperparams, &aligned_mem)){ std::cout << "model parameter initialization Error, Please check!" << std::endl; return; } _modelparams.exportModelParams(_ada); _modelparams.exportCheckGradParams(_checkgrad); _hyperparams.print(); _pcg = new ComputionGraph(); _pcg->createNodes(ComputionGraph::max_sentence_length, maxseq_size); _pcg->initial(_modelparams, _hyperparams, &aligned_mem); setUpdateParameters(_hyperparams.nnRegular, _hyperparams.adaAlpha, _hyperparams.adaEps); } inline dtype train(const vector<Example>& examples, int iter) { _eval.reset(); int example_num = examples.size(); dtype cost = 0.0; for (int count = 0; count < example_num; count++) { const Example& example = examples[count]; //forward _pcg->forward(example.m_densefeatures, true); //loss function int seq_size = example.m_densefeatures.size(); int wordnum = example.m_densefeatures[seq_size - 1].words.size(); cost += _modelparams.loss.loss(&_pcg->output, example.m_labels, _eval, example_num); // backward, which exists only for training _pcg->backward(); } if (_eval.getAccuracy() < 0) { std::cout << "strange" << std::endl; } return cost; } inline void predict(const vector<Feature> densefeatures, int& results) { _pcg->forward(densefeatures); _modelparams.loss.predict(&_pcg->output, results); } inline dtype cost(const Example& example){ _pcg->forward(example.m_densefeatures); //forward here int seq_size = example.m_densefeatures.size(); dtype cost = 0.0; cost += _modelparams.loss.cost(&_pcg->output, example.m_labels, 1); return cost; } void checkgrad(const vector<Example>& examples, int iter){ ostringstream out; out << "Iteration: " << iter; _checkgrad.check(this, examples, out.str()); } void updateModel() { _ada.update(); //_ada.update(5.0); } void writeModel(); void loadModel(); private: inline void resetEval() { _eval.reset(); } inline void setUpdateParameters(dtype nnRegular, dtype adaAlpha, dtype adaEps){ _ada._alpha = adaAlpha; _ada._eps = adaEps; _ada._reg = nnRegular; } }; #endif /* SRC_Driver_H_ */
[ "pdjlzs@live.com" ]
pdjlzs@live.com
008ccdcb6c8d208bae99ccf9c45bbe976eaa0a4f
2a73874f9cc48c9e2d907f89f187f7d320774dbc
/examples/arkode/CXX_serial/ark_advection_diffusion_reaction.cpp
746f7bdd9f4fcdd4e702590550fedc207240f944
[ "BSD-3-Clause" ]
permissive
opencor/sundials
234413604669ea6cc2c26d9aa4c3aaa8e725e368
2e08eee5347c0b030b55ea71e5db1c44f17dc3b9
refs/heads/master
2023-09-02T07:26:02.608451
2022-11-02T03:15:50
2022-11-02T03:15:50
91,432,417
3
0
null
null
null
null
UTF-8
C++
false
false
49,713
cpp
/* ----------------------------------------------------------------------------- * Programmer(s): David J. Gardner @ LLNL * ----------------------------------------------------------------------------- * SUNDIALS Copyright Start * Copyright (c) 2002-2022, Lawrence Livermore National Security * and Southern Methodist University. * All rights reserved. * * See the top-level LICENSE and NOTICE files for details. * * SPDX-License-Identifier: BSD-3-Clause * SUNDIALS Copyright End * ----------------------------------------------------------------------------- * This example simulates the 1D advection-diffusion-reaction equation, * * u_t = -c u_x + d u_xx + A - (w + 1) * u + v * u^2 * v_t = -c v_x + d u_xx + w * u - v * u^2 * w_t = -c w_x + d w_xx + (B - w) / eps - w * u * * where u, v, and w represent the concentrations of chemical species, c = 0.001 * is the advection speed, d = 0.01 is the diffusion rate, and the species with * constant concentration over time are A = 0.6 and B = 2.0. * * The problem is evolved for t in [0, 3] and x in [0, 1], with initial * conditions given by * * u(0,x) = A + 0.1 * sin(pi * x) * v(0,x) = B/A + 0.1 * sin(pi * x) * w(0,x) = B + 0.1 * sin(pi * x) * * and stationary boundary conditions i.e., * * u_t(t,0) = u_t(t,1) = 0, * v_t(t,0) = v_t(t,1) = 0, * w_t(t,0) = w_t(t,1) = 0. * * The system is advanced in time using one of the following approaches based on * the --integrator <int> flag value. The following options are available: * * 0. An explicit Runge-Kutta method with ERKStep. * * 1. An explicit, diagonally implicit, or IMEX Runge-Kutta method with * ARKStep. The method used depends on the value of the --splitting <int> * flag (denoted by IDX in the tables below). * * Advection-Diffusion-Reaction splittings * * | IDX | A | D | R | Description | * +-----+---+---+---+-------------------------------------------------+ * | 0 | E | E | E | fully explicit | * | 1 | E | E | I | implicit reaction, explicit advection-diffusion | * | 2 | E | I | E | implicit diffusion, explicit advection-reaction | * | 3 | E | I | I | implicit diffusion-reaction, explicit advection | * | 4 | I | E | E | implicit advection, explicit diffusion-reaction | * | 5 | I | E | I | implicit advection-reaction, explicit diffusion | * | 6 | I | I | E | implicit advection-diffusion, explicit reaction | * | 7 | I | I | I | fully implicit | * +-----+---+---+---+-------------------------------------------------+ * * Advection-Reaction splittings (use the --no-diffusion flag) * * | IDX | A | R | Description | * +-----+---+---+---------------------------------------+ * | 0 | E | E | fully explicit | * | 1 | E | I | implicit reaction, explicit advection | * | 2 | I | E | implicit advection, explicit reaction | * | 3 | I | I | fully implicit | * +-----+---+---+---------------------------------------+ * * Diffusion-Reaction splittings (use the --no-advection flag) * * | IDX | D | R | Description | * +-----+---+---+---------------------------------------+ * | 0 | E | E | fully explicit | * | 1 | E | I | explicit diffusion, implicit reaction | * | 2 | I | E | explicit reaction, implicit diffusion | * | 3 | I | I | fully implicit | * +-----+---+---+---------------------------------------+ * * 2. An explicit, implicit-solve-decoupled, or IMEX-solve-decoupled MRI-GARK * method with MRIStep. Advection is treated explicitly at the slow time * scale, diffusion implicitly at the slow time scale, and the reaction * terms are integrated using an explicit or implicit method from ARKStep * at the fast time scale depending on the value of the --splitting <int> * flag (denoted by IDX in the tables below). * * Advection-Diffusion-Reaction splittings * * | IDX | A | D | R | Description | * +-----+-----+-----+-----+----------------------------------------------+ * | 0 | S-E | S-I | F-E | Slow-explicit advection, | * | | | | | Slow-Implicit diffusion, | * | | | | | Fast-explicit reaction | * | 1 | S-E | S-I | F-I | Slow-explicit advection, | * | | | | | Slow-Implicit diffusion, | * | | | | | Fast-Implicit reaction | * +-----+-----+-----+-----+----------------------------------------------+ * * Advection-Reaction splittings (use the --no-diffusion flag) * * | IDX | A | R | Description | * +-----+-----+-----+-------------------------------------------------+ * | 0 | S-E | F-E | Slow-explicit advection, Fast-explicit reaction | * | 1 | S-E | F-I | Slow-explicit advection, Fast-Implicit reaction | * +-----+-----+-----+-------------------------------------------------+ * * Diffusion-Reaction splittings (use the --no-advection flag) * * | IDX | D | R | Description | * +-----+-----+-----+-------------------------------------------------+ * | 0 | S-I | F-E | Slow-implicit diffusion, Fast-explicit reaction | * | 1 | S-I | F-I | Slow-implicit diffusion, Fast-Implicit reaction | * +-----+-----+-----+-------------------------------------------------+ * * 3. An explicit, implicit-solve-decoupled, or IMEX-solve-decoupled MRI-GARK * method with MRIStep. Advection is treated explicitly at the slow time * scale, diffusion implicitly at the slow time scale, and the reaction * terms are integrated implicitly using a custom inner stepper wrapping * CVODE, * * Advection-Diffusion-Reaction splitting * * | A | D | R | Description | * +-----+-----+-----+----------------------------------------------+ * | S-E | S-I | F-I | Slow-explicit advection, | * | | | | Slow-Implicit diffusion, | * | | | | Fast-Implicit reaction | * +-----+-----+-----+----------------------------------------------+ * * Advection-Reaction splitting (use the --no-diffusion flag) * * | A | R | Description | * +-----+-----+-------------------------------------------------+ * | S-E | F-I | Slow-explicit advection, Fast-Implicit reaction | * +-----+-----+-------------------------------------------------+ * * Diffusion-Reaction splitting (use the --no-advection flag) * * | D | R | Description | * +-----+-----+-------------------------------------------------+ * | S-I | F-I | Slow-implicit diffusion, Fast-Implicit reaction | * +-----+-----+-------------------------------------------------+ * * Several command line options are available to change the problem parameters * and integrator settings. Use the flag --help for more information. * ---------------------------------------------------------------------------*/ #include "ark_advection_diffusion_reaction.hpp" int main(int argc, char* argv[]) { // SUNDIALS context object for this simulation sundials::Context ctx; // ----------------- // Setup the problem // ----------------- UserData udata; UserOptions uopts; vector<string> args(argv + 1, argv + argc); int flag = ReadInputs(args, udata, uopts, ctx); if (check_flag(flag, "ReadInputs")) return 1; flag = PrintSetup(udata, uopts); if (check_flag(flag, "PrintSetup")) return 1; // Create state vector and set initial condition N_Vector y = N_VNew_Serial(udata.neq, ctx); if (check_ptr(y, "N_VNew_Serial")) return 1; flag = SetIC(y, udata); if (check_flag(flag, "SetIC")) return 1; // -------------------- // Setup the integrator // -------------------- // ERKStep, ARKStep, or MRIStep memory structure void* arkode_mem = nullptr; // Matrix and linear solver for DIRK, IMEX, or MRI slow integrators SUNMatrix A = nullptr; SUNLinearSolver LS = nullptr; // Matrix and linear solver for MRI fast integrator SUNMatrix A_fast = nullptr; SUNLinearSolver LS_fast = nullptr; // Fast integrator for MRIStep MRIStepInnerStepper fast_mem = nullptr; // Create integrator switch(uopts.integrator) { case(0): flag = SetupERK(ctx, udata, uopts, y, &arkode_mem); break; case(1): flag = SetupARK(ctx, udata, uopts, y, &A, &LS, &arkode_mem); break; case(2): flag = SetupMRIARK(ctx, udata, uopts, y, &A, &LS, &A_fast, &LS_fast, &fast_mem, &arkode_mem); break; case(3): flag = SetupMRICVODE(ctx, udata, uopts, y, &A, &LS, &A_fast, &LS_fast, &fast_mem, &arkode_mem); break; default: flag = -1; } if (check_flag(flag, "Integrator setup")) return 1; // ---------------------- // Evolve problem in time // ---------------------- // Initial time, time between outputs, output time realtype t = ZERO; realtype dTout = udata.tf / uopts.nout; realtype tout = dTout; // Inital output flag = OpenOutput(udata, uopts); if (check_flag(flag, "OpenOutput")) return 1; flag = WriteOutput(t, y, udata, uopts); if (check_flag(flag, "WriteOutput")) return 1; // Loop over output times for (int iout = 0; iout < uopts.nout; iout++) { // Evolve switch(uopts.integrator) { case(0): if (uopts.output == 3) { // Stop at output time (do not interpolate output) flag = ERKStepSetStopTime(arkode_mem, tout); if (check_flag(flag, "ARKStepSetStopTime")) return 1; } // Advance in time flag = ERKStepEvolve(arkode_mem, tout, y, &t, ARK_NORMAL); break; case(1): if (uopts.output == 3) { // Stop at output time (do not interpolate output) flag = ARKStepSetStopTime(arkode_mem, tout); if (check_flag(flag, "ARKStepSetStopTime")) return 1; } // Advance in time flag = ARKStepEvolve(arkode_mem, tout, y, &t, ARK_NORMAL); break; case(2): if (uopts.output == 3) { // Stop at output time (do not interpolate output) flag = MRIStepSetStopTime(arkode_mem, tout); if (check_flag(flag, "MRIStepSetStopTime")) return 1; } // Advance in time flag = MRIStepEvolve(arkode_mem, tout, y, &t, ARK_NORMAL); break; case(3): if (uopts.output == 3) { // Stop at output time (do not interpolate output) flag = MRIStepSetStopTime(arkode_mem, tout); if (check_flag(flag, "MRIStepSetStopTime")) return 1; } // Advance in time flag = MRIStepEvolve(arkode_mem, tout, y, &t, ARK_NORMAL); break; default: flag = -1; } if (check_flag(flag, "Evolve")) break; // Output solution flag = WriteOutput(t, y, udata, uopts); if (check_flag(flag, "WriteOutput")) return 1; // Update output time tout += dTout; tout = (tout > udata.tf) ? udata.tf : tout; } // Close output flag = CloseOutput(uopts); if (check_flag(flag, "CloseOutput")) return 1; // ------------ // Output stats // ------------ if (uopts.output) { cout << "Final integrator statistics:" << endl; switch(uopts.integrator) { case(0): flag = OutputStatsERK(arkode_mem, udata); break; case(1): flag = OutputStatsARK(arkode_mem, udata); break; case(2): flag = OutputStatsMRIARK(arkode_mem, fast_mem, udata); break; case(3): flag = OutputStatsMRICVODE(arkode_mem, fast_mem, udata); break; default: flag = -1; } if (check_flag(flag, "OutputStats")) return 1; } // -------- // Clean up // -------- switch(uopts.integrator) { case(0): ERKStepFree(&arkode_mem); break; case(1): ARKStepFree(&arkode_mem); break; case(2): { void* inner_arkode_mem = nullptr; MRIStepInnerStepper_GetContent(fast_mem, &inner_arkode_mem); ARKStepFree(&inner_arkode_mem); MRIStepInnerStepper_Free(&fast_mem); MRIStepFree(&arkode_mem); break; } case(3): { void* inner_content = nullptr; MRIStepInnerStepper_GetContent(fast_mem, &inner_content); CVodeInnerStepperContent* content = (CVodeInnerStepperContent *) inner_content; CVodeFree(&(content->cvode_mem)); delete content; MRIStepInnerStepper_Free(&fast_mem); MRIStepFree(&arkode_mem); break; } } N_VDestroy(y); SUNMatDestroy(A); SUNLinSolFree(LS); SUNMatDestroy(A_fast); SUNLinSolFree(LS_fast); return 0; } // ----------------------------------------------------------------------------- // Setup the integrator // ----------------------------------------------------------------------------- int SetupERK(SUNContext ctx, UserData &udata, UserOptions &uopts, N_Vector y, void** arkode_mem) { // Problem configuration ARKRhsFn f_RHS; // explicit RHS function if (udata.diffusion && udata.advection) { // Explicit -- advection-diffusion-reaction f_RHS = f_adv_diff_react; } else if (!udata.diffusion && udata.advection) { // Explicit -- advection-reaction f_RHS = f_adv_react; } else if (udata.diffusion && !udata.advection) { // Explicit -- diffusion-reaction f_RHS = f_diff_react; } else { cerr << "ERROR: Invalid problem configuration" << endl; return -1; } // Create ERKStep memory *arkode_mem = ERKStepCreate(f_RHS, ZERO, y, ctx); if (check_ptr(arkode_mem, "ERKStepCreate")) return 1; // Specify tolerances int flag = ERKStepSStolerances(*arkode_mem, uopts.rtol, uopts.atol); if (check_flag(flag, "ERKStepSStolerances")) return 1; // Attach user data flag = ERKStepSetUserData(*arkode_mem, &udata); if (check_flag(flag, "ERKStepSetUserData")) return 1; // Select method order flag = ERKStepSetOrder(*arkode_mem, uopts.order); if (check_flag(flag, "ERKStepSetOrder")) return 1; // Set fixed step size or adaptivity method if (uopts.fixed_h > ZERO) { flag = ERKStepSetFixedStep(*arkode_mem, uopts.fixed_h); if (check_flag(flag, "ERKStepSetFixedStep")) return 1; } else if (uopts.controller >= 0) { flag = ERKStepSetAdaptivityMethod(*arkode_mem, uopts.controller, SUNTRUE, SUNFALSE, nullptr); if (check_flag(flag, "ERKStepSetAdaptivityMethod")) return 1; } // Set max steps between outputs flag = ERKStepSetMaxNumSteps(*arkode_mem, uopts.maxsteps); if (check_flag(flag, "ERKStepSetMaxNumSteps")) return 1; // Set stopping time flag = ERKStepSetStopTime(*arkode_mem, udata.tf); if (check_flag(flag, "ERKStepSetStopTime")) return 1; return 0; } int SetupARK(SUNContext ctx, UserData &udata, UserOptions &uopts, N_Vector y, SUNMatrix* A, SUNLinearSolver* LS, void** arkode_mem) { // Problem configuration ARKRhsFn fe_RHS; // explicit RHS function ARKRhsFn fi_RHS; // implicit RHS function ARKLsJacFn Ji_RHS; // Jacobian of implicit RHS function // advection-diffusion-reaction if (udata.diffusion && udata.advection) { switch(udata.splitting) { case(0): // ERK -- fully explicit fe_RHS = f_adv_diff_react; fi_RHS = nullptr; Ji_RHS = nullptr; break; case(1): // IMEX -- explicit advection-diffusion, implicit reaction fe_RHS = f_adv_diff; fi_RHS = f_reaction; Ji_RHS = J_reaction; break; case(2): // IMEX -- explicit advection-reaction, implicit diffusion fe_RHS = f_adv_react; fi_RHS = f_diffusion; Ji_RHS = J_diffusion; break; case(3): // IMEX -- explicit advection, implicit diffusion-reaction fe_RHS = f_advection; fi_RHS = f_diff_react; Ji_RHS = J_diff_react; break; case(4): // IMEX -- explicit diffusion-reaction, implicit advection fe_RHS = f_diff_react; fi_RHS = f_advection; Ji_RHS = J_advection; break; case(5): // IMEX -- explicit diffusion, implicit advection-reaction fe_RHS = f_diffusion; fi_RHS = f_adv_react; Ji_RHS = J_adv_react; break; case(6): // IMEX -- explicit reaction, implicit advection-diffusion fe_RHS = f_reaction; fi_RHS = f_adv_diff; Ji_RHS = J_adv_diff; break; case(7): // DIRK -- fully implicit fe_RHS = nullptr; fi_RHS = f_adv_diff_react; Ji_RHS = J_adv_diff_react; break; default: cerr << "ERROR: Invalid splitting option" << endl; return -1; break; } } // advection-reaction else if (!udata.diffusion && udata.advection) { switch(udata.splitting) { case(0): // ERK -- fully explicit fe_RHS = f_adv_react; fi_RHS = nullptr; Ji_RHS = nullptr; break; case(1): // IMEX -- explicit advection, implicit reaction fe_RHS = f_advection; fi_RHS = f_reaction; Ji_RHS = J_reaction; break; case(2): // IMEX -- explicit reaction, implicit advection fe_RHS = f_reaction; fi_RHS = f_advection; Ji_RHS = J_advection; break; case(3): // DIRK -- fully implicit fe_RHS = nullptr; fi_RHS = f_adv_react; Ji_RHS = J_adv_react; break; default: cerr << "ERROR: Invalid splitting option" << endl; return -1; break; } } // diffusion-reaction else if (udata.diffusion && !udata.advection) { switch(udata.splitting) { case(0): // ERK -- fully explicit fe_RHS = f_diff_react; fi_RHS = nullptr; Ji_RHS = nullptr; break; case(1): // IMEX -- explicit diffusion, implicit reaction fe_RHS = f_diffusion; fi_RHS = f_reaction; Ji_RHS = J_reaction; break; case(2): // IMEX -- explicit reaction, implicit diffusion fe_RHS = f_reaction; fi_RHS = f_diffusion; Ji_RHS = J_diffusion; break; case(4): // DIRK -- fully implicit fe_RHS = nullptr; fi_RHS = f_diff_react; Ji_RHS = J_diff_react; break; default: cerr << "ERROR: Invalid splitting option" << endl; return -1; break; } } else { cerr << "ERROR: Invalid problem configuration" << endl; return -1; } // Create ARKStep memory *arkode_mem = ARKStepCreate(fe_RHS, fi_RHS, ZERO, y, ctx); if (check_ptr(arkode_mem, "ARKStepCreate")) return 1; // Specify tolerances int flag = ARKStepSStolerances(*arkode_mem, uopts.rtol, uopts.atol); if (check_flag(flag, "ARKStepSStolerances")) return 1; // Attach user data flag = ARKStepSetUserData(*arkode_mem, &udata); if (check_flag(flag, "ARKStepSetUserData")) return 1; // If implicit, setup solvers if (fi_RHS) { // Create banded matrix *A = SUNBandMatrix(udata.neq, 3, 3, ctx); if (check_ptr(*A, "SUNBandMatrix")) return 1; // Create linear solver *LS = SUNLinSol_Band(y, *A, ctx); if (check_ptr(*LS, "SUNLinSol_Band")) return 1; // Attach linear solver flag = ARKStepSetLinearSolver(*arkode_mem, *LS, *A); if (check_flag(flag, "ARKStepSetLinearSolver")) return 1; // Attach Jacobian function flag = ARKStepSetJacFn(*arkode_mem, Ji_RHS); if (check_flag(flag, "ARKStepSetJacFn")) return 1; // Set the predictor method flag = ARKStepSetPredictorMethod(*arkode_mem, uopts.predictor); if (check_flag(flag, "ARKStepSetPredictorMethod")) return 1; // Set linear solver setup frequency flag = ARKStepSetLSetupFrequency(*arkode_mem, uopts.ls_setup_freq); if (check_flag(flag, "ARKStepSetLSetupFrequency")) return 1; if (uopts.linear) { // Specify linearly implicit non-time-dependent RHS flag = ARKStepSetLinear(*arkode_mem, SUNFALSE); if (check_flag(flag, "ARKStepSetLinear")) return 1; } } // Select method if (!fe_RHS && uopts.ark_dirk) { // Use the DIRK method from the default ARK method switch(uopts.order) { case(3): flag = ARKStepSetTableName(*arkode_mem, "ARKODE_ARK324L2SA_DIRK_4_2_3", "ARKODE_ERK_NONE"); break; case(4): flag = ARKStepSetTableName(*arkode_mem, "ARKODE_ARK436L2SA_DIRK_6_3_4", "ARKODE_ERK_NONE"); break; case(5): flag = ARKStepSetTableName(*arkode_mem, "ARKODE_ARK548L2SA_DIRK_8_4_5", "ARKODE_ERK_NONE"); break; default: cerr << "ERROR: Invalid order to use ARK DIRK method" << endl; return -1; break; } if (check_flag(flag, "ARKStepSetTableNum")) return 1; } else { // Select default method of a given order flag = ARKStepSetOrder(*arkode_mem, uopts.order); if (check_flag(flag, "ARKStepSetOrder")) return 1; } // Set fixed step size or adaptivity method if (uopts.fixed_h > ZERO) { flag = ARKStepSetFixedStep(*arkode_mem, uopts.fixed_h); if (check_flag(flag, "ARKStepSetFixedStep")) return 1; } else if (uopts.controller >= 0) { flag = ARKStepSetAdaptivityMethod(*arkode_mem, uopts.controller, SUNTRUE, SUNFALSE, nullptr); if (check_flag(flag, "ARKStepSetAdaptivityMethod")) return 1; } // Set max steps between outputs flag = ARKStepSetMaxNumSteps(*arkode_mem, uopts.maxsteps); if (check_flag(flag, "ARKStepSetMaxNumSteps")) return 1; // Set stopping time flag = ARKStepSetStopTime(*arkode_mem, udata.tf); if (check_flag(flag, "ARKStepSetStopTime")) return 1; return 0; } int SetupMRIARK(SUNContext ctx, UserData &udata, UserOptions &uopts, N_Vector y, SUNMatrix* A, SUNLinearSolver* LS, SUNMatrix* A_fast, SUNLinearSolver* LS_fast, MRIStepInnerStepper* fast_mem, void** arkode_mem) { // Problem configuration ARKRhsFn fse_RHS; // slow explicit RHS function ARKRhsFn fsi_RHS; // slow implicit RHS function ARKLsJacFn Jsi_RHS; // Jacobian of slow implicit RHS function ARKRhsFn ffe_RHS; // fast explicit RHS function ARKRhsFn ffi_RHS; // fast implicit RHS function ARKLsJacFn Jfi_RHS; // Jacobian of fast implicit RHS function // Slow time scale if (udata.diffusion && udata.advection) { // IMEX slow -- advection-diffusion fse_RHS = f_advection; fsi_RHS = f_diffusion; Jsi_RHS = J_diffusion; } else if (!udata.diffusion && udata.advection) { // Explicit slow -- advection fse_RHS = f_advection; fsi_RHS = nullptr; Jsi_RHS = nullptr; } else if (udata.diffusion && !udata.advection) { // Implicit slow -- diffusion fse_RHS = nullptr; fsi_RHS = f_diffusion; Jsi_RHS = J_diffusion; } else { // No slow time scale cerr << "ERROR: Invalid problem configuration" << endl; return -1; } // Fast time scale if (udata.splitting) { // Implicit fast -- reaction ffe_RHS = nullptr; ffi_RHS = f_reaction; Jfi_RHS = J_reaction; } else { // Explicit fast -- reaction ffe_RHS = f_reaction; ffi_RHS = nullptr; Jfi_RHS = nullptr; } // ------------------------- // Setup the fast integrator // ------------------------- // Create ARKStep memory void* fast_arkode_mem = ARKStepCreate(ffe_RHS, ffi_RHS, ZERO, y, ctx); if (check_ptr(arkode_mem, "ARKStepCreate")) return 1; // Specify tolerances int flag = ARKStepSStolerances(fast_arkode_mem, uopts.rtol_fast, uopts.atol_fast); if (check_flag(flag, "ARKStepSStolerances")) return 1; // Attach user data flag = ARKStepSetUserData(fast_arkode_mem, &udata); if (check_flag(flag, "ARKStepSetUserData")) return 1; // If implicit, setup solvers if (ffi_RHS) { // Create banded matrix *A_fast = SUNBandMatrix(udata.neq, 2, 2, ctx); if (check_ptr(*A_fast, "SUNBandMatrix")) return 1; // Create linear solver *LS_fast = SUNLinSol_Band(y, *A_fast, ctx); if (check_ptr(*LS_fast, "SUNLinSol_Band")) return 1; // Attach linear solver flag = ARKStepSetLinearSolver(fast_arkode_mem, *LS_fast, *A_fast); if (check_flag(flag, "ARKStepSetLinearSolver")) return 1; // Attach Jacobian function flag = ARKStepSetJacFn(fast_arkode_mem, Jfi_RHS); if (check_flag(flag, "ARKStepSetJacFn")) return 1; // Set the predictor method flag = ARKStepSetPredictorMethod(fast_arkode_mem, uopts.predictor_fast); if (check_flag(flag, "ARKStepSetPredictorMethod")) return 1; // Set linear solver setup frequency flag = ARKStepSetLSetupFrequency(fast_arkode_mem, uopts.ls_setup_freq_fast); if (check_flag(flag, "ARKStepSetLSetupFrequency")) return 1; } // Select method order flag = ARKStepSetOrder(fast_arkode_mem, uopts.order_fast); if (check_flag(flag, "ARKStepSetOrder")) return 1; // Set fixed step size or adaptivity method if (uopts.fixed_h_fast > ZERO) { flag = ARKStepSetFixedStep(fast_arkode_mem, uopts.fixed_h_fast); if (check_flag(flag, "ARKStepSetFixedStep")) return 1; } else if (uopts.controller_fast >= 0) { flag = ARKStepSetAdaptivityMethod(fast_arkode_mem, uopts.controller_fast, SUNTRUE, SUNFALSE, nullptr); if (check_flag(flag, "ARKStepSetAdaptivityMethod")) return 1; } // Set max steps between outputs flag = ARKStepSetMaxNumSteps(fast_arkode_mem, uopts.maxsteps); if (check_flag(flag, "ARKStepSetMaxNumSteps")) return 1; // Wrap ARKODE as an MRIStepInnerStepper flag = ARKStepCreateMRIStepInnerStepper(fast_arkode_mem, fast_mem); if (check_flag(flag, "ARKStepCreateMRIStepInnerStepper")) return 1; // ------------------------- // Setup the slow integrator // ------------------------- // Create slow integrator for diffusion and attach fast integrator *arkode_mem = MRIStepCreate(fse_RHS, fsi_RHS, ZERO, y, *fast_mem, ctx); if (check_ptr(*arkode_mem, "MRIStepCreate")) return 1; // Set the slow step size flag = MRIStepSetFixedStep(*arkode_mem, uopts.fixed_h); if (check_flag(flag, "MRIStepSetFixedStep")) return 1; // Specify tolerances flag = MRIStepSStolerances(*arkode_mem, uopts.rtol, uopts.atol); if (check_flag(flag, "MRIStepSStolerances")) return 1; // Attach user data flag = MRIStepSetUserData(*arkode_mem, &udata); if (check_flag(flag, "MRIStepSetUserData")) return 1; // If implicit, setup solvers if (fsi_RHS) { // Create banded matrix *A = SUNBandMatrix(udata.neq, 3, 3, ctx); if (check_ptr(*A, "SUNBandMatrix")) return 1; // Create linear solver *LS = SUNLinSol_Band(y, *A, ctx); if (check_ptr(*LS, "SUNLinSol_Band")) return 1; // Attach linear solver flag = MRIStepSetLinearSolver(*arkode_mem, *LS, *A); if (check_flag(flag, "MRIStepSetLinearSolver")) return 1; // Attach Jacobian function flag = MRIStepSetJacFn(*arkode_mem, Jsi_RHS); if (check_flag(flag, "MRIStepSetJacFn")) return 1; // Set linear solver setup frequency flag = MRIStepSetLSetupFrequency(*arkode_mem, uopts.ls_setup_freq); if (check_flag(flag, "MRIStepSetLSetupFrequency")) return 1; // Set the predictor method flag = MRIStepSetPredictorMethod(*arkode_mem, uopts.predictor); if (check_flag(flag, "MRIStepSetPredictorMethod")) return 1; if (uopts.linear) { // Specify linearly implicit non-time-dependent RHS flag = MRIStepSetLinear(*arkode_mem, SUNFALSE); if (check_flag(flag, "MRIStepSetLinear")) return 1; } } // Select method order flag = MRIStepSetOrder(*arkode_mem, uopts.order); if (check_flag(flag, "MRIStepSetOrder")) return 1; // Set max steps between outputs flag = MRIStepSetMaxNumSteps(*arkode_mem, uopts.maxsteps); if (check_flag(flag, "MRIStepSetMaxNumSteps")) return 1; // Set stopping time flag = MRIStepSetStopTime(*arkode_mem, udata.tf); if (check_flag(flag, "MRIStepSetStopTime")) return 1; return 0; } int SetupMRICVODE(SUNContext ctx, UserData &udata, UserOptions &uopts, N_Vector y, SUNMatrix* A, SUNLinearSolver* LS, SUNMatrix* A_fast, SUNLinearSolver* LS_fast, MRIStepInnerStepper* fast_mem, void** arkode_mem) { // Problem configuration ARKRhsFn fse_RHS; // slow explicit RHS function ARKRhsFn fsi_RHS; // slow implicit RHS function ARKLsJacFn Jsi_RHS; // Jacobian of slow implicit RHS function ARKRhsFn ff_RHS; // fast RHS function ARKLsJacFn Jf_RHS; // Jacobian of fast RHS function // Slow time scale if (udata.diffusion && udata.advection) { // IMEX slow -- advection-diffusion fse_RHS = f_advection; fsi_RHS = f_diffusion; Jsi_RHS = J_diffusion; } else if (!udata.diffusion && udata.advection) { // Explicit slow -- advection fse_RHS = f_advection; fsi_RHS = nullptr; Jsi_RHS = nullptr; } else if (udata.diffusion && !udata.advection) { // Implicit slow -- diffusion fse_RHS = nullptr; fsi_RHS = f_diffusion; Jsi_RHS = J_diffusion; } else { // No slow time scale cerr << "ERROR: Invalid problem configuration" << endl; return -1; } // Fast time scale -- Implicit fast reaction ff_RHS = f_react_forcing; Jf_RHS = J_reaction; // ------------------------- // Setup the fast integrator // ------------------------- // Create the solver memory and specify the Adams methods void* cvode_mem = CVodeCreate(CV_BDF, ctx); if (check_ptr(cvode_mem, "CVodeCreate")) return(1); // Initialize the integrator memory int flag = CVodeInit(cvode_mem, ff_RHS, ZERO, y); if (check_flag(flag, "CVodeInit")) return(1); // Specify tolerances flag = CVodeSStolerances(cvode_mem, uopts.rtol_fast, uopts.atol_fast); if (check_flag(flag, "CVodeSVtolerances")) return(1); // Attach user data flag = CVodeSetUserData(cvode_mem, &udata); if (check_flag(flag, "CVodeSetUserData")) return 1; // Create banded matrix *A_fast = SUNBandMatrix(udata.neq, 2, 2, ctx); if (check_ptr(*A_fast, "SUNBandMatrix")) return 1; // Create linear solver *LS_fast = SUNLinSol_Band(y, *A_fast, ctx); if (check_ptr(*LS_fast, "SUNLinSol_Band")) return 1; // Attach linear solver flag = CVodeSetLinearSolver(cvode_mem, *LS_fast, *A_fast); if (check_flag(flag, "CVodeSetLinearSolver")) return 1; // Attach Jacobian function flag = CVodeSetJacFn(cvode_mem, Jf_RHS); if (check_flag(flag, "CVodeSetJacFn")) return 1; // Set linear solver setup frequency flag = CVodeSetLSetupFrequency(cvode_mem, uopts.ls_setup_freq_fast); if (check_flag(flag, "CVodeSetLSetupFrequency")) return 1; // Set max steps between outputs flag = CVodeSetMaxNumSteps(cvode_mem, uopts.maxsteps); if (check_flag(flag, "CVodeSetMaxNumSteps")) return 1; // Create the inner stepper wrapper flag = MRIStepInnerStepper_Create(ctx, fast_mem); if (check_flag(flag, "MRIStepInnerStepper_Create")) return 1; // Attach memory and operations CVodeInnerStepperContent* inner_content = new CVodeInnerStepperContent; inner_content->cvode_mem = cvode_mem; inner_content->user_data = &udata; inner_content->save_hinit = uopts.save_hinit; inner_content->save_hcur = uopts.save_hcur; inner_content->hcur_factor = uopts.hcur_factor; flag = MRIStepInnerStepper_SetContent(*fast_mem, inner_content); if (check_flag(flag, "MRIStepInnerStepper_SetContent")) return 1; flag = MRIStepInnerStepper_SetEvolveFn(*fast_mem, CVodeInnerStepper_Evolve); if (check_flag(flag, "MRIStepInnerStepper_SetEvolve")) return 1; flag = MRIStepInnerStepper_SetFullRhsFn(*fast_mem, CVodeInnerStepper_FullRhs); if (check_flag(flag, "MRIStepInnerStepper_SetFullRhsFn")) return 1; flag = MRIStepInnerStepper_SetResetFn(*fast_mem, CVodeInnerStepper_Reset); if (check_flag(flag, "MRIStepInnerStepper_SetResetFn")) return 1; // Attach inner stepper memory to user data udata.fast_mem = *fast_mem; // ------------------------- // Setup the slow integrator // ------------------------- // Create slow integrator for diffusion and attach fast integrator *arkode_mem = MRIStepCreate(fse_RHS, fsi_RHS, ZERO, y, *fast_mem, ctx); if (check_ptr(*arkode_mem, "MRIStepCreate")) return 1; // Set the slow step size flag = MRIStepSetFixedStep(*arkode_mem, uopts.fixed_h); if (check_flag(flag, "MRIStepSetFixedStep")) return 1; // Specify tolerances flag = MRIStepSStolerances(*arkode_mem, uopts.rtol, uopts.atol); if (check_flag(flag, "MRIStepSStolerances")) return 1; // Attach user data flag = MRIStepSetUserData(*arkode_mem, &udata); if (check_flag(flag, "MRIStepSetUserData")) return 1; // If implicit, setup solvers if (fsi_RHS) { // Create banded matrix *A = SUNBandMatrix(udata.neq, 3, 3, ctx); if (check_ptr(*A, "SUNBandMatrix")) return 1; // Create linear solver *LS = SUNLinSol_Band(y, *A, ctx); if (check_ptr(*LS, "SUNLinSol_Band")) return 1; // Attach linear solver flag = MRIStepSetLinearSolver(*arkode_mem, *LS, *A); if (check_flag(flag, "MRIStepSetLinearSolver")) return 1; // Attach Jacobian function flag = MRIStepSetJacFn(*arkode_mem, Jsi_RHS); if (check_flag(flag, "MRIStepSetJacFn")) return 1; // Set linear solver setup frequency flag = MRIStepSetLSetupFrequency(*arkode_mem, uopts.ls_setup_freq); if (check_flag(flag, "MRIStepSetLSetupFrequency")) return 1; // Set the predictor method flag = MRIStepSetPredictorMethod(*arkode_mem, uopts.predictor); if (check_flag(flag, "MRIStepSetPredictorMethod")) return 1; if (uopts.linear) { // Specify linearly implicit non-time-dependent RHS flag = MRIStepSetLinear(*arkode_mem, SUNFALSE); if (check_flag(flag, "MRIStepSetLinear")) return 1; } } // Select method order flag = MRIStepSetOrder(*arkode_mem, uopts.order); if (check_flag(flag, "MRIStepSetOrder")) return 1; // Set max steps between outputs flag = MRIStepSetMaxNumSteps(*arkode_mem, uopts.maxsteps); if (check_flag(flag, "MRIStepSetMaxNumSteps")) return 1; // Set stopping time flag = MRIStepSetStopTime(*arkode_mem, udata.tf); if (check_flag(flag, "MRIStepSetStopTime")) return 1; return 0; } // ----------------------------------------------------------------------------- // Custom inner stepper functions // ----------------------------------------------------------------------------- // Advance the fast ODE in time int CVodeInnerStepper_Evolve(MRIStepInnerStepper fast_mem, realtype t0, realtype tout, N_Vector y) { void* inner_content = nullptr; int flag = MRIStepInnerStepper_GetContent(fast_mem, &inner_content); if (check_flag(flag, "MRIStepInnerStepper_GetContent")) return -1; CVodeInnerStepperContent* content = (CVodeInnerStepperContent*) inner_content; // Set initial step size (if saved) if (content->save_hinit && content->hinit > ZERO) { flag = CVodeSetInitStep(content->cvode_mem, content->hinit); if (flag) return -1; } else if (content->save_hcur && content->hcur > ZERO) { flag = CVodeSetInitStep(content->cvode_mem, content->hcur_factor * content->hcur); if (flag) return -1; } // Evolve in time flag = CVodeSetStopTime(content->cvode_mem, tout); if (check_flag(flag, "CVodeSetStopTime")) return -1; realtype tret; flag = CVode(content->cvode_mem, tout, y, &tret, CV_NORMAL); if (flag < 0) return -1; // Save the initial step size if (content->save_hinit) { flag = CVodeGetActualInitStep(content->cvode_mem, &(content->hinit)); if (flag) return -1; } // Save the current step size if (content->save_hcur) { flag = CVodeGetCurrentStep(content->cvode_mem, &(content->hcur)); if (flag) return -1; } return 0; } // Compute the RHS of the fast ODE int CVodeInnerStepper_FullRhs(MRIStepInnerStepper fast_mem, realtype t, N_Vector y, N_Vector f, int mode) { void* inner_content = nullptr; int flag = MRIStepInnerStepper_GetContent(fast_mem, &inner_content); if (check_flag(flag, "MRIStepInnerStepper_GetContent")) return -1; CVodeInnerStepperContent* content = (CVodeInnerStepperContent*) inner_content; flag = f_reaction(t, y, f, content->user_data); if (flag) return -1; return 0; } // Reset the fast integrator to the given time and state int CVodeInnerStepper_Reset(MRIStepInnerStepper fast_mem, realtype tR, N_Vector yR) { void* inner_content = nullptr; int flag = MRIStepInnerStepper_GetContent(fast_mem, &inner_content); if (check_flag(flag, "MRIStepInnerStepper_GetContent")) return -1; CVodeInnerStepperContent* content = (CVodeInnerStepperContent*) inner_content; // Save current stats before reinit flag = UpdateCVodeStats(content); if (check_flag(flag, "UpdateCVodeStats")) return -1; // Reinitialize CVODE with new state flag = CVodeReInit(content->cvode_mem, tR, yR); if (check_flag(flag, "CVodeReInit")) return -1; return 0; } // ----------------------------------------------------------------------------- // Functions called by the integrator // ----------------------------------------------------------------------------- // Advection RHS function int f_advection(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Access data arrays realtype* ydata = N_VGetArrayPointer(y); if (check_ptr(ydata, "N_VGetArrayPointer")) return -1; realtype* fdata = N_VGetArrayPointer(f); if (check_ptr(fdata, "N_VGetArrayPointer")) return -1; // Compute advection RHS realtype ul, ur; realtype vl, vr; realtype wl, wr; realtype c = -ONE * udata->c / (TWO * udata->dx); fdata[0] = fdata[1] = fdata[2] = ZERO; for (sunindextype i = 1; i < udata->nx - 1; i++) { ul = ydata[UIDX(i-1)]; ur = ydata[UIDX(i+1)]; vl = ydata[VIDX(i-1)]; vr = ydata[VIDX(i+1)]; wl = ydata[WIDX(i-1)]; wr = ydata[WIDX(i+1)]; fdata[UIDX(i)] = c * (ur - ul); fdata[VIDX(i)] = c * (vr - vl); fdata[WIDX(i)] = c * (wr - wl); } fdata[udata->neq - 3] = fdata[udata->neq - 2] = fdata[udata->neq - 1] = ZERO; return 0; } // Advection Jacobian function int J_advection(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; realtype c = -ONE * udata->c / (TWO * udata->dx); for (sunindextype i = 1; i < udata->nx - 1; i++) { SM_ELEMENT_B(J, UIDX(i), UIDX(i-1)) = -c; SM_ELEMENT_B(J, UIDX(i), UIDX(i+1)) = c; SM_ELEMENT_B(J, VIDX(i), VIDX(i-1)) = -c; SM_ELEMENT_B(J, VIDX(i), VIDX(i+1)) = c; SM_ELEMENT_B(J, WIDX(i), WIDX(i-1)) = -c; SM_ELEMENT_B(J, WIDX(i), WIDX(i+1)) = c; } return 0; } // Diffusion RHS function int f_diffusion(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Access data arrays realtype* ydata = N_VGetArrayPointer(y); if (check_ptr(ydata, "N_VGetArrayPointer")) return -1; realtype* fdata = N_VGetArrayPointer(f); if (check_ptr(fdata, "N_VGetArrayPointer")) return -1; // Compute diffusion RHS realtype ul, uc, ur; realtype vl, vc, vr; realtype wl, wc, wr; realtype d = udata->d / (udata->dx * udata->dx); fdata[0] = fdata[1] = fdata[2] = ZERO; for (sunindextype i = 1; i < udata->nx - 1; i++) { ul = ydata[UIDX(i-1)]; uc = ydata[UIDX(i)]; ur = ydata[UIDX(i+1)]; vl = ydata[VIDX(i-1)]; vc = ydata[VIDX(i)]; vr = ydata[VIDX(i+1)]; wl = ydata[WIDX(i-1)]; wc = ydata[WIDX(i)]; wr = ydata[WIDX(i+1)]; fdata[UIDX(i)] = d * (ul - TWO * uc + ur); fdata[VIDX(i)] = d * (vl - TWO * vc + vr); fdata[WIDX(i)] = d * (wl - TWO * wc + wr); } fdata[udata->neq - 3] = fdata[udata->neq - 2] = fdata[udata->neq - 1] = ZERO; return 0; } // Diffusion Jacobian function int J_diffusion(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; realtype d = udata->d / (udata->dx * udata->dx); for (sunindextype i = 1; i < udata->nx - 1; i++) { SM_ELEMENT_B(J, UIDX(i), UIDX(i-1)) = d; SM_ELEMENT_B(J, UIDX(i), UIDX(i)) = -d * TWO; SM_ELEMENT_B(J, UIDX(i), UIDX(i+1)) = d; SM_ELEMENT_B(J, VIDX(i), VIDX(i-1)) = d; SM_ELEMENT_B(J, VIDX(i), VIDX(i)) = -d * TWO; SM_ELEMENT_B(J, VIDX(i), VIDX(i+1)) = d; SM_ELEMENT_B(J, WIDX(i), WIDX(i-1)) = d; SM_ELEMENT_B(J, WIDX(i), WIDX(i)) = -d * TWO; SM_ELEMENT_B(J, WIDX(i), WIDX(i+1)) = d; } return 0; } // Reaction RHS function int f_reaction(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Access data arrays realtype* ydata = N_VGetArrayPointer(y); if (check_ptr(ydata, "N_VGetArrayPointer")) return -1; realtype* fdata = N_VGetArrayPointer(f); if (check_ptr(fdata, "N_VGetArrayPointer")) return -1; // Compute reaction RHS realtype u, v, w; fdata[0] = fdata[1] = fdata[2] = ZERO; for (sunindextype i = 1; i < udata->nx - 1; i++) { u = ydata[UIDX(i)]; v = ydata[VIDX(i)]; w = ydata[WIDX(i)]; fdata[UIDX(i)] = udata->A - (w + ONE) * u + v * u * u; fdata[VIDX(i)] = w * u - v * u * u; fdata[WIDX(i)] = ((udata->B - w) / udata->eps) - w * u; } fdata[udata->neq - 3] = fdata[udata->neq - 2] = fdata[udata->neq - 1] = ZERO; return 0; } // Diffusion Jacobian function int J_reaction(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; // Access data array realtype* ydata = N_VGetArrayPointer(y); if (check_ptr(ydata, "N_VGetArrayPointer")) return 1; realtype u, v, w; for (sunindextype i = 1; i < udata->nx - 1; i++) { u = ydata[UIDX(i)]; v = ydata[VIDX(i)]; w = ydata[WIDX(i)]; // all vars wrt u SM_ELEMENT_B(J, UIDX(i), UIDX(i)) = -(w + ONE) + TWO * u * v; SM_ELEMENT_B(J, VIDX(i), UIDX(i)) = w - TWO * u * v; SM_ELEMENT_B(J, WIDX(i), UIDX(i)) = -w; // all vars wrt v SM_ELEMENT_B(J, UIDX(i), VIDX(i)) = u * u; SM_ELEMENT_B(J, VIDX(i), VIDX(i)) = -u * u; // all vars wrt w SM_ELEMENT_B(J, UIDX(i), WIDX(i)) = -u; SM_ELEMENT_B(J, VIDX(i), WIDX(i)) = u; SM_ELEMENT_B(J, WIDX(i), WIDX(i)) = (-ONE / udata->eps) - u; } return 0; } // Advection-diffusion RHS function int f_adv_diff(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Compute advection int flag = f_advection(t, y, f, user_data); if (flag) return flag; // Compute diffusion flag = f_diffusion(t, y, udata->temp_v, user_data); if (flag) return flag; // Combine advection and reaction N_VLinearSum(ONE, f, ONE, udata->temp_v, f); return 0; } // Advection-diffusion Jacobian function int J_adv_diff(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; // Compute diffusion Jacobian int flag = J_advection(t, y, fy, J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Compute diffusion Jacobian flag = SUNMatZero(udata->temp_J); if (flag) return flag; flag = J_diffusion(t, y, fy, udata->temp_J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Combine Jacobians flag = SUNMatScaleAdd(ONE, J, udata->temp_J); if (flag) return -1; return 0; } // Advection-reaction RHS function int f_adv_react(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Compute advection int flag = f_advection(t, y, f, user_data); if (flag) return flag; // Compute reactions flag = f_reaction(t, y, udata->temp_v, user_data); if (flag) return flag; // Combine advection and reaction N_VLinearSum(ONE, f, ONE, udata->temp_v, f); return 0; } // Diffusion-reaction Jacobian function int J_adv_react(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; // Compute advection Jacobian int flag = J_advection(t, y, fy, J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Compute reaction Jacobian flag = SUNMatZero(udata->temp_J); if (flag) return flag; flag = J_reaction(t, y, fy, udata->temp_J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Combine Jacobians flag = SUNMatScaleAdd(ONE, J, udata->temp_J); if (flag) return -1; return 0; } // Diffusion-reaction RHS function int f_diff_react(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Compute diffusion int flag = f_diffusion(t, y, f, user_data); if (flag) return flag; // Compute reactions flag = f_reaction(t, y, udata->temp_v, user_data); if (flag) return flag; // Combine advection and reaction N_VLinearSum(ONE, f, ONE, udata->temp_v, f); return 0; } // Diffusion-reaction Jacobian function int J_diff_react(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; // Compute diffusion Jacobian int flag = J_diffusion(t, y, fy, J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Compute reaction Jacobian flag = SUNMatZero(udata->temp_J); if (flag) return flag; flag = J_reaction(t, y, fy, udata->temp_J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Combine Jacobians flag = SUNMatScaleAdd(ONE, J, udata->temp_J); if (flag) return -1; return 0; } // Advection-diffusion-reaction RHS function int f_adv_diff_react(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Compute advection int flag = f_advection(t, y, f, user_data); if (flag) return flag; // Compute diffusion flag = f_diffusion(t, y, udata->temp_v, user_data); if (flag) return flag; // Combine advection and reaction N_VLinearSum(ONE, f, ONE, udata->temp_v, f); // Compute reactions flag = f_reaction(t, y, udata->temp_v, user_data); if (flag) return flag; // Combine advection and reaction N_VLinearSum(ONE, f, ONE, udata->temp_v, f); return 0; } // Diffusion-reaction Jacobian function int J_adv_diff_react(realtype t, N_Vector y, N_Vector fy, SUNMatrix J, void* user_data, N_Vector tmp1, N_Vector tmp2, N_Vector tmp3) { // Access problem data UserData* udata = (UserData*) user_data; // Compute diffusion Jacobian int flag = J_advection(t, y, fy, J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Compute reaction Jacobian flag = SUNMatZero(udata->temp_J); if (flag) return flag; flag = J_diffusion(t, y, fy, udata->temp_J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Combine Jacobians flag = SUNMatScaleAdd(ONE, J, udata->temp_J); if (flag) return -1; // Compute reaction Jacobian flag = SUNMatZero(udata->temp_J); if (flag) return flag; flag = J_reaction(t, y, fy, udata->temp_J, user_data, tmp1, tmp2, tmp3); if (flag) return flag; // Combine Jacobians flag = SUNMatScaleAdd(ONE, J, udata->temp_J); if (flag) return -1; return 0; } // Reaction RHS function with MRI forcing int f_react_forcing(realtype t, N_Vector y, N_Vector f, void* user_data) { // Access problem data UserData* udata = (UserData*) user_data; // Compute reaction RHS int flag = f_reaction(t, y, f, user_data); if (flag) return flag; // Apply inner forcing for MRI + CVODE flag = MRIStepInnerStepper_AddForcing(udata->fast_mem, t, f); if (check_flag(flag, "MRIStepInnerStepper_AddForcing")) return -1; return 0; } // Compute the initial condition int SetIC(N_Vector y, UserData &udata) { realtype* ydata = N_VGetArrayPointer(y); if (check_ptr(ydata, "N_VGetArrayPointer")) return -1; realtype x, p; for (sunindextype i = 0; i < udata.nx; i++) { x = udata.xl + i * udata.dx; p = RCONST(0.1) * sin(PI * x); ydata[UIDX(i)] = udata.A + p; ydata[VIDX(i)] = udata.B / udata.A + p; ydata[WIDX(i)] = udata.B + p; } return 0; } //---- end of file ----
[ "agarny@hellix.com" ]
agarny@hellix.com
7f085d6155a90646fde1d47680406787925e8a64
cccfb7be281ca89f8682c144eac0d5d5559b2deb
/chrome/browser/ash/printing/printer_setup_util.h
e54655a3e0619af60e9d2b0a553c058a984c3e80
[ "BSD-3-Clause" ]
permissive
SREERAGI18/chromium
172b23d07568a4e3873983bf49b37adc92453dd0
fd8a8914ca0183f0add65ae55f04e287543c7d4a
refs/heads/master
2023-08-27T17:45:48.928019
2021-11-11T22:24:28
2021-11-11T22:24:28
428,659,250
1
0
BSD-3-Clause
2021-11-16T13:08:14
2021-11-16T13:08:14
null
UTF-8
C++
false
false
1,519
h
// Copyright 2021 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_BROWSER_ASH_PRINTING_PRINTER_SETUP_UTIL_H_ #define CHROME_BROWSER_ASH_PRINTING_PRINTER_SETUP_UTIL_H_ #include "base/callback_forward.h" #include "chrome/browser/chromeos/printing/cups_printers_manager.h" #include "chrome/browser/chromeos/printing/printer_configurer.h" #include "chromeos/printing/printer_configuration.h" #include "printing/backend/print_backend.h" #include "third_party/abseil-cpp/absl/types/optional.h" namespace ash { namespace printing { using GetPrinterCapabilitiesCallback = base::OnceCallback<void( const absl::optional<::printing::PrinterSemanticCapsAndDefaults>&)>; // Sets up a printer (if necessary) and runs a callback with the printer // capabilities once printer setup is complete. The callback is run // regardless of whether or not the printer needed to be set up. // This function must be called from the UI thread. // This function is called when setting up a printer from Print Preview // and records a metric with the printer setup result code. void SetUpPrinter(chromeos::CupsPrintersManager* printers_manager, chromeos::PrinterConfigurer* printer_configurer, const chromeos::Printer& printer, GetPrinterCapabilitiesCallback cb); } // namespace printing } // namespace ash #endif // CHROME_BROWSER_ASH_PRINTING_PRINTER_SETUP_UTIL_H_
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
3379efc25d5470de8ff8eefbc8719a13eef2a4f8
6484f4d0bd1bd429f4ce373c2b43d4de09b3cd64
/src/qt/splashscreen.cpp
faf7b5b3a44d5b9fe2232fd4a64e085b1b66cffd
[ "MIT" ]
permissive
seduscoin/seduscoin
2c4b138374b7066dc85e0ea371111b9fb98672d7
a584075870d4adca3c7b545e1a4a9b88bdaade9f
refs/heads/master
2020-03-30T23:38:07.018445
2018-10-05T13:53:43
2018-10-05T13:53:43
148,973,399
0
0
null
null
null
null
UTF-8
C++
false
false
6,198
cpp
// Copyright (c) 2011-2015 The Bitcoin Core developers // Copyright (c) 2014-2017 The Sedus Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "splashscreen.h" #include "guiutil.h" #include "networkstyle.h" #include "clientversion.h" #include "init.h" #include "util.h" #include "ui_interface.h" #include "version.h" #ifdef ENABLE_WALLET #include "wallet/wallet.h" #endif #include <QApplication> #include <QCloseEvent> #include <QDesktopWidget> #include <QPainter> SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle *networkStyle) : QWidget(0, f), curAlignment(0) { // transparent background setAttribute(Qt::WA_TranslucentBackground); setStyleSheet("background:transparent;"); // no window decorations setWindowFlags(Qt::FramelessWindowHint); // set reference point, paddings int paddingLeft = 14; int paddingTop = 470; int titleVersionVSpace = 17; int titleCopyrightVSpace = 32; float fontFactor = 1.0; // define text to place QString titleText = tr("Sedus Core"); QString versionText = QString(tr("Version %1")).arg(QString::fromStdString(FormatFullVersion())); QString copyrightTextBtc = QChar(0xA9)+QString(" 2009-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Bitcoin Core developers")); QString copyrightTextSedus = QChar(0xA9)+QString(" 2014-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Sedus Core developers")); QString titleAddText = networkStyle->getTitleAddText(); // networkstyle.cpp can't (yet) read themes, so we do it here to get the correct Splash-screen QString splashScreenPath = ":/images/" + GUIUtil::getThemeName() + "/splash"; if(GetBoolArg("-regtest", false)) splashScreenPath = ":/images/" + GUIUtil::getThemeName() + "/splash_testnet"; if(GetBoolArg("-testnet", false)) splashScreenPath = ":/images/" + GUIUtil::getThemeName() + "/splash_testnet"; QString font = QApplication::font().toString(); // load the bitmap for writing some text over it pixmap = QPixmap(splashScreenPath); QPainter pixPaint(&pixmap); pixPaint.setPen(QColor(100,100,100)); // check font size and drawing with pixPaint.setFont(QFont(font, 28*fontFactor)); QFontMetrics fm = pixPaint.fontMetrics(); int titleTextWidth = fm.width(titleText); if(titleTextWidth > 160) { // strange font rendering, Arial probably not found fontFactor = 0.75; } pixPaint.setFont(QFont(font, 28*fontFactor)); fm = pixPaint.fontMetrics(); titleTextWidth = fm.width(titleText); pixPaint.drawText(paddingLeft,paddingTop,titleText); pixPaint.setFont(QFont(font, 15*fontFactor)); pixPaint.drawText(paddingLeft,paddingTop+titleVersionVSpace,versionText); // draw copyright stuff pixPaint.setFont(QFont(font, 10*fontFactor)); pixPaint.drawText(paddingLeft,paddingTop+titleCopyrightVSpace,copyrightTextBtc); pixPaint.drawText(paddingLeft,paddingTop+titleCopyrightVSpace+12,copyrightTextSedus); // draw additional text if special network if(!titleAddText.isEmpty()) { QFont boldFont = QFont(font, 10*fontFactor); boldFont.setWeight(QFont::Bold); pixPaint.setFont(boldFont); fm = pixPaint.fontMetrics(); int titleAddTextWidth = fm.width(titleAddText); pixPaint.drawText(pixmap.width()-titleAddTextWidth-10,pixmap.height()-25,titleAddText); } pixPaint.end(); // Resize window and move to center of desktop, disallow resizing QRect r(QPoint(), pixmap.size()); resize(r.size()); setFixedSize(r.size()); move(QApplication::desktop()->screenGeometry().center() - r.center()); subscribeToCoreSignals(); } SplashScreen::~SplashScreen() { unsubscribeFromCoreSignals(); } void SplashScreen::slotFinish(QWidget *mainWin) { Q_UNUSED(mainWin); /* If the window is minimized, hide() will be ignored. */ /* Make sure we de-minimize the splashscreen window before hiding */ if (isMinimized()) showNormal(); hide(); deleteLater(); // No more need for this } static void InitMessage(SplashScreen *splash, const std::string &message) { QMetaObject::invokeMethod(splash, "showMessage", Qt::QueuedConnection, Q_ARG(QString, QString::fromStdString(message)), Q_ARG(int, Qt::AlignBottom|Qt::AlignHCenter), Q_ARG(QColor, QColor(55,55,55))); } static void ShowProgress(SplashScreen *splash, const std::string &title, int nProgress) { InitMessage(splash, title + strprintf("%d", nProgress) + "%"); } #ifdef ENABLE_WALLET static void ConnectWallet(SplashScreen *splash, CWallet* wallet) { wallet->ShowProgress.connect(boost::bind(ShowProgress, splash, _1, _2)); } #endif void SplashScreen::subscribeToCoreSignals() { // Connect signals to client uiInterface.InitMessage.connect(boost::bind(InitMessage, this, _1)); uiInterface.ShowProgress.connect(boost::bind(ShowProgress, this, _1, _2)); #ifdef ENABLE_WALLET uiInterface.LoadWallet.connect(boost::bind(ConnectWallet, this, _1)); #endif } void SplashScreen::unsubscribeFromCoreSignals() { // Disconnect signals from client uiInterface.InitMessage.disconnect(boost::bind(InitMessage, this, _1)); uiInterface.ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2)); #ifdef ENABLE_WALLET if(pwalletMain) pwalletMain->ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2)); #endif } void SplashScreen::showMessage(const QString &message, int alignment, const QColor &color) { curMessage = message; curAlignment = alignment; curColor = color; update(); } void SplashScreen::paintEvent(QPaintEvent *event) { QPainter painter(this); painter.drawPixmap(0, 0, pixmap); QRect r = rect().adjusted(5, 5, -5, -5); painter.setPen(curColor); painter.drawText(r, curAlignment, curMessage); } void SplashScreen::closeEvent(QCloseEvent *event) { StartShutdown(); // allows an "emergency" shutdown during startup event->ignore(); }
[ "43329933+seduscoin@users.noreply.github.com" ]
43329933+seduscoin@users.noreply.github.com
658d2bb12374a8a7ede3a243864f0e669ae7e653
2e16c613e15e2c93b4ed7cce5aacd00c09647f50
/scenes/animation/02_simulation/cloth.hpp
ca162248da450d5229a11583f7096e74695c37f9
[ "MIT" ]
permissive
pypaut/epita_image_animation3d_vcl
d34c91577271b2f8a9fae6cfcc4e9e6b956a955b
e7eb68fed4f6a4615810a80c842f6b10467d339c
refs/heads/main
2023-01-01T01:17:37.377660
2020-10-21T17:13:29
2020-10-21T17:13:29
305,510,721
0
0
MIT
2020-10-19T20:54:24
2020-10-19T20:54:24
null
UTF-8
C++
false
false
2,796
hpp
#pragma once #include "main/scene_base/base.hpp" #ifdef SCENE_CLOTH struct user_parameters_structure { float m; // Global mass (to be divided by the number of particles) float K; // Global stiffness (to be divided by the number of particles) float mu; // Damping float wind; // Wind magnitude; }; struct simulation_parameters_structure { float m; // mass float L0; // spring rest length }; // Sphere and ground used for collision struct collision_shapes_structure { vcl::vec3 sphere_p; // position of the colliding sphere float sphere_r; // radius of the colliding sphere float ground_height; // height of the ground (in y-coordinate) }; struct scene_model : scene_base { // Particles parameters vcl::buffer2D<vcl::vec3> position; vcl::buffer2D<vcl::vec3> speed; vcl::buffer2D<vcl::vec3> force; // Simulation parameters simulation_parameters_structure simulation_parameters; // parameters that user can control directly user_parameters_structure user_parameters; // parameters adjusted with respect to mesh size (not controled directly by the user) // Cloth mesh elements vcl::mesh_drawable cloth; // Visual model for the cloth vcl::buffer<vcl::vec3> normals; // Normal of the cloth used for rendering and wind force computation vcl::buffer<vcl::uint3> connectivity; // Connectivity of the triangular model // Parameters of the shape used for collision collision_shapes_structure collision_shapes; // Store index and position of vertices constrained to have a fixed 3D position std::map<int,vcl::vec3> positional_constraints; // Textures GLuint texture_cloth; GLuint texture_wood; // Visual elements of the scene vcl::mesh_drawable sphere; vcl::mesh_drawable ground; // Gui parameters bool gui_display_wireframe; bool gui_display_texture; // Parameters used to control if the simulation runs when a numerical divergence is detected bool simulation_diverged; // Active when divergence is detected bool force_simulation; // Force to run simulation even if divergence is detected GLuint shader_mesh; vcl::timer_event timer; void initialize(); void collision_constraints(); void compute_forces(); void numerical_integration(float h); void detect_simulation_divergence(); void hard_constraints(); void set_gui(); void setup_data(std::map<std::string,GLuint>& shaders, scene_structure& scene, gui_structure& gui); void frame_draw(std::map<std::string,GLuint>& shaders, scene_structure& scene, gui_structure& gui); void display_elements(std::map<std::string,GLuint>& shaders, scene_structure& scene, gui_structure& gui); }; #endif
[ "damien.rohmer@gmail.com" ]
damien.rohmer@gmail.com
e809f5be556237c6ff93153b59d5307e0df31742
6d20d1c3ab187c56ded3d3b5f38b53369758a5d5
/Server.h
5e1ef26016ac94be3ba1f86bb98bea72c84a6081
[]
no_license
matiutd888/screen-worms
021cd064e0d0ffa106b5ea61e5b020cf24e119fb
1039813dd197c7b77af2b08b6cb0d4ae0ff13342
refs/heads/master
2023-08-15T02:33:01.331007
2021-09-25T16:04:40
2021-09-25T16:04:40
368,588,813
0
0
null
null
null
null
UTF-8
C++
false
false
5,653
h
// // // Created by mateusz on 23.05.2021. #ifndef ZADANIE_2_SERVER_H #define ZADANIE_2_SERVER_H #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> #include <cstring> #include <unistd.h> #include <map> #include <set> #include "err.h" #include "PollUtils.h" #include "Game.h" #include "Packet.h" #include <iostream> #include "Connection.h" #include "DataBuilders.h" class MsgQueue { static constexpr int CLIENTS_SIZE = 25; static constexpr int NO_EVENT = -1; Client clients[CLIENTS_SIZE]; int64_t expectedEventNo[CLIENTS_SIZE]; size_t nextClientIndex; uint32_t eventsCount; static void advanceModulo(size_t &i) { i++; i %= CLIENTS_SIZE; } public: class NoClientWithMessagesException : std::exception { const char * what() const noexcept override { return "No Client with messages Exeption!"; } }; class InvalidEventNoException : std::exception { const char * what() const noexcept override { return "Invalid event No!"; } }; MsgQueue() { eventsCount = 0; nextClientIndex = 0; for (int i = 0; i < CLIENTS_SIZE; ++i) { expectedEventNo[i] = NO_EVENT; } } bool addClient(Client client, uint32_t nextExpectedEventNo); bool hasMessages() const; size_t getNextExpectedClientIndexAndAdvance(); uint32_t getExpectedEventNo(size_t index) const { return expectedEventNo[index]; } const Client &getClientByIndex(size_t index); void setEventsCount(uint32_t events) { eventsCount = events; } void setExpectedEventsToZero(); void updateClient(const Client &client, uint32_t nextExpectedEventNo); void deleteClientFromQueue(const Client &client); void setExpectedEventNo(size_t index, uint32_t value); }; class ClientManager { using clientValue_t = std::pair<Player, int>; std::map<Client, clientValue_t> clients; Game game; int countReadyPlayers; int countNotObservers; Random random; std::vector<Record> gameRecords; MsgQueue queue; static constexpr int PLAYER_INDEX = 0; static constexpr int TICKS_INDEX = 1; inline static const std::string TAG = "Client Manager: "; public: ClientManager(uint32_t width, uint32_t height, int turningSpeed, uint32_t seed) : game(width, height, turningSpeed), countReadyPlayers(0), countNotObservers(0), random(seed) {}; // Gets package containing events that next client in queue expects. std::pair<WritePacket, Client> handleNextInQueue(); void addTicksAndCleanInactive() { for (auto it = clients.begin(), next_it = it; it != clients.end(); it = next_it) { ++next_it; auto &valIt = it->second; std::get<TICKS_INDEX>(valIt)++; if (std::get<TICKS_INDEX>(valIt) >= Utils::NUMBER_OF_TICKS) { debug_out_1 << "TICKS: Erasing client " << it->first << std::endl; removeClient(it); debug_out_1 << "TICKS: Clients size after = " << clients.size() << std::endl; } } } Game &getGame() { return game; } bool canGameStart() const { debug_out_1 << "cout not observers " << countNotObservers << " count ready players" << countReadyPlayers << std::endl; return !game.isGameNow() && countReadyPlayers == countNotObservers && countNotObservers >= 2; } bool isNameUnique(const std::string &name, const Client &c) { for (const auto &it : clients) { if (it.second.first.getName() == name && !(it.first == c)) return false; } return true; } void addClient(const Client &client, const ClientMessage &newMsg); void removeClient(const std::map<Client, clientValue_t>::iterator &iterator); void updateClientPlayersInfo(const Client &client, clientValue_t &val, const ClientMessage &message); void handleClient(Client &newClient, const ClientMessage &newMsg); bool clientExists(const Client &client) const { return clients.find(client) != clients.end(); } bool hasMessages() const { return queue.hasMessages(); } auto startGame(); void endGame(); void performRound(); MsgQueue& getQueue() { return queue; } }; class Server { inline static const std::string TAG = "Server: "; ServerData serverData; ClientManager manager; UDPServerSocket serverSocket; PollServer pollServer; static void readTimeout(int fd); void readFromClients(struct sockaddr_storage &clientAddr, ReadPacket &packet); void sendPacketToClient(const Client &client, const WritePacket &writePacket) const; public: explicit Server(const ServerData &serverData) : serverData(serverData), manager(serverData.getWidth(), serverData.getHeight(), serverData.getTuriningSpeed(), serverData.getSeed()), serverSocket(serverData.getPortNum()), pollServer(serverSocket.getSocket(), serverData.getRoundsPerSec()) {} [[noreturn]] void start(); }; #endif //ZADANIE_2_SERVER_H
[ "matiutd888@gmail.com" ]
matiutd888@gmail.com
80315882fc9781d67d3ace170792b33aab1cccec
6fd96176aba290543f67274d47dfa807a1d3945d
/hangover.cpp
404ed1e6d0eb7cc2f3236a0cac29a11766d2ed09
[]
no_license
phs1116/dovlet_algorithm
6a69d8d032f662a18e679292a8b800ce7421ed23
7f043c9bf6cc9a3d874d43c2816f5a92a61ccaba
refs/heads/master
2021-01-10T06:17:46.362776
2016-03-03T12:16:11
2016-03-03T12:16:11
53,047,872
0
0
null
null
null
null
UTF-8
C++
false
false
167
cpp
#include <iostream> using namespace std; double c,k=1,sum=0; int main(){ cin>>c; while(true){ sum+=1/((k++)+1); if(sum>c) break; } cout<<k-1<<" card(s)"; }
[ "phs1116@gmail.com" ]
phs1116@gmail.com
5d8993ba9a598a93071a596c30d031e77a5448d6
b7e2b49b89ad9b842119410404b461f70b0716e5
/src/PPgStats.h
184bf52614f01f8c7f64cb707b4d557d85ba941f
[]
no_license
charleson/emule_verycd
31f3c71e0478b036f957edacd10f0f398c886165
489f841518e9313e9b387ad87298d32141c212f8
refs/heads/master
2020-04-06T04:18:04.657439
2012-09-16T15:11:58
2012-09-16T15:11:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,200
h
#pragma once #include "ColorButton.h" class CPPgStats : public CPropertyPage { DECLARE_DYNAMIC(CPPgStats) public: CPPgStats(); virtual ~CPPgStats(); // Dialog Data enum { IDD = IDD_PPG_STATS }; void Localize(void); protected: int m_iStatsColors; DWORD* m_pdwStatsColors; CComboBox m_colors; CComboBox m_cratio; CColorButton m_ctlColor; CSliderCtrl m_ctlGraphsUpdate; CSliderCtrl m_ctlGraphsAvgTime; CSliderCtrl m_ctlStatsUpdate; int m_iGraphsUpdate; int m_iGraphsAvgTime; int m_iStatsUpdate; BOOL m_bModified; void ShowInterval(); void SetModified(BOOL bChanged = TRUE); virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support virtual BOOL OnInitDialog(); virtual BOOL OnApply(); virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam); DECLARE_MESSAGE_MAP() afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar); afx_msg void OnCbnSelchangeColorselector(); afx_msg LONG OnColorPopupSelChange(UINT lParam, LONG wParam); afx_msg void OnEnChangeCGraphScale() { SetModified(); } afx_msg void OnCbnSelchangeCRatio() { SetModified(); } afx_msg void OnHelp(); afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo); afx_msg void OnDestroy(); };
[ "codingforfan@gmail.com" ]
codingforfan@gmail.com
666ef08cccd76e68fe441bd9f85e1f06ff4ad67b
58febce6be896835382f03b21162f0090b3fcb0a
/leetcode/weekly/284.cpp
c0653f590a2784ebefa62880d32a94b92435cde8
[ "Apache-2.0" ]
permissive
bvbasavaraju/competitive_programming
5e63c0710b02476ecb499b2087ddec674fdb049f
bc17ec49b601aac62fa94449927fd64b620352d7
refs/heads/master
2022-10-31T15:17:00.151024
2022-10-23T09:14:52
2022-10-23T09:14:52
216,365,719
1
0
null
null
null
null
UTF-8
C++
false
false
2,976
cpp
/**************************************************** Date: Mar 13th, 2022 Successful submissions : 2 Time expiration : 0 Memory exhausted : 1 Not Solved : 1 Wrong Answer/ Partial result : 0 link: https://leetcode.com/contest/weekly-contest-284 ****************************************************/ #include <iostream> #include <vector> #include <list> #include <algorithm> #include <string> #include <stack> #include <queue> #include <map> #include <set> #include <unordered_map> #include <unordered_set> #include <cmath> #include <limits.h> using namespace std; /* Q: 2200. Find All K-Distant Indices in an Array */ class Solution1_t { public: vector<int> findKDistantIndices(vector<int>& nums, int key, int k) { int l = nums.size(); vector<int> key_idxs; for(int i = 0; i < l; ++i) { if(nums[i] == key) { key_idxs.push_back(i); } } vector<bool> idxs(l, false); for(int idx : key_idxs) { for(int i = 0; i < l; ++i) { if(abs(i-idx) <= k) { idxs[i] = true; } } } vector<int> ans; for(int i = 0; i < l; ++i) { if(idxs[i] == true) { ans.push_back(i); } } return ans; } }; /* Q: 2201. Count Artifacts That Can Be Extracted - memory exhausted at first due to silly mistake of grid size!!. then resolved it!! */ class Solution2_t { public: int digArtifacts(int n, vector<vector<int>>& artifacts, vector<vector<int>>& dig) { vector< vector<int> > grid(n, vector<int>(n, 0)); // here instead of taking as n, I took min(n*n, 100000) for(vector<int>& d : dig) { grid[d[0]][d[1]] = 1; } int ans = 0; for(vector<int> a : artifacts) { bool canExtract = true; for(int i = a[0]; i <= a[2] && canExtract; ++i) { for(int j = a[1]; j <= a[3]; ++j) { if(grid[i][j] == 0) { canExtract = false; break; } } } if(canExtract) { ans++; } } return ans; } }; /* Q: 2202. Maximize the Topmost Element After K Moves */ class Solution3_t { public: int maximumTop(vector<int>& nums, int k) { int l = nums.size(); if((l <= 1) && (k%2 != 0)) { return -1; } if(k == 0) { return nums[0]; } priority_queue<int> pq; int range_ = min(l, k-1); for(int i = 0; i < range_; ++i) { pq.push(nums[i]); } int ans = pq.empty() ? -1 : pq.top(); if((ans > 0) && (k < l)) { ans = max(ans, nums[k]); } if((l > 1) && (k <= 1)) { ans = max(ans, nums[k]); } return ans; } }; /* Q: 2203. Minimum Weighted Subgraph With the Required Paths */ class Solution4_t { public: long long minimumWeight(int n, vector<vector<int>>& edges, int src1, int src2, int dest) { } };
[ "bv.basavaraju@gmail.com" ]
bv.basavaraju@gmail.com
b571a3d45d7c4995e667bb3034afa285c87bce53
3cf9e141cc8fee9d490224741297d3eca3f5feff
/C++ Benchmark Programs/Benchmark Files 1/classtester/autogen-sources/source-15629.cpp
521c01bfaaebf779f7e34915df9ae5ab3133ce1c
[]
no_license
TeamVault/tauCFI
e0ac60b8106fc1bb9874adc515fc01672b775123
e677d8cc7acd0b1dd0ac0212ff8362fcd4178c10
refs/heads/master
2023-05-30T20:57:13.450360
2021-06-14T09:10:24
2021-06-14T09:10:24
154,563,655
0
1
null
null
null
null
UTF-8
C++
false
false
3,008
cpp
struct c0; void __attribute__ ((noinline)) tester0(c0* p); struct c0 { bool active0; c0() : active0(true) {} virtual ~c0() { tester0(this); active0 = false; } virtual void f0(){} }; void __attribute__ ((noinline)) tester0(c0* p) { p->f0(); } struct c1; void __attribute__ ((noinline)) tester1(c1* p); struct c1 : virtual c0 { bool active1; c1() : active1(true) {} virtual ~c1() { tester1(this); c0 *p0_0 = (c0*)(c1*)(this); tester0(p0_0); active1 = false; } virtual void f1(){} }; void __attribute__ ((noinline)) tester1(c1* p) { p->f1(); if (p->active0) p->f0(); } struct c2; void __attribute__ ((noinline)) tester2(c2* p); struct c2 : virtual c0 { bool active2; c2() : active2(true) {} virtual ~c2() { tester2(this); c0 *p0_0 = (c0*)(c2*)(this); tester0(p0_0); active2 = false; } virtual void f2(){} }; void __attribute__ ((noinline)) tester2(c2* p) { p->f2(); if (p->active0) p->f0(); } struct c3; void __attribute__ ((noinline)) tester3(c3* p); struct c3 : virtual c1, virtual c2 { bool active3; c3() : active3(true) {} virtual ~c3() { tester3(this); c0 *p0_0 = (c0*)(c1*)(c3*)(this); tester0(p0_0); c0 *p0_1 = (c0*)(c2*)(c3*)(this); tester0(p0_1); c1 *p1_0 = (c1*)(c3*)(this); tester1(p1_0); c2 *p2_0 = (c2*)(c3*)(this); tester2(p2_0); active3 = false; } virtual void f3(){} }; void __attribute__ ((noinline)) tester3(c3* p) { p->f3(); if (p->active0) p->f0(); if (p->active1) p->f1(); if (p->active2) p->f2(); } struct c4; void __attribute__ ((noinline)) tester4(c4* p); struct c4 : virtual c1, virtual c0, c2 { bool active4; c4() : active4(true) {} virtual ~c4() { tester4(this); c0 *p0_0 = (c0*)(c1*)(c4*)(this); tester0(p0_0); c0 *p0_1 = (c0*)(c4*)(this); tester0(p0_1); c0 *p0_2 = (c0*)(c2*)(c4*)(this); tester0(p0_2); c1 *p1_0 = (c1*)(c4*)(this); tester1(p1_0); c2 *p2_0 = (c2*)(c4*)(this); tester2(p2_0); active4 = false; } virtual void f4(){} }; void __attribute__ ((noinline)) tester4(c4* p) { p->f4(); if (p->active2) p->f2(); if (p->active0) p->f0(); if (p->active1) p->f1(); } int __attribute__ ((noinline)) inc(int v) {return ++v;} int main() { c0* ptrs0[25]; ptrs0[0] = (c0*)(new c0()); ptrs0[1] = (c0*)(c1*)(new c1()); ptrs0[2] = (c0*)(c2*)(new c2()); ptrs0[3] = (c0*)(c1*)(c3*)(new c3()); ptrs0[4] = (c0*)(c2*)(c3*)(new c3()); ptrs0[5] = (c0*)(c1*)(c4*)(new c4()); ptrs0[6] = (c0*)(c4*)(new c4()); ptrs0[7] = (c0*)(c2*)(c4*)(new c4()); for (int i=0;i<8;i=inc(i)) { tester0(ptrs0[i]); delete ptrs0[i]; } c1* ptrs1[25]; ptrs1[0] = (c1*)(new c1()); ptrs1[1] = (c1*)(c3*)(new c3()); ptrs1[2] = (c1*)(c4*)(new c4()); for (int i=0;i<3;i=inc(i)) { tester1(ptrs1[i]); delete ptrs1[i]; } c2* ptrs2[25]; ptrs2[0] = (c2*)(new c2()); ptrs2[1] = (c2*)(c3*)(new c3()); ptrs2[2] = (c2*)(c4*)(new c4()); for (int i=0;i<3;i=inc(i)) { tester2(ptrs2[i]); delete ptrs2[i]; } c3* ptrs3[25]; ptrs3[0] = (c3*)(new c3()); for (int i=0;i<1;i=inc(i)) { tester3(ptrs3[i]); delete ptrs3[i]; } c4* ptrs4[25]; ptrs4[0] = (c4*)(new c4()); for (int i=0;i<1;i=inc(i)) { tester4(ptrs4[i]); delete ptrs4[i]; } return 0; }
[ "ga72foq@mytum.de" ]
ga72foq@mytum.de
05c7631c4e7c644d248b46561a03974c35b4f938
ecc353a05d407197c7d5e9aff17aad4721dc077b
/src/walletdb.cpp
5039482fa034bdf4f748a2b75cc4d88d84c5f0d2
[ "MIT" ]
permissive
SaltineChips/endox
7fe4db1c9b85a879b3880e8d60a82f66cd7690ea
d3f657927f0225788e01d004c8eb5d987f74c5b7
refs/heads/master
2021-06-16T15:42:39.647798
2021-01-30T23:06:55
2021-01-30T23:06:55
147,242,758
1
2
MIT
2019-07-21T02:43:51
2018-09-03T18:59:13
C++
UTF-8
C++
false
false
29,643
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 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 "walletdb.h" #include "base58.h" #include "protocol.h" #include "serialize.h" #include "sync.h" #include "wallet.h" #include <boost/filesystem.hpp> #include <boost/foreach.hpp> using namespace std; using namespace boost; static uint64_t nAccountingEntryNumber = 0; extern bool fWalletUnlockStakingOnly; // // CWalletDB // bool CWalletDB::WriteName(const string& strAddress, const string& strName) { nWalletDBUpdated++; return Write(make_pair(string("name"), strAddress), strName); } bool CWalletDB::EraseName(const string& strAddress) { // This should only be used for sending addresses, never for receiving addresses, // receiving addresses must always have an address book entry if they're not change return. nWalletDBUpdated++; return Erase(make_pair(string("name"), strAddress)); } bool CWalletDB::WriteTx(uint256 hash, const CWalletTx& wtx) { nWalletDBUpdated++; return Write(std::make_pair(std::string("tx"), hash), wtx); } bool CWalletDB::EraseTx(uint256 hash) { nWalletDBUpdated++; return Erase(std::make_pair(std::string("tx"), hash)); } bool CWalletDB::WriteStealthKeyMeta(const CKeyID& keyId, const CStealthKeyMetadata& sxKeyMeta) { nWalletDBUpdated++; return Write(std::make_pair(std::string("sxKeyMeta"), keyId), sxKeyMeta, true); } bool CWalletDB::EraseStealthKeyMeta(const CKeyID& keyId) { nWalletDBUpdated++; return Erase(std::make_pair(std::string("sxKeyMeta"), keyId)); } bool CWalletDB::WriteStealthAddress(const CStealthAddress& sxAddr) { nWalletDBUpdated++; return Write(std::make_pair(std::string("sxAddr"), sxAddr.scan_pubkey), sxAddr, true); } bool CWalletDB::ReadStealthAddress(CStealthAddress& sxAddr) { // -- set scan_pubkey before reading return Read(std::make_pair(std::string("sxAddr"), sxAddr.scan_pubkey), sxAddr); } bool CWalletDB::WriteKey(const CPubKey& vchPubKey, const CPrivKey& vchPrivKey, const CKeyMetadata& keyMeta) { nWalletDBUpdated++; if (!Write(std::make_pair(std::string("keymeta"), vchPubKey), keyMeta, false)) return false; // hash pubkey/privkey to accelerate wallet load std::vector<unsigned char> vchKey; vchKey.reserve(vchPubKey.size() + vchPrivKey.size()); vchKey.insert(vchKey.end(), vchPubKey.begin(), vchPubKey.end()); vchKey.insert(vchKey.end(), vchPrivKey.begin(), vchPrivKey.end()); return Write(std::make_pair(std::string("key"), vchPubKey), std::make_pair(vchPrivKey, Hash(vchKey.begin(), vchKey.end())), false); } bool CWalletDB::WriteCryptedKey(const CPubKey& vchPubKey, const std::vector<unsigned char>& vchCryptedSecret, const CKeyMetadata &keyMeta) { const bool fEraseUnencryptedKey = true; nWalletDBUpdated++; if (!Write(std::make_pair(std::string("keymeta"), vchPubKey), keyMeta)) return false; if (!Write(std::make_pair(std::string("ckey"), vchPubKey), vchCryptedSecret, false)) return false; if (fEraseUnencryptedKey) { Erase(std::make_pair(std::string("key"), vchPubKey)); Erase(std::make_pair(std::string("wkey"), vchPubKey)); } return true; } bool CWalletDB::WriteMasterKey(unsigned int nID, const CMasterKey& kMasterKey) { nWalletDBUpdated++; return Write(std::make_pair(std::string("mkey"), nID), kMasterKey, true); } bool CWalletDB::WriteCScript(const uint160& hash, const CScript& redeemScript) { nWalletDBUpdated++; return Write(std::make_pair(std::string("cscript"), hash), redeemScript, false); } bool CWalletDB::WriteWatchOnly(const CScript &dest) { nWalletDBUpdated++; return Write(std::make_pair(std::string("watchs"), dest), '1'); } bool CWalletDB::EraseWatchOnly(const CScript &dest) { nWalletDBUpdated++; return Erase(std::make_pair(std::string("watchs"), dest)); } bool CWalletDB::WriteBestBlock(const CBlockLocator& locator) { nWalletDBUpdated++; return Write(std::string("bestblock"), locator); } bool CWalletDB::ReadBestBlock(CBlockLocator& locator) { return Read(std::string("bestblock"), locator); } bool CWalletDB::WriteOrderPosNext(int64_t nOrderPosNext) { nWalletDBUpdated++; return Write(std::string("orderposnext"), nOrderPosNext); } bool CWalletDB::WriteDefaultKey(const CPubKey& vchPubKey) { nWalletDBUpdated++; return Write(std::string("defaultkey"), vchPubKey); } bool CWalletDB::ReadPool(int64_t nPool, CKeyPool& keypool) { return Read(std::make_pair(std::string("pool"), nPool), keypool); } bool CWalletDB::WritePool(int64_t nPool, const CKeyPool& keypool) { nWalletDBUpdated++; return Write(std::make_pair(std::string("pool"), nPool), keypool); } bool CWalletDB::ErasePool(int64_t nPool) { nWalletDBUpdated++; return Erase(std::make_pair(std::string("pool"), nPool)); } bool CWalletDB::WriteMinVersion(int nVersion) { return Write(std::string("minversion"), nVersion); } bool CWalletDB::ReadAccount(const string& strAccount, CAccount& account) { account.SetNull(); return Read(make_pair(string("acc"), strAccount), account); } bool CWalletDB::WriteAccount(const string& strAccount, const CAccount& account) { return Write(make_pair(string("acc"), strAccount), account); } bool CWalletDB::WriteAccountingEntry(const uint64_t nAccEntryNum, const CAccountingEntry& acentry) { return Write(boost::make_tuple(string("acentry"), acentry.strAccount, nAccEntryNum), acentry); } bool CWalletDB::WriteAccountingEntry_Backend(const CAccountingEntry& acentry) { return WriteAccountingEntry(++nAccountingEntryNumber, acentry); } int64_t CWalletDB::GetAccountCreditDebit(const string& strAccount) { list<CAccountingEntry> entries; ListAccountCreditDebit(strAccount, entries); int64_t nCreditDebit = 0; BOOST_FOREACH (const CAccountingEntry& entry, entries) nCreditDebit += entry.nCreditDebit; return nCreditDebit; } void CWalletDB::ListAccountCreditDebit(const string& strAccount, list<CAccountingEntry>& entries) { bool fAllAccounts = (strAccount == "*"); Dbc* pcursor = GetCursor(); if (!pcursor) throw runtime_error("CWalletDB::ListAccountCreditDebit() : cannot create DB cursor"); unsigned int fFlags = DB_SET_RANGE; while (true) { // Read next record CDataStream ssKey(SER_DISK, CLIENT_VERSION); if (fFlags == DB_SET_RANGE) ssKey << boost::make_tuple(string("acentry"), (fAllAccounts? string("") : strAccount), uint64_t(0)); CDataStream ssValue(SER_DISK, CLIENT_VERSION); int ret = ReadAtCursor(pcursor, ssKey, ssValue, fFlags); fFlags = DB_NEXT; if (ret == DB_NOTFOUND) break; else if (ret != 0) { pcursor->close(); throw runtime_error("CWalletDB::ListAccountCreditDebit() : error scanning DB"); } // Unserialize string strType; ssKey >> strType; if (strType != "acentry") break; CAccountingEntry acentry; ssKey >> acentry.strAccount; if (!fAllAccounts && acentry.strAccount != strAccount) break; ssValue >> acentry; ssKey >> acentry.nEntryNo; entries.push_back(acentry); } pcursor->close(); } DBErrors CWalletDB::ReorderTransactions(CWallet* pwallet) { LOCK(pwallet->cs_wallet); // Old wallets didn't have any defined order for transactions // Probably a bad idea to change the output of this // First: get all CWalletTx and CAccountingEntry into a sorted-by-time multimap. typedef pair<CWalletTx*, CAccountingEntry*> TxPair; typedef multimap<int64_t, TxPair > TxItems; TxItems txByTime; for (map<uint256, CWalletTx>::iterator it = pwallet->mapWallet.begin(); it != pwallet->mapWallet.end(); ++it) { CWalletTx* wtx = &((*it).second); txByTime.insert(make_pair(wtx->nTimeReceived, TxPair(wtx, (CAccountingEntry*)0))); } list<CAccountingEntry> acentries; ListAccountCreditDebit("", acentries); BOOST_FOREACH(CAccountingEntry& entry, acentries) { txByTime.insert(make_pair(entry.nTime, TxPair((CWalletTx*)0, &entry))); } int64_t& nOrderPosNext = pwallet->nOrderPosNext; nOrderPosNext = 0; std::vector<int64_t> nOrderPosOffsets; for (TxItems::iterator it = txByTime.begin(); it != txByTime.end(); ++it) { CWalletTx *const pwtx = (*it).second.first; CAccountingEntry *const pacentry = (*it).second.second; int64_t& nOrderPos = (pwtx != 0) ? pwtx->nOrderPos : pacentry->nOrderPos; if (nOrderPos == -1) { nOrderPos = nOrderPosNext++; nOrderPosOffsets.push_back(nOrderPos); if (pwtx) { if (!WriteTx(pwtx->GetHash(), *pwtx)) return DB_LOAD_FAIL; } else if (!WriteAccountingEntry(pacentry->nEntryNo, *pacentry)) return DB_LOAD_FAIL; } else { int64_t nOrderPosOff = 0; BOOST_FOREACH(const int64_t& nOffsetStart, nOrderPosOffsets) { if (nOrderPos >= nOffsetStart) ++nOrderPosOff; } nOrderPos += nOrderPosOff; nOrderPosNext = std::max(nOrderPosNext, nOrderPos + 1); if (!nOrderPosOff) continue; // Since we're changing the order, write it back if (pwtx) { if (!WriteTx(pwtx->GetHash(), *pwtx)) return DB_LOAD_FAIL; } else if (!WriteAccountingEntry(pacentry->nEntryNo, *pacentry)) return DB_LOAD_FAIL; } } WriteOrderPosNext(nOrderPosNext); return DB_LOAD_OK; } class CWalletScanState { public: unsigned int nKeys; unsigned int nCKeys; unsigned int nKeyMeta; bool fIsEncrypted; bool fAnyUnordered; int nFileVersion; vector<uint256> vWalletUpgrade; CWalletScanState() { nKeys = nCKeys = nKeyMeta = 0; fIsEncrypted = false; fAnyUnordered = false; nFileVersion = 0; } }; bool ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue, CWalletScanState &wss, string& strType, string& strErr) { try { // Unserialize // Taking advantage of the fact that pair serialization // is just the two items serialized one after the other ssKey >> strType; if (strType == "name") { string strAddress; ssKey >> strAddress; ssValue >> pwallet->mapAddressBook[CEndoxCoinAddress(strAddress).Get()]; } else if (strType == "tx") { uint256 hash; ssKey >> hash; CWalletTx& wtx = pwallet->mapWallet[hash]; ssValue >> wtx; if (!(wtx.CheckTransaction() && (wtx.GetHash() == hash))) return false; // Undo serialize changes in 31600 if (31404 <= wtx.fTimeReceivedIsTxTime && wtx.fTimeReceivedIsTxTime <= 31703) { if (!ssValue.empty()) { char fTmp; char fUnused; ssValue >> fTmp >> fUnused >> wtx.strFromAccount; strErr = strprintf("LoadWallet() upgrading tx ver=%d %d '%s' %s", wtx.fTimeReceivedIsTxTime, fTmp, wtx.strFromAccount, hash.ToString()); wtx.fTimeReceivedIsTxTime = fTmp; } else { strErr = strprintf("LoadWallet() repairing tx ver=%d %s", wtx.fTimeReceivedIsTxTime, hash.ToString()); wtx.fTimeReceivedIsTxTime = 0; } wss.vWalletUpgrade.push_back(hash); } if (wtx.nOrderPos == -1) wss.fAnyUnordered = true; pwallet->AddToWallet(wtx, true); //// debug print //LogPrintf("LoadWallet %s\n", wtx.GetHash().ToString()); //LogPrintf(" %12d %s %s %s\n", // wtx.vout[0].nValue, // DateTimeStrFormat("%x %H:%M:%S", wtx.GetBlockTime()), // wtx.hashBlock.ToString(), // wtx.mapValue["message"]); } else if (strType == "sxAddr") { if (fDebug) printf("WalletDB ReadKeyValue sxAddr\n"); CStealthAddress sxAddr; ssValue >> sxAddr; pwallet->stealthAddresses.insert(sxAddr); } else if (strType == "acentry") { string strAccount; ssKey >> strAccount; uint64_t nNumber; ssKey >> nNumber; if (nNumber > nAccountingEntryNumber) nAccountingEntryNumber = nNumber; if (!wss.fAnyUnordered) { CAccountingEntry acentry; ssValue >> acentry; if (acentry.nOrderPos == -1) wss.fAnyUnordered = true; } } else if (strType == "watchs") { CScript script; ssKey >> script; char fYes; ssValue >> fYes; if (fYes == '1') pwallet->LoadWatchOnly(script); // Watch-only addresses have no birthday information for now, // so set the wallet birthday to the beginning of time. pwallet->nTimeFirstKey = 1; } else if (strType == "key" || strType == "wkey") { CPubKey vchPubKey; ssKey >> vchPubKey; if (!vchPubKey.IsValid()) { strErr = "Error reading wallet database: CPubKey corrupt"; return false; } CKey key; CPrivKey pkey; uint256 hash = 0; if (strType == "key") { wss.nKeys++; ssValue >> pkey; } else { CWalletKey wkey; ssValue >> wkey; pkey = wkey.vchPrivKey; } // Old wallets store keys as "key" [pubkey] => [privkey] // ... which was slow for wallets with lots of keys, because the public key is re-derived from the private key // using EC operations as a checksum. // Newer wallets store keys as "key"[pubkey] => [privkey][hash(pubkey,privkey)], which is much faster while // remaining backwards-compatible. try { ssValue >> hash; } catch(...){} bool fSkipCheck = false; if (hash != 0) { // hash pubkey/privkey to accelerate wallet load std::vector<unsigned char> vchKey; vchKey.reserve(vchPubKey.size() + pkey.size()); vchKey.insert(vchKey.end(), vchPubKey.begin(), vchPubKey.end()); vchKey.insert(vchKey.end(), pkey.begin(), pkey.end()); if (Hash(vchKey.begin(), vchKey.end()) != hash) { strErr = "Error reading wallet database: CPubKey/CPrivKey corrupt"; return false; } fSkipCheck = true; } if (!key.Load(pkey, vchPubKey, fSkipCheck)) { strErr = "Error reading wallet database: CPrivKey corrupt"; return false; } if (!pwallet->LoadKey(key, vchPubKey)) { strErr = "Error reading wallet database: LoadKey failed"; return false; } } else if (strType == "mkey") { unsigned int nID; ssKey >> nID; CMasterKey kMasterKey; ssValue >> kMasterKey; if(pwallet->mapMasterKeys.count(nID) != 0) { strErr = strprintf("Error reading wallet database: duplicate CMasterKey id %u", nID); return false; } pwallet->mapMasterKeys[nID] = kMasterKey; if (pwallet->nMasterKeyMaxID < nID) pwallet->nMasterKeyMaxID = nID; } else if (strType == "ckey") { wss.nCKeys++; vector<unsigned char> vchPubKey; ssKey >> vchPubKey; vector<unsigned char> vchPrivKey; ssValue >> vchPrivKey; if (!pwallet->LoadCryptedKey(vchPubKey, vchPrivKey)) { strErr = "Error reading wallet database: LoadCryptedKey failed"; return false; } wss.fIsEncrypted = true; } else if (strType == "keymeta") { CPubKey vchPubKey; ssKey >> vchPubKey; CKeyMetadata keyMeta; ssValue >> keyMeta; wss.nKeyMeta++; pwallet->LoadKeyMetadata(vchPubKey, keyMeta); // find earliest key creation time, as wallet birthday if (!pwallet->nTimeFirstKey || (keyMeta.nCreateTime < pwallet->nTimeFirstKey)) pwallet->nTimeFirstKey = keyMeta.nCreateTime; } else if (strType == "sxKeyMeta") { if (fDebug) printf("WalletDB ReadKeyValue sxKeyMeta\n"); CKeyID keyId; ssKey >> keyId; CStealthKeyMetadata sxKeyMeta; ssValue >> sxKeyMeta; pwallet->mapStealthKeyMeta[keyId] = sxKeyMeta; } else if (strType == "defaultkey") { ssValue >> pwallet->vchDefaultKey; } else if (strType == "pool") { int64_t nIndex; ssKey >> nIndex; CKeyPool keypool; ssValue >> keypool; pwallet->setKeyPool.insert(nIndex); // If no metadata exists yet, create a default with the pool key's // creation time. Note that this may be overwritten by actually // stored metadata for that key later, which is fine. CKeyID keyid = keypool.vchPubKey.GetID(); if (pwallet->mapKeyMetadata.count(keyid) == 0) pwallet->mapKeyMetadata[keyid] = CKeyMetadata(keypool.nTime); } else if (strType == "version") { ssValue >> wss.nFileVersion; if (wss.nFileVersion == 10300) wss.nFileVersion = 300; } else if (strType == "cscript") { uint160 hash; ssKey >> hash; CScript script; ssValue >> script; if (!pwallet->LoadCScript(script)) { strErr = "Error reading wallet database: LoadCScript failed"; return false; } } else if (strType == "orderposnext") { ssValue >> pwallet->nOrderPosNext; } } catch (...) { return false; } return true; } static bool IsKeyType(string strType) { return (strType== "key" || strType == "wkey" || strType == "mkey" || strType == "ckey"); } DBErrors CWalletDB::LoadWallet(CWallet* pwallet) { pwallet->vchDefaultKey = CPubKey(); CWalletScanState wss; bool fNoncriticalErrors = false; DBErrors result = DB_LOAD_OK; try { LOCK(pwallet->cs_wallet); int nMinVersion = 0; if (Read((string)"minversion", nMinVersion)) { if (nMinVersion > CLIENT_VERSION) return DB_TOO_NEW; pwallet->LoadMinVersion(nMinVersion); } // Get cursor Dbc* pcursor = GetCursor(); if (!pcursor) { LogPrintf("Error getting wallet database cursor\n"); return DB_CORRUPT; } while (true) { // Read next record CDataStream ssKey(SER_DISK, CLIENT_VERSION); CDataStream ssValue(SER_DISK, CLIENT_VERSION); int ret = ReadAtCursor(pcursor, ssKey, ssValue); if (ret == DB_NOTFOUND) break; else if (ret != 0) { LogPrintf("Error reading next record from wallet database\n"); return DB_CORRUPT; } // Try to be tolerant of single corrupt records: string strType, strErr; if (!ReadKeyValue(pwallet, ssKey, ssValue, wss, strType, strErr)) { // losing keys is considered a catastrophic error, anything else // we assume the user can live with: if (IsKeyType(strType)) result = DB_CORRUPT; else { // Leave other errors alone, if we try to fix them we might make things worse. fNoncriticalErrors = true; // ... but do warn the user there is something wrong. if (strType == "tx") // Rescan if there is a bad transaction record: SoftSetBoolArg("-rescan", true); } } if (!strErr.empty()) LogPrintf("%s\n", strErr); } pcursor->close(); } catch (boost::thread_interrupted) { throw; } catch (...) { result = DB_CORRUPT; } if (fNoncriticalErrors && result == DB_LOAD_OK) result = DB_NONCRITICAL_ERROR; // Any wallet corruption at all: skip any rewriting or // upgrading, we don't want to make it worse. if (result != DB_LOAD_OK) return result; LogPrintf("nFileVersion = %d\n", wss.nFileVersion); LogPrintf("Keys: %u plaintext, %u encrypted, %u w/ metadata, %u total\n", wss.nKeys, wss.nCKeys, wss.nKeyMeta, wss.nKeys + wss.nCKeys); // nTimeFirstKey is only reliable if all keys have metadata if ((wss.nKeys + wss.nCKeys) != wss.nKeyMeta) pwallet->nTimeFirstKey = 1; // 0 would be considered 'no value' BOOST_FOREACH(uint256 hash, wss.vWalletUpgrade) WriteTx(hash, pwallet->mapWallet[hash]); // Rewrite encrypted wallets of versions 0.4.0 and 0.5.0rc: if (wss.fIsEncrypted && (wss.nFileVersion == 40000 || wss.nFileVersion == 50000)) return DB_NEED_REWRITE; if (wss.nFileVersion < CLIENT_VERSION) // Update WriteVersion(CLIENT_VERSION); if (wss.fAnyUnordered) result = ReorderTransactions(pwallet); pwallet->laccentries.clear(); ListAccountCreditDebit("*", pwallet->laccentries); BOOST_FOREACH(CAccountingEntry& entry, pwallet->laccentries) { pwallet->wtxOrdered.insert(make_pair(entry.nOrderPos, CWallet::TxPair((CWalletTx*)0, &entry))); } return result; } void ThreadFlushWalletDB(const string& strFile) { // Make this thread recognisable as the wallet flushing thread RenameThread("Endox-Coin-wallet"); static bool fOneThread; if (fOneThread) return; fOneThread = true; if (!GetBoolArg("-flushwallet", true)) return; unsigned int nLastSeen = nWalletDBUpdated; unsigned int nLastFlushed = nWalletDBUpdated; int64_t nLastWalletUpdate = GetTime(); while (true) { MilliSleep(500); if (nLastSeen != nWalletDBUpdated) { nLastSeen = nWalletDBUpdated; nLastWalletUpdate = GetTime(); } if (nLastFlushed != nWalletDBUpdated && GetTime() - nLastWalletUpdate >= 2) { TRY_LOCK(bitdb.cs_db,lockDb); if (lockDb) { // Don't do this if any databases are in use int nRefCount = 0; map<string, int>::iterator mi = bitdb.mapFileUseCount.begin(); while (mi != bitdb.mapFileUseCount.end()) { nRefCount += (*mi).second; mi++; } if (nRefCount == 0) { boost::this_thread::interruption_point(); map<string, int>::iterator mi = bitdb.mapFileUseCount.find(strFile); if (mi != bitdb.mapFileUseCount.end()) { LogPrint("db", "Flushing wallet.dat\n"); nLastFlushed = nWalletDBUpdated; int64_t nStart = GetTimeMillis(); // Flush wallet.dat so it's self contained bitdb.CloseDb(strFile); bitdb.CheckpointLSN(strFile); bitdb.mapFileUseCount.erase(mi++); LogPrint("db", "Flushed wallet.dat %dms\n", GetTimeMillis() - nStart); } } } } } } bool BackupWallet(const CWallet& wallet, const string& strDest) { if (!wallet.fFileBacked) return false; while (true) { { LOCK(bitdb.cs_db); if (!bitdb.mapFileUseCount.count(wallet.strWalletFile) || bitdb.mapFileUseCount[wallet.strWalletFile] == 0) { // Flush log data to the dat file bitdb.CloseDb(wallet.strWalletFile); bitdb.CheckpointLSN(wallet.strWalletFile); bitdb.mapFileUseCount.erase(wallet.strWalletFile); // Copy wallet.dat filesystem::path pathSrc = GetDataDir() / wallet.strWalletFile; filesystem::path pathDest(strDest); if (filesystem::is_directory(pathDest)) pathDest /= wallet.strWalletFile; try { #if BOOST_VERSION >= 104000 filesystem::copy_file(pathSrc, pathDest, filesystem::copy_option::overwrite_if_exists); #else filesystem::copy_file(pathSrc, pathDest); #endif LogPrintf("copied wallet.dat to %s\n", pathDest.string()); return true; } catch(const filesystem::filesystem_error &e) { LogPrintf("error copying wallet.dat to %s - %s\n", pathDest.string(), e.what()); return false; } } } MilliSleep(100); } return false; } // // Try to (very carefully!) recover wallet.dat if there is a problem. // bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename, bool fOnlyKeys) { // Recovery procedure: // move wallet.dat to wallet.timestamp.bak // Call Salvage with fAggressive=true to // get as much data as possible. // Rewrite salvaged data to wallet.dat // Set -rescan so any missing transactions will be // found. int64_t now = GetTime(); std::string newFilename = strprintf("wallet.%d.bak", now); int result = dbenv.dbenv.dbrename(NULL, filename.c_str(), NULL, newFilename.c_str(), DB_AUTO_COMMIT); if (result == 0) LogPrintf("Renamed %s to %s\n", filename, newFilename); else { LogPrintf("Failed to rename %s to %s\n", filename, newFilename); return false; } std::vector<CDBEnv::KeyValPair> salvagedData; bool allOK = dbenv.Salvage(newFilename, true, salvagedData); if (salvagedData.empty()) { LogPrintf("Salvage(aggressive) found no records in %s.\n", newFilename); return false; } LogPrintf("Salvage(aggressive) found %u records\n", salvagedData.size()); bool fSuccess = allOK; Db* pdbCopy = new Db(&dbenv.dbenv, 0); int ret = pdbCopy->open(NULL, // Txn pointer filename.c_str(), // Filename "main", // Logical db name DB_BTREE, // Database type DB_CREATE, // Flags 0); if (ret > 0) { LogPrintf("Cannot create database file %s\n", filename); return false; } CWallet dummyWallet; CWalletScanState wss; DbTxn* ptxn = dbenv.TxnBegin(); BOOST_FOREACH(CDBEnv::KeyValPair& row, salvagedData) { if (fOnlyKeys) { CDataStream ssKey(row.first, SER_DISK, CLIENT_VERSION); CDataStream ssValue(row.second, SER_DISK, CLIENT_VERSION); string strType, strErr; bool fReadOK = ReadKeyValue(&dummyWallet, ssKey, ssValue, wss, strType, strErr); if (!IsKeyType(strType)) continue; if (!fReadOK) { LogPrintf("WARNING: CWalletDB::Recover skipping %s: %s\n", strType, strErr); continue; } } Dbt datKey(&row.first[0], row.first.size()); Dbt datValue(&row.second[0], row.second.size()); int ret2 = pdbCopy->put(ptxn, &datKey, &datValue, DB_NOOVERWRITE); if (ret2 > 0) fSuccess = false; } ptxn->commit(0); pdbCopy->close(0); delete pdbCopy; return fSuccess; } bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename) { return CWalletDB::Recover(dbenv, filename, false); }
[ "rubixblockchain@gmail.com" ]
rubixblockchain@gmail.com
a631cc5eefacd3539d84f004049a18bf1c087094
25ed526bb3961c406d843a3b3bdc5cc8871548fc
/cli/src/cli_command.cpp
2583bdf67e08096fd33301cf52e384a504ac78c8
[ "MIT" ]
permissive
kravtsun/au-sd
a31ce5900bd61e638e9aca9544be7e8f1bbcdafe
23522ef932ccab76c6cb74faf6b9ce7dd438d6fc
refs/heads/master
2020-04-06T03:58:21.776648
2017-05-23T20:41:53
2017-05-23T20:41:53
83,093,236
0
1
null
2017-06-08T21:27:43
2017-02-25T00:04:44
C++
UTF-8
C++
false
false
208
cpp
#include "cli_command.h" namespace cli { Command::Command(std::istream &is, std::ostream &os, const Command::ParamsListType &params) : is_(is) , os_(os) , params_(params) {} } // namespace cli
[ "kravtsun@cvisionlab.com" ]
kravtsun@cvisionlab.com
8e5ae0ba29d2138f8aca06ceb14ab71828fc5362
847e8aca4c265bbc41c1021654372a396380a462
/A3_Police/language_f_police/cfgPatches.hpp
dcc5942b2d544e4e2398c6c0f8da8d8f9aeeebc5
[]
no_license
senicluxus/A3_Police
fc37aac6de30fc49fa8cd20a6a9edae00dbcf7a4
860a38be419a02a47a134a8ab3d4b74e2fde4c32
refs/heads/main
2023-06-15T11:27:30.488969
2021-07-01T21:09:11
2021-07-01T21:09:11
382,157,108
0
0
null
null
null
null
UTF-8
C++
false
false
400
hpp
class CfgPatches { class A3_Police_Language_F_Police { author = $STR_A3_A_AveryTheKitty; name = "Arma 3 Police - Texts and Translations"; url = "https://steamcommunity.com/sharedfiles/filedetails/?id=2225865544"; requiredAddons[] = {A3_Police_Data_F_Police}; requiredVersion = 0.1; units[] = {/* Auto-compiled by pboProject */}; weapons[] = {/* Auto-compiled by pboProject */}; }; };
[ "senicluxus@gmail.com" ]
senicluxus@gmail.com
d68b65ac59b4f999a6be557bae5b9de10d395f30
96a390c14952a07729906880594b7be1f8732b09
/chrome/browser/chromeos/full_restore/arc_app_launch_handler.cc
373d911b24404e11f83f74dfa5d61cf397781c35
[ "BSD-3-Clause" ]
permissive
elielvipata/chromium-1
92d56e426729e32998c6bc2ced02d878face54c8
30066dc36c595ae0450ad93b5de8ad0554fcd427
refs/heads/master
2023-06-17T15:46:44.373673
2021-07-12T14:36:22
2021-07-12T14:36:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
20,711
cc
// Copyright 2021 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. #include "chrome/browser/chromeos/full_restore/arc_app_launch_handler.h" #include <utility> #include <vector> #include "ash/shell.h" #include "base/callback.h" #include "base/containers/contains.h" #include "base/cpu.h" #include "chrome/browser/apps/app_service/app_platform_metrics.h" #include "chrome/browser/apps/app_service/app_service_proxy.h" #include "chrome/browser/apps/app_service/app_service_proxy_factory.h" #include "chrome/browser/apps/app_service/launch_utils.h" #include "chrome/browser/chromeos/full_restore/arc_window_handler.h" #include "chrome/browser/chromeos/full_restore/arc_window_utils.h" #include "chrome/browser/chromeos/full_restore/full_restore_app_launch_handler.h" #include "chrome/browser/chromeos/full_restore/full_restore_arc_task_handler.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h" #include "chrome/browser/ui/ash/shelf/arc_shelf_spinner_item_controller.h" #include "chrome/browser/ui/ash/shelf/chrome_shelf_controller.h" #include "chrome/browser/ui/ash/shelf/shelf_spinner_controller.h" #include "chromeos/services/cros_healthd/public/cpp/service_connection.h" #include "chromeos/services/cros_healthd/public/mojom/cros_healthd_probe.mojom.h" #include "components/arc/arc_util.h" #include "components/arc/metrics/arc_metrics_constants.h" #include "components/full_restore/app_launch_info.h" #include "components/full_restore/full_restore_read_handler.h" #include "components/full_restore/full_restore_utils.h" #include "components/full_restore/restore_data.h" #include "components/services/app_service/public/cpp/types_util.h" #include "components/services/app_service/public/mojom/types.mojom.h" #include "ui/wm/public/activation_client.h" namespace { // If the app launching condition doesn't match, e.g. the app is not ready, // and after checking `kMaxCheckingNum` times, there is no improvement, move to // the next window to launch. constexpr int kMaxCheckingNum = 3; // Time interval between each checking for the app launching condition, e.g. the // memory pressure level, or whether the app is ready. constexpr base::TimeDelta kAppLaunchCheckingDelay = base::TimeDelta::FromSeconds(1); // Delay between each app launching. constexpr base::TimeDelta kAppLaunchDelay = base::TimeDelta::FromSeconds(3); constexpr int kCpuUsageRefreshIntervalInSeconds = 1; // Count CPU usage by average on last 6 seconds. constexpr int kCpuUsageCountWindowLength = 6 * kCpuUsageRefreshIntervalInSeconds; // Restrict ARC app launch if CPU usage over threshold. constexpr int kCpuUsageThreshold = 90; // Apply CPU usage restrict if and only if the CPU cores not over // |kCpuRestrictCoresCondition|. constexpr int kCpuRestrictCoresCondition = 2; } // namespace namespace chromeos { namespace full_restore { ArcAppLaunchHandler::ArcAppLaunchHandler() { if (aura::Env::HasInstance()) env_observer_.Observe(aura::Env::GetInstance()); if (ash::Shell::HasInstance() && ash::Shell::Get()->GetPrimaryRootWindow()) { auto* activation_client = wm::GetActivationClient(ash::Shell::Get()->GetPrimaryRootWindow()); if (activation_client) activation_client->AddObserver(this); } // Get CPU cores. base::CPU::TimeInState state; if (base::CPU::GetTimeInState(state) && state.size() <= kCpuRestrictCoresCondition) { should_apply_cpu_restirction_ = true; } } ArcAppLaunchHandler::~ArcAppLaunchHandler() { if (ash::Shell::HasInstance() && ash::Shell::Get()->GetPrimaryRootWindow()) { auto* activation_client = wm::GetActivationClient(ash::Shell::Get()->GetPrimaryRootWindow()); if (activation_client) activation_client->RemoveObserver(this); } } void ArcAppLaunchHandler::RestoreArcApps( FullRestoreAppLaunchHandler* app_launch_handler) { DCHECK(app_launch_handler); handler_ = app_launch_handler; LoadRestoreData(); if (!HasRestoreData()) return; window_handler_ = FullRestoreArcTaskHandler::GetForProfile(handler_->profile_) ->window_handler(); DCHECK(apps::AppServiceProxyFactory::IsAppServiceAvailableForProfile( handler_->profile_)); apps::AppRegistryCache& cache = apps::AppServiceProxyFactory::GetForProfile(handler_->profile_) ->AppRegistryCache(); // Observe AppRegistryCache to get the notification when the app is ready. if (!app_registry_cache_observer_.IsObserving()) app_registry_cache_observer_.Observe(&cache); // Add the app to `app_ids` if there is a launch list from the restore data // for the app. std::set<std::string> app_ids; cache.ForEachApp([&app_ids, this](const apps::AppUpdate& update) { if (update.Readiness() == apps::mojom::Readiness::kReady && app_ids_.find(update.AppId()) != app_ids_.end()) { app_ids.insert(update.AppId()); } }); for (const auto& app_id : app_ids) PrepareAppLaunching(app_id); } void ArcAppLaunchHandler::OnAppUpdate(const apps::AppUpdate& update) { if (!HasRestoreData() || !update.ReadinessChanged()) return; if (!apps_util::IsInstalled(update.Readiness())) { RemoveWindowsForApp(update.AppId()); return; } // If the app is not ready, don't launch the app for the restoration. if (update.Readiness() != apps::mojom::Readiness::kReady) return; if (base::Contains(app_ids_, update.AppId())) PrepareAppLaunching(update.AppId()); } void ArcAppLaunchHandler::OnAppRegistryCacheWillBeDestroyed( apps::AppRegistryCache* cache) { apps::AppRegistryCache::Observer::Observe(nullptr); } void ArcAppLaunchHandler::OnAppConnectionReady() { if (!HasRestoreData()) return; // Receive the memory pressure level. if (chromeos::ResourcedClient::Get() && !resourced_client_observer_.IsObserving()) { resourced_client_observer_.Observe(chromeos::ResourcedClient::Get()); } // Receive the system CPU usage rate. if (!probe_service_ || !probe_service_.is_connected()) { cros_healthd::ServiceConnection::GetInstance()->GetProbeService( probe_service_.BindNewPipeAndPassReceiver()); probe_service_.set_disconnect_handler( base::BindOnce(&ArcAppLaunchHandler::OnProbeServiceDisconnect, weak_ptr_factory_.GetWeakPtr())); } StartCpuUsageCount(); if (!app_launch_timer_) { app_launch_timer_ = std::make_unique<base::RepeatingTimer>(); MaybeReStartTimer(kAppLaunchCheckingDelay); } if (!stop_restore_timer_) { stop_restore_timer_ = std::make_unique<base::OneShotTimer>(); stop_restore_timer_->Start(FROM_HERE, kStopRestoreDelay, base::BindOnce(&ArcAppLaunchHandler::StopRestore, weak_ptr_factory_.GetWeakPtr())); } } void ArcAppLaunchHandler::LaunchApp(const std::string& app_id) { if (!IsAppReady(app_id)) return; DCHECK(handler_); const auto it = handler_->restore_data_->app_id_to_launch_list().find(app_id); if (it == handler_->restore_data_->app_id_to_launch_list().end()) return; if (it->second.empty()) { handler_->restore_data_->RemoveApp(app_id); return; } for (const auto& data_it : it->second) LaunchApp(app_id, data_it.first); RemoveWindowsForApp(app_id); } void ArcAppLaunchHandler::OnWindowActivated( ::wm::ActivationChangeObserver::ActivationReason reason, aura::Window* new_active, aura::Window* old_active) { const auto session_id = arc::GetWindowSessionId(new_active); if (!session_id.has_value()) return; const std::string* arc_app_id = new_active->GetProperty(::full_restore::kAppIdKey); if (!arc_app_id || arc_app_id->empty() || !IsAppReady(*arc_app_id)) return; auto it = session_id_to_window_id_.find(session_id.value()); if (it == session_id_to_window_id_.end()) return; RemoveWindow(*arc_app_id, it->second); LaunchApp(*arc_app_id, it->second); } void ArcAppLaunchHandler::OnWindowInitialized(aura::Window* window) { // An app window has type WINDOW_TYPE_NORMAL, a WindowDelegate and // is a top level views widget. Tooltips, menus, and other kinds of transient // windows that can't activate are filtered out. if (window->GetType() != aura::client::WINDOW_TYPE_NORMAL || !window->delegate()) return; views::Widget* widget = views::Widget::GetWidgetForNativeWindow(window); if (!widget || !widget->is_top_level() || !arc::GetWindowSessionId(window).has_value()) { return; } observed_windows_.AddObservation(window); } void ArcAppLaunchHandler::OnWindowDestroying(aura::Window* window) { DCHECK(observed_windows_.IsObservingSource(window)); observed_windows_.RemoveObservation(window); const auto session_id = arc::GetWindowSessionId(window); if (!session_id.has_value()) return; session_id_to_window_id_.erase(session_id.value()); } void ArcAppLaunchHandler::LoadRestoreData() { DCHECK(handler_); apps::AppRegistryCache& cache = apps::AppServiceProxyFactory::GetForProfile(handler_->profile_) ->AppRegistryCache(); for (const auto& it : handler_->restore_data_->app_id_to_launch_list()) { if (cache.GetAppType(it.first) != apps::mojom::AppType::kArc) continue; app_ids_.insert(it.first); for (const auto& data_it : it.second) { if (data_it.second->activation_index.has_value()) { windows_[data_it.second->activation_index.value()] = {it.first, data_it.first}; } else { no_stack_windows_.push_back({it.first, data_it.first}); } } } } void ArcAppLaunchHandler::PrepareAppLaunching(const std::string& app_id) { DCHECK(handler_); app_ids_.erase(app_id); const auto it = handler_->restore_data_->app_id_to_launch_list().find(app_id); if (it == handler_->restore_data_->app_id_to_launch_list().end()) return; if (it->second.empty()) { handler_->restore_data_->RemoveApp(app_id); return; } auto* arc_handler = FullRestoreArcTaskHandler::GetForProfile(handler_->profile_); for (const auto& data_it : it->second) { handler_->RecordRestoredAppLaunch(apps::AppTypeName::kArc); DCHECK(data_it.second->event_flag.has_value()); // Set an ARC session id to find the restore window id based on the new // created ARC task id in FullRestoreReadHandler. int32_t arc_session_id = ::full_restore::FullRestoreReadHandler::GetInstance() ->GetArcSessionId(); ::full_restore::FullRestoreReadHandler::GetInstance() ->SetArcSessionIdForWindowId(arc_session_id, data_it.first); window_id_to_session_id_[data_it.first] = arc_session_id; session_id_to_window_id_[arc_session_id] = data_it.first; bool launch_ghost_window = false; #if BUILDFLAG(ENABLE_WAYLAND_SERVER) if (window_handler_ && (data_it.second->bounds_in_root.has_value() || data_it.second->current_bounds.has_value())) { handler_->RecordArcGhostWindowLaunch(/*is_arc_ghost_window=*/true); arc_handler->window_handler()->LaunchArcGhostWindow( app_id, arc_session_id, data_it.second.get()); launch_ghost_window = true; } else { handler_->RecordArcGhostWindowLaunch(/*is_arc_ghost_window=*/false); } #endif if (launch_ghost_window) continue; ChromeShelfController* chrome_controller = ChromeShelfController::instance(); // chrome_controller may be null in tests. if (chrome_controller) { apps::mojom::WindowInfoPtr window_info = apps::mojom::WindowInfo::New(); window_info->window_id = arc_session_id; chrome_controller->GetShelfSpinnerController()->AddSpinnerToShelf( app_id, std::make_unique<ArcShelfSpinnerItemController>( app_id, data_it.second->event_flag.value(), arc::UserInteractionType::APP_STARTED_FROM_FULL_RESTORE, apps::MakeArcWindowInfo(std::move(window_info)))); } } } void ArcAppLaunchHandler::OnMemoryPressure( chromeos::ResourcedClient::PressureLevel level, uint64_t reclaim_target_kb) { pressure_level_ = level; } bool ArcAppLaunchHandler::HasRestoreData() { return !(windows_.empty() && no_stack_windows_.empty() && pending_windows_.empty()); } bool ArcAppLaunchHandler::CanLaunchApp() { if (should_apply_cpu_restirction_) { if (GetCpuUsageRate() >= kCpuUsageThreshold) return false; } switch (pressure_level_) { case chromeos::ResourcedClient::PressureLevel::NONE: return true; case chromeos::ResourcedClient::PressureLevel::MODERATE: case chromeos::ResourcedClient::PressureLevel::CRITICAL: return false; } } bool ArcAppLaunchHandler::IsAppReady(const std::string& app_id) { ArcAppListPrefs* prefs = ArcAppListPrefs::Get(handler_->profile_); if (!prefs) return false; std::unique_ptr<ArcAppListPrefs::AppInfo> app_info = prefs->GetApp(app_id); if (!app_info || app_info->suspended || !app_info->ready) return false; return true; } void ArcAppLaunchHandler::MaybeLaunchApp() { if (!first_run_ && !CanLaunchApp()) return; for (auto it = pending_windows_.begin(); it != pending_windows_.end(); ++it) { if (IsAppReady(it->app_id)) { LaunchApp(it->app_id, it->window_id); pending_windows_.erase(it); MaybeReStartTimer(kAppLaunchDelay); return; } } if (!windows_.empty()) { auto it = windows_.begin(); if (IsAppReady(it->second.app_id)) { launch_count_ = 0; LaunchApp(it->second.app_id, it->second.window_id); windows_.erase(it); MaybeReStartTimer(kAppLaunchDelay); } else { ++launch_count_; if (launch_count_ >= kMaxCheckingNum) { pending_windows_.push_back({it->second.app_id, it->second.window_id}); windows_.erase(it); launch_count_ = 0; } else if (launch_count_ == 1) { MaybeReStartTimer(kAppLaunchCheckingDelay); } } return; } for (auto it = no_stack_windows_.begin(); it != no_stack_windows_.end(); ++it) { if (IsAppReady(it->app_id)) { LaunchApp(it->app_id, it->window_id); no_stack_windows_.erase(it); MaybeReStartTimer(kAppLaunchDelay); return; } } } void ArcAppLaunchHandler::LaunchApp(const std::string& app_id, int32_t window_id) { DCHECK(handler_); const auto it = handler_->restore_data_->app_id_to_launch_list().find(app_id); if (it == handler_->restore_data_->app_id_to_launch_list().end()) return; if (it->second.empty()) { handler_->restore_data_->RemoveApp(app_id); return; } const auto data_it = it->second.find(window_id); if (data_it == it->second.end()) return; first_run_ = false; auto* proxy = apps::AppServiceProxyFactory::GetForProfile(handler_->profile_); DCHECK(proxy); DCHECK(data_it->second->event_flag.has_value()); apps::mojom::WindowInfoPtr window_info = HandleArcWindowInfo(data_it->second->GetAppWindowInfo()); const auto window_it = window_id_to_session_id_.find(window_id); if (window_it != window_id_to_session_id_.end()) { window_info->window_id = window_it->second; window_id_to_session_id_.erase(window_it); } else { // Set an ARC session id to find the restore window id based on the new // created ARC task id in FullRestoreReadHandler. int32_t arc_session_id = ::full_restore::FullRestoreReadHandler::GetInstance() ->GetArcSessionId(); window_info->window_id = arc_session_id; ::full_restore::FullRestoreReadHandler::GetInstance() ->SetArcSessionIdForWindowId(arc_session_id, window_id); window_id_to_session_id_[window_id] = arc_session_id; } if (data_it->second->intent.has_value()) { proxy->LaunchAppWithIntent(app_id, data_it->second->event_flag.value(), std::move(data_it->second->intent.value()), apps::mojom::LaunchSource::kFromFullRestore, std::move(window_info)); } else { proxy->Launch(app_id, data_it->second->event_flag.value(), apps::mojom::LaunchSource::kFromFullRestore, std::move(window_info)); } if (!HasRestoreData()) StopRestore(); } void ArcAppLaunchHandler::RemoveWindowsForApp(const std::string& app_id) { app_ids_.erase(app_id); std::vector<int32_t> window_stacks; for (auto& it : windows_) { if (it.second.app_id == app_id) window_stacks.push_back(it.first); } for (auto window_stack : window_stacks) windows_.erase(window_stack); std::vector<std::list<WindowInfo>::iterator> windows; for (auto it = no_stack_windows_.begin(); it != no_stack_windows_.end(); ++it) { if (it->app_id == app_id) windows.push_back(it); } for (auto it : windows) no_stack_windows_.erase(it); windows.clear(); for (auto it = pending_windows_.begin(); it != pending_windows_.end(); ++it) { if (it->app_id == app_id) windows.push_back(it); } for (auto it : windows) pending_windows_.erase(it); } void ArcAppLaunchHandler::RemoveWindow(const std::string& app_id, int32_t window_id) { for (auto& it : windows_) { if (it.second.app_id == app_id && it.second.window_id == window_id) { windows_.erase(it.first); return; } } for (auto it = no_stack_windows_.begin(); it != no_stack_windows_.end(); ++it) { if (it->app_id == app_id && it->window_id == window_id) { no_stack_windows_.erase(it); return; } } for (auto it = pending_windows_.begin(); it != pending_windows_.end(); ++it) { if (it->app_id == app_id && it->window_id == window_id) { pending_windows_.erase(it); return; } } } void ArcAppLaunchHandler::MaybeReStartTimer(const base::TimeDelta& delay) { DCHECK(app_launch_timer_); // If there is no window to be launched, stop the timer. if (!HasRestoreData()) { StopRestore(); return; } if (current_delay_ == delay) return; // If the delay is changed, restart the timer. if (app_launch_timer_->IsRunning()) app_launch_timer_->Stop(); current_delay_ = delay; app_launch_timer_->Start( FROM_HERE, current_delay_, base::BindRepeating(&ArcAppLaunchHandler::MaybeLaunchApp, weak_ptr_factory_.GetWeakPtr())); } void ArcAppLaunchHandler::StopRestore() { if (app_launch_timer_ && app_launch_timer_->IsRunning()) app_launch_timer_->Stop(); app_launch_timer_.reset(); if (stop_restore_timer_ && stop_restore_timer_->IsRunning()) stop_restore_timer_->Stop(); stop_restore_timer_.reset(); StopCpuUsageCount(); } int ArcAppLaunchHandler::GetCpuUsageRate() { uint64_t idle = 0, sum = 0; for (const auto& tick : cpu_tick_window_) { idle += tick.idle_time; sum += tick.idle_time + tick.used_time; } // Convert to xx% percentage. return sum ? int(100 * (sum - idle) / sum) : 0; } void ArcAppLaunchHandler::StartCpuUsageCount() { cpu_tick_count_timer_.Start( FROM_HERE, base::TimeDelta::FromSeconds(kCpuUsageRefreshIntervalInSeconds), base::BindRepeating(&ArcAppLaunchHandler::UpdateCpuUsage, base::Unretained(this))); } void ArcAppLaunchHandler::StopCpuUsageCount() { cpu_tick_count_timer_.Stop(); } void ArcAppLaunchHandler::UpdateCpuUsage() { probe_service_->ProbeTelemetryInfo( {chromeos::cros_healthd::mojom::ProbeCategoryEnum::kCpu}, base::BindOnce(&ArcAppLaunchHandler::OnCpuUsageUpdated, weak_ptr_factory_.GetWeakPtr())); } void ArcAppLaunchHandler::OnCpuUsageUpdated( chromeos::cros_healthd::mojom::TelemetryInfoPtr info_ptr) { CpuTick tick; // For simplicity, assume that device has only one physical CPU. for (const auto& logical_cpu : info_ptr->cpu_result->get_cpu_info()->physical_cpus[0]->logical_cpus) { tick.idle_time += logical_cpu->idle_time_user_hz; tick.used_time += logical_cpu->user_time_user_hz + logical_cpu->system_time_user_hz; } if (last_cpu_tick_.has_value()) cpu_tick_window_.push_back(tick - last_cpu_tick_.value()); last_cpu_tick_ = tick; // Sliding window for CPU usage count. while (cpu_tick_window_.size() > kCpuUsageCountWindowLength) cpu_tick_window_.pop_front(); } void ArcAppLaunchHandler::OnProbeServiceDisconnect() { probe_service_.reset(); } } // namespace full_restore } // namespace chromeos
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
30a4c6f2ab4d0d76883980d5134a42fc85e9ec13
bbe6df507bcd493871b29950189cae16e761b9d2
/src/test/Nebula.cc
14684ebe4e48ffd5775aa76f7d6b0a1d1652cb2e
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
bcec/opennebula3.4.1
99138e0ea679fb1ed9e5e13ef16af3febfec3672
8bdd19006f21aa11555dc411f670a89b916f05c9
refs/heads/master
2021-01-23T11:48:10.894787
2012-07-05T09:37:59
2012-07-05T09:37:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,803
cc
/* -------------------------------------------------------------------------- */ /* Copyright 2002-2012, OpenNebula Project Leads (OpenNebula.org) */ /* */ /* 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 "Nebula.h" #include "NebulaLog.h" #include "VirtualMachine.h" #include "SqliteDB.h" #include "MySqlDB.h" #include "OneUnitTest.h" #include "NebulaTest.h" #include <stdlib.h> #include <stdexcept> #include <libxml/parser.h> #include <signal.h> #include <unistd.h> #include <fcntl.h> #include <sys/types.h> #include <sys/stat.h> #include <pthread.h> using namespace std; /* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */ void Nebula::start() { int rc; sigset_t mask; time_t timer_period; NebulaTest * tester; tester = NebulaTest::instance(); // Because Nebula is accessed only using ::instance(), it can't be // deleted. Tests use the start method several times before the // destructor is invoked, so this clean-up is necessary if ( vmpool != 0) { delete vmpool; } if ( vnpool != 0) { delete vnpool; } if ( hpool != 0) { delete hpool; } if ( upool != 0) { delete upool; } if ( ipool != 0) { delete ipool; } if ( tpool != 0) { delete tpool; } if ( gpool != 0) { delete gpool; } if ( dspool != 0) { delete dspool; } if ( clpool != 0) { delete clpool; } if ( vmm != 0) { delete vmm; } if ( lcm != 0) { delete lcm; } if ( im != 0) { delete im; } if ( tm != 0) { delete tm; } if ( dm != 0) { delete dm; } if ( rm != 0) { delete rm; } if ( hm != 0) { delete hm; } if ( imagem != 0 ) { delete imagem; } if ( authm != 0) { delete authm; } if ( aclm != 0) { delete aclm; } if ( nebula_configuration != 0) { delete nebula_configuration; } // ----------------------------------------------------------- // Configuration // ----------------------------------------------------------- // A self-contained structure in current directory is assumed nebula_location = "./"; mad_location = nebula_location + "lib/mads/"; etc_location = nebula_location + "etc/"; log_location = nebula_location + "var/"; var_location = nebula_location; hook_location = nebula_location + "hooks/"; remotes_location = nebula_location + "var/remotes/"; if ( nebula_configuration != 0) { delete nebula_configuration; } xmlInitParser(); // ----------------------------------------------------------- // Pools // ----------------------------------------------------------- try { vector<const Attribute *> dbs; db = OneUnitTest::get_db(); NebulaLog::log("ONE",Log::INFO,"Bootstraping OpenNebula database."); bootstrap(); VirtualMachinePool::bootstrap(db); HostPool::bootstrap(db); VirtualNetworkPool::bootstrap(db); UserPool::bootstrap(db); ImagePool::bootstrap(db); VMTemplatePool::bootstrap(db); GroupPool::bootstrap(db); AclManager::bootstrap(db); DatastorePool::bootstrap(db); ClusterPool::bootstrap(db); } catch (exception&) { throw; } // ----------------------------------------------------------- try { string mac_prefix = "00:02"; int size = 126; string default_image_type = "OS"; string default_device_prefix = "hd"; if (tester->need_cluster_pool) { clpool = tester->create_clpool(db); } if (tester->need_vm_pool) { vmpool = tester->create_vmpool(db,hook_location,var_location); } if (tester->need_host_pool) { hpool = tester->create_hpool(db,hook_location,var_location); } if (tester->need_vnet_pool) { vnpool = tester->create_vnpool(db,mac_prefix,size); } if (tester->need_group_pool) { gpool = tester->create_gpool(db); } if (tester->need_user_pool) { upool = tester->create_upool(db); } if (tester->need_image_pool) { ipool = tester->create_ipool(db, default_image_type, default_device_prefix); } if (tester->need_template_pool) { tpool = tester->create_tpool(db); } if (tester->need_datastore_pool) { dspool = tester->create_dspool(db); } } catch (exception&) { throw; } // ----------------------------------------------------------- //Managers // ----------------------------------------------------------- timer_period = 0; rc = 0; sigfillset(&mask); pthread_sigmask(SIG_BLOCK, &mask, NULL); MadManager::mad_manager_system_init(); // ---- Virtual Machine Manager ---- if (tester->need_vmm) { try { time_t poll_period = 0; vmm = tester->create_vmm(vmpool,hpool,timer_period,poll_period); } catch (bad_alloc&) { throw; } if( vmm != 0) { rc = vmm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Virtual Machine Manager"); } } // ---- Life-cycle Manager ---- if (tester->need_lcm) { try { lcm = tester->create_lcm(vmpool,hpool); } catch (bad_alloc&) { throw; } if( lcm != 0 ) { rc = lcm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Life-cycle Manager"); } } // ---- Information Manager ---- if (tester->need_im) { try { im = tester->create_im(hpool,timer_period,remotes_location); } catch (bad_alloc&) { throw; } if( im != 0 ) { rc = im->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Information Manager"); } } // ---- Transfer Manager ---- if (tester->need_tm) { try { tm = tester->create_tm(vmpool, hpool); } catch (bad_alloc&) { throw; } if( tm != 0 ) { rc = tm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Transfer Manager"); } } // ---- Dispatch Manager ---- if ( tester->need_dm ) { try { dm = tester->create_dm(vmpool,hpool); } catch (bad_alloc&) { throw; } if( dm != 0 ) { rc = dm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Dispatch Manager"); } } // ---- Hook Manager ---- if (tester->need_hm) { try { hm = tester->create_hm(vmpool); } catch (bad_alloc&) { throw; } if( hm != 0 ) { rc = hm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Hook Manager"); } } // ---- Auth Manager ---- if (tester->need_authm) { try { authm = tester->create_authm(timer_period); } catch (bad_alloc&) { throw; } if (authm != 0) { rc = authm->start(); if ( rc != 0 ) { throw runtime_error("Could not start the Auth Manager"); } } } // ---- ACL Manager ---- if (tester->need_aclm) { try { aclm = new AclManager(db); } catch (bad_alloc&) { throw; } rc = aclm->start(); if ( rc != 0 ) { throw runtime_error("Could not start the ACL Manager"); } } // ---- Image Manager ---- if (tester->need_imagem) { try { imagem = tester->create_imagem(ipool); } catch (bad_alloc&) { throw; } if (imagem != 0) { rc = imagem->start(); if ( rc != 0 ) { throw runtime_error("Could not start the Image Manager"); } } } // ---- Request Manager ---- if (tester->need_rm) { try { rm = tester->create_rm(log_location + "one_xmlrpc.log"); } catch (bad_alloc&) { NebulaLog::log("ONE", Log::ERROR, "Error starting RM"); throw; } if( rm != 0 ) { rc = rm->start(); } if ( rc != 0 ) { throw runtime_error("Could not start the Request Manager"); } } // ----------------------------------------------------------- // Load mads // ----------------------------------------------------------- sleep(2); if( vmm != 0 ) { vmm->load_mads(0); } if( im != 0 ) { im->load_mads(0); } if( tm != 0 ) { tm->load_mads(0); } if( hm != 0 ) { hm->load_mads(0); } if( imagem != 0 ) { imagem->load_mads(0); } if( authm != 0 ) { authm->load_mads(0); } // ----------------------------------------------------------- // Set DB pointer to null, to prevent its deletion on the destructor // ----------------------------------------------------------- db = 0; }; /* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */ int Nebula::bootstrap() { ostringstream oss; oss << "CREATE TABLE pool_control (tablename VARCHAR(32) PRIMARY KEY, " "last_oid BIGINT UNSIGNED)"; return db->exec(oss); }
[ "shenxyask@gmail.com" ]
shenxyask@gmail.com
8ee3f080f46c16e3a7c4ec32eeb363cadd9315aa
b37ef978997166542b82488589b62787b84d25cf
/examples/components/tft_display/DrawSuperMario/DrawSuperMario.ino
5339a17a5a05d6a54eb536aa0eea15a939aabfe3
[ "MIT" ]
permissive
Edinburgh-College-of-Art/Design-Informatics-Kit
1896e355fd74236aef6bfedf4cbd6b3036bb6967
dcc1ce957106e209bb6515aa04564d676b3f11aa
refs/heads/master
2023-01-08T16:09:52.532764
2020-11-11T14:38:53
2020-11-11T14:38:53
281,622,341
1
0
null
null
null
null
UTF-8
C++
false
false
1,539
ino
/* Draw the original 16 x 16 pixel Super Mario sprite Demonstrating drawing technique and converting colours to 565 colour space. The 1.44" TFT breakout https://www.adafruit.com/product/2088 Wiring: | Nano | 1.44" TFT | | ---- | --------- | | 3.3v | Vin | | GND | GND | | D13 | SCK | | D12 | SO | | D11 | SI | | D10 | TCS | | D9 | RST | | D8 | D/C | */ //------------------------------------------------------------------------------ #include <Adafruit_GFX.h> // Core graphics library #include <Adafruit_ST7735.h> // Hardware-specific library for ST7735 #include <Adafruit_ST7789.h> // Hardware-specific library for ST7789 #include <SPI.h> //------------------------------------------------------------------------------ #define TFT_CS 10 #define TFT_RST 9 #define TFT_DC 8 //------------------------------------------------------------------------------ Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_RST); //------------------------------------------------------------------------------ void setup(void) { //---------------------------------------------------------------------------- tft.initR(INITR_144GREENTAB); // Init ST7735R chip, green tab //---------------------------------------------------------------------------- supermario(); //---------------------------------------------------------------------------- } void loop() { }
[ "matt.hamilton@ed.ac.uk" ]
matt.hamilton@ed.ac.uk
00d86a59eac031d9f873d06a4db967779d002dc1
861cd73505de32dfe5f5eb01f62fd36028837331
/MiniCCompiler/MiniCCompiler/util.cpp
285ada4b2b2c384011e97ff22e49ac13d7616475
[]
no_license
clamli/MiniCCompiler
5919685e12f45414ff1bfdd0529993beeca0f671
aa819e0a7a33a568d50306f209c7b28648640119
refs/heads/master
2021-01-18T15:41:05.045332
2017-08-16T09:37:15
2017-08-16T09:37:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
199
cpp
#include <iostream> #include "util.h" using namespace std; void *checked_malloc(int len) { void *p = malloc(len); if (!p) { fprintf(stderr, "\nRan out of memory!\n"); exit(1); } return p; }
[ "873556816@qq.com" ]
873556816@qq.com
7e566a48d32f24053a484761419a4863ae385a91
0e4c9cf77219cde772f1d21cf30bf5c8e7b9a3b4
/437.PathSumIII/MarkCSIE/PathSumIII/main.cpp
d1d39e8780628e972a6848b7dff8900065a70d18
[]
no_license
LeetCodeBreaker/LeetCode
be25aa3ac2176083440dd27ce15c532e99e85e61
00a5ee2fc9ad38f34bb37ed64820a286057ff728
refs/heads/master
2021-01-17T03:48:36.961178
2020-06-07T15:24:49
2020-06-07T15:24:49
37,640,193
5
2
null
2015-07-15T15:29:21
2015-06-18T05:52:36
C
UTF-8
C++
false
false
1,504
cpp
#include <iostream> // Definition for a binary tree node. struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} }; class Solution { public: int pathSum(const TreeNode* root, const int &sum) { if (root == nullptr) { return 0; } return (root->val == sum) + pathSum(root->left, sum) + pathSum(root->right, sum) + pathSumRoot(root->left, sum - root->val) + pathSumRoot(root->right, sum - root->val); // TODO: O(n) solution ?? } int pathSumRoot(const TreeNode* root, const int &sum) { if (root == nullptr) { return 0; } return (root->val == sum) + pathSumRoot(root->left, sum - root->val) + pathSumRoot(root->right, sum - root->val); } }; int main() { TreeNode* test = new TreeNode(10); test->left = new TreeNode(5); test->right = new TreeNode(-3); test->left->left = new TreeNode(3); test->left->right = new TreeNode(2); test->right->right = new TreeNode(11); test->left->left->left = new TreeNode(3); test->left->left->right = new TreeNode(-2); test->left->right->right = new TreeNode(1); Solution solution; std::cout << solution.pathSum(test, 8) << std::endl; delete test->left->right->right; delete test->left->left->right; delete test->left->left->left; delete test->right->right; delete test->left->right; delete test->left->left; delete test->right; delete test->left; delete test; return 0; }
[ "markcsie@gmail.com" ]
markcsie@gmail.com
1ba9c75171bfa31b26dba5edee8d552f59a5a3c2
0d77a0d7f64033ca5e783e59cae53dda0fe5edf8
/test/Scanf_main.cpp
d19006c934e77de936417893d3d5a5fe38d34164
[]
no_license
wulincong/CPP
6bb4a7c740d145bfcda8668904b217083bc6ce0c
91395d734224a860ea161cff92daf22040f223c4
refs/heads/master
2023-04-28T05:54:21.011192
2023-04-22T01:02:24
2023-04-22T01:02:24
215,239,177
0
0
null
null
null
null
UTF-8
C++
false
false
178
cpp
#include "Scanf.h" int main(int argc, char *argv[]){ char ch; FILE *fp = fopen("Test.txt","r"); Scanf(fp, "%c",&ch); printf("%c",ch); return 0; }
[ "2389170337@qq.com" ]
2389170337@qq.com
5800bcca6f6884b41b392a50d61655212d610b23
b99b0f6d8f188b15f9cb4ae801e033f6bb2c8f91
/Algorithms_C-Plus-Plus_Part2.2/sorting/tree_sort.cpp
ae72ac345cd2f9ffbec86a58ab2a2d1f66aa2a7a
[]
no_license
alvarohenriquecz/Algorithms_C-Plus-Plus_Part2
acec1b61ce714fa6bc4ed674d1746f74c78065e7
f09e87dcfcfe813678b90f708df1845958a16fc8
refs/heads/master
2022-11-14T11:33:46.410786
2020-07-08T08:05:20
2020-07-08T08:05:20
274,775,766
0
0
null
null
null
null
UTF-8
C++
false
false
1,250
cpp
#include <iostream> using namespace std; struct Node { int key; struct Node *left, *right; }; struct Node *newNode(int item) { struct Node *temp = new Node; temp->key = item; temp->left = temp->right = NULL; return temp; } void storeSorted(Node *root, int arr[], int &i) { if (root != NULL) { storeSorted(root->left, arr, i); arr[i++] = root->key; storeSorted(root->right, arr, i); } } Node* insert(Node* node, int key) { if (node == NULL) return newNode(key); if (key < node->key) node->left = insert(node->left, key); else if (key > node->key) node->right = insert(node->right, key); return node; } void treeSort(int arr[], int n) { struct Node *root = NULL; root = insert(root, arr[0]); for (int i = 1; i < n; i++) insert(root, arr[i]); int i = 0; storeSorted(root, arr, i); } int main() { int arr[] = {12, 11, 13, 5, 6, 7}; int n = sizeof(arr)/sizeof(arr[0]); cout << "Given array is "; for (int i = 0; i < n; i++) cout << arr[i] << " "; treeSort(arr, n); cout << "\nSorted array is "; for (int i = 0; i < n; i++) cout << arr[i] << " "; return 0; }
[ "alvarohenriquecz@gmail.com" ]
alvarohenriquecz@gmail.com
00cb46bc97de1d19ecfa25b34949dc7884ca9d6f
3f80cc69cbe4ef9764aa55f7d823e6fc70ed77fe
/ISU/ISeeYou/Aflevering5/Lecture5_exercises/Opg3/MsgQueue.h
b92846f92b4ae89a7f157cd0c7771a741014db60
[]
no_license
Epokhz/ISU_Stuffz
6e2836b92c43140d4545ae07a14f5afb10ffa4ae
ebf3a67342c0f4208f008ac5c56b147df7ab00c3
refs/heads/master
2020-05-25T22:55:12.308441
2019-05-22T12:01:31
2019-05-22T12:01:31
188,024,077
0
0
null
null
null
null
UTF-8
C++
false
false
638
h
#include "Message.h" #include <queue> #include <pthread.h> using namespace std; class MsgQueue { public: MsgQueue (unsigned long maxSize); void send (unsigned long id, Message *msg = NULL); Message *receive(unsigned long id); ~MsgQueue(); private: struct Item { unsigned long int id_; Message *msg_; }; queue<Item*> container_; //Message container unsigned long maxSize_; pthread_mutex_t sendMutex_ = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t receiveMutex_ = PTHREAD_MUTEX_INITIALIZER; pthread_cond_t sendCond_ = PTHREAD_COND_INITIALIZER; pthread_cond_t receiveCond_ = PTHREAD_COND_INITIALIZER; }; //hey
[ "au590540@uni.au.dk" ]
au590540@uni.au.dk
3bfa7af1c3160e63b3cf95caa9d5f8a446a4298a
07ab8948c7dcf9ab6c76d93425ea377ada6be7b1
/BRACU ACM Student Chapter/Online Workshop on Programming Skills DAY 02 ( C++ ) BRACU Number Theory/E.cpp
352257b26972efaaec46794882582fe55d880e97
[]
no_license
tanviranindo/Contest
269ef5a17a64edff2e6ee61df5e5df1296093f51
68cc8070074cc1a076dde9c0454cbcace265d597
refs/heads/master
2023-04-22T11:15:15.711816
2021-04-29T19:27:34
2021-04-29T19:27:34
258,791,450
0
0
null
null
null
null
UTF-8
C++
false
false
424
cpp
#include<bits/stdc++.h> using namespace std; int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); } int main() { int N; while(scanf("%d",&N)!=0) { int G=0; if(N==0) break; for(int i=1; i<N; i++) { for(int j=i+1; j<=N; j++) { G+=gcd(i,j); } } cout << G << endl; } return 0; }
[ "tanviranindo@gmail.com" ]
tanviranindo@gmail.com
1f956bd0962526e7ac39cbb7b2714d3fce757ed0
45f2519ef788a2a88b509d913c8eeafafd249661
/textureBMP.cpp
78c5515999b83a86afc4356fa5c8ba563eee9ad9
[]
no_license
ziniewiczp/OpenGL-Escalator
f14b118bad0980c99c935c15fbc7e88af891c874
7934cb2a75e133421f37814e7c7e8378cbfd6b72
refs/heads/master
2021-01-22T08:27:54.290050
2017-06-20T06:24:33
2017-06-20T06:24:33
92,615,921
0
1
null
null
null
null
WINDOWS-1250
C++
false
false
4,346
cpp
/* BMP texture loader © Keith O'Conor 2005 keith.oconor @ {cs.tcd.ie, gmail.com} */ #include "textureBMP.h" #include "glut.h" textureBMP::textureBMP(const char *filename, const int textureId, const bool stereoMode){ byte *fileData; BITMAPFILEHEADER fileHeader; BITMAPINFOHEADER infoHeader; // Open file HANDLE hTextureFile = CreateFile(filename, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); if(hTextureFile == INVALID_HANDLE_VALUE){ std::cout<<"[BMP] ERROR: Could not open '"<<filename<<"'"<<std::endl; return; } if(GetFileSize(hTextureFile,NULL) == 0){ std::cout<<"[BMP] ERROR: Texture '"<<filename<<"' is empty"<<std::endl; CloseHandle(hTextureFile); return; } // Create file mapping HANDLE hTextureFileMapping = CreateFileMapping(hTextureFile, NULL, PAGE_READONLY, 0, 0, NULL); if(hTextureFileMapping == NULL){ std::cout<<"[TGA] ERROR: Could not map '"<<filename<<"' in memory"<<std::endl; CloseHandle(hTextureFile); return; } fileData = (byte*)MapViewOfFile(hTextureFileMapping, FILE_MAP_READ, 0, 0, 0); // Read BMP header memcpy(&fileHeader, fileData, sizeof(fileHeader)); memcpy(&infoHeader, fileData+sizeof(fileHeader), sizeof(infoHeader)); m_width = infoHeader.biWidth; m_height = infoHeader.biHeight; m_bpp = infoHeader.biBitCount; // We only support uncompressed 24 or 32 bits per pixel BMPs if(infoHeader.biCompression != BI_RGB || fileHeader.bfType != 19778){ std::cout<<"[BMP] ERROR: '"<<filename<<"' is an texture invalid format\n[BMP] ERROR: It should be an uncompressed 24/32bpp BMP"<<std::endl; UnmapViewOfFile(fileData); CloseHandle(hTextureFileMapping); CloseHandle(hTextureFile); return; } if(m_bpp != 32 && m_bpp != 24){ std::cout<<"[BMP] ERROR: Invalid texture color depth, '"<<filename<<"' must be uncompressed 24/32bpp BMP"<<std::endl; UnmapViewOfFile(fileData); CloseHandle(hTextureFileMapping); CloseHandle(hTextureFile); return; } // Determine format int fileFormat, internalFormat; switch(m_bpp){ case 24:fileFormat = GL_BGR_EXT; internalFormat = GL_RGB; break; case 32:fileFormat = GL_BGRA_EXT; internalFormat = GL_RGBA; break; default: std::cout<<"[BMP] ERROR: Invalid texture color depth, '"<<filename<<"' must be uncompressed 24/32bpp BMP"<<std::endl; UnmapViewOfFile(fileData); CloseHandle(hTextureFileMapping); CloseHandle(hTextureFile); return; break; } if(stereoMode) glutSetWindow(1); // Bind texture ID to load glBindTexture(GL_TEXTURE_2D, textureId); // Set texture parameters glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR_MIPMAP_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR); glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); // Upload texture to card with bound texture ID gluBuild2DMipmaps(GL_TEXTURE_2D, internalFormat, m_width, m_height, fileFormat, GL_UNSIGNED_BYTE, &fileData[fileHeader.bfOffBits]); if (stereoMode) // rozpakowanie do obydwu kontekstów, gdy stereo { glutSetWindow(2); glBindTexture(GL_TEXTURE_2D, textureId); // Set texture parameters glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR_MIPMAP_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR); glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); // Upload texture to card with bound texture ID gluBuild2DMipmaps(GL_TEXTURE_2D, internalFormat, m_width, m_height, fileFormat, GL_UNSIGNED_BYTE, &fileData[fileHeader.bfOffBits]); } // Texture's uploaded, don't need data any more UnmapViewOfFile(fileData); CloseHandle(hTextureFileMapping); CloseHandle(hTextureFile); std::cout<<"[BMP] Texture '"<<filename<<"' loaded"<<std::endl; }
[ "ziniewicz.p@gmail.com" ]
ziniewicz.p@gmail.com
006ee2413eea0048e7c2c2f6503e50c513d8612b
125aadd932577dea65634b86692769faca9ef97a
/thirdparty/ezEngine/Foundation/Reflection/Implementation/ReflectionUtils.cpp
19325f07aeeae5bccecdd6da9cdd710628375238
[]
no_license
Manuzor/LispCpp
f4a5904c0d528fee75c79d1703f71a58aed94a1e
d51d5a6b0356bb213d9994c8b782e00799fc025d
refs/heads/master
2021-01-25T09:59:27.752495
2014-10-28T22:51:11
2014-10-28T22:54:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,253
cpp
#include <Foundation/PCH.h> #include <Foundation/Reflection/ReflectionUtils.h> namespace { struct GetValueFunc { template <typename T> EZ_FORCE_INLINE void operator()() { m_Result = static_cast<const ezTypedMemberProperty<T>*>(m_pProp)->GetValue(m_pObject); } const ezAbstractMemberProperty* m_pProp; const void* m_pObject; ezVariant m_Result; }; struct SetValueFunc { template <typename T> EZ_FORCE_INLINE void operator()() { static_cast<ezTypedMemberProperty<T>*>(m_pProp)->SetValue(m_pObject, m_pValue->Get<T>()); } ezAbstractMemberProperty* m_pProp; void* m_pObject; const ezVariant* m_pValue; }; } ezVariant ezReflectionUtils::GetMemberPropertyValue(const ezAbstractMemberProperty* pProp, const void* pObject) { if (pProp != nullptr) { GetValueFunc func; func.m_pProp = pProp; func.m_pObject = pObject; ezVariant::DispatchTo(func, pProp->GetPropertyType()->GetVariantType()); return func.m_Result; } return ezVariant(); } void ezReflectionUtils::SetMemberPropertyValue(ezAbstractMemberProperty* pProp, void* pObject, const ezVariant& value) { if (pProp != nullptr) { SetValueFunc func; func.m_pProp = pProp; func.m_pObject = pObject; func.m_pValue = &value; ezVariant::DispatchTo(func, pProp->GetPropertyType()->GetVariantType()); } } ezAbstractMemberProperty* ezReflectionUtils::GetMemberProperty(const ezRTTI* pRtti, ezUInt32 uiPropertyIndex) { if (pRtti == nullptr) return nullptr; const ezArrayPtr<ezAbstractProperty*>& props = pRtti->GetProperties(); if (uiPropertyIndex < props.GetCount()) { ezAbstractProperty* pProp = props[uiPropertyIndex]; if (pProp->GetCategory() == ezAbstractProperty::Member) return static_cast<ezAbstractMemberProperty*>(pProp); } return nullptr; } ezAbstractMemberProperty* ezReflectionUtils::GetMemberProperty(const ezRTTI* pRtti, const char* szPropertyName) { if (pRtti == nullptr) return nullptr; if (ezAbstractProperty* pProp = pRtti->FindPropertyByName(szPropertyName)) { if (pProp->GetCategory() == ezAbstractProperty::Member) return static_cast<ezAbstractMemberProperty*>(pProp); } return nullptr; }
[ "mjmaier@gmx.de" ]
mjmaier@gmx.de
f1349227ee496ad519179bb705d0d88705cfe6e5
38c10c01007624cd2056884f25e0d6ab85442194
/third_party/WebKit/Source/core/paint/ScrollbarPainter.h
e0e619a9c681f0c0614ddaf8bd1fbadd710f5172
[ "BSD-3-Clause", "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "MIT", "Apache-2.0" ]
permissive
zenoalbisser/chromium
6ecf37b6c030c84f1b26282bc4ef95769c62a9b2
e71f21b9b4b9b839f5093301974a45545dad2691
refs/heads/master
2022-12-25T14:23:18.568575
2016-07-14T21:49:52
2016-07-23T08:02:51
63,980,627
0
2
BSD-3-Clause
2022-12-12T12:43:41
2016-07-22T20:14:04
null
UTF-8
C++
false
false
980
h
// Copyright 2014 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 ScrollbarPainter_h #define ScrollbarPainter_h #include "platform/heap/Handle.h" #include "platform/scroll/Scrollbar.h" namespace blink { class GraphicsContext; class IntRect; class LayoutPoint; class LayoutRect; class LayoutScrollbar; class LayoutScrollbarPart; class ScrollbarPainter { STACK_ALLOCATED(); WTF_MAKE_NONCOPYABLE(ScrollbarPainter); public: explicit ScrollbarPainter(const LayoutScrollbar& layoutScrollbar) : m_layoutScrollbar(&layoutScrollbar) { } void paintPart(GraphicsContext*, ScrollbarPart, const IntRect&); static void paintIntoRect(const LayoutScrollbarPart&, GraphicsContext*, const LayoutPoint& paintOffset, const LayoutRect&); private: RawPtrWillBeMember<const LayoutScrollbar> m_layoutScrollbar; }; } // namespace blink #endif // ScrollbarPainter_h
[ "zeno.albisser@hemispherian.com" ]
zeno.albisser@hemispherian.com
c72b4012e80a65b4f1747b396ef9c624dcc84d32
087a0db88dee2c805d7999d43683b3e63e6623b5
/Source/AnimalEffect/Environment/Tree.h
82c2a18539619447d1b13d3ba934690fc7d46b0c
[]
no_license
Cobryis/AnimalEffect
5bd061e87f93f2e74b489364e5d7869166c8c54b
6ab38abe62c32fb8efe2fb6a63a973a1a17ee960
refs/heads/master
2023-01-05T05:16:22.550053
2020-10-17T16:15:48
2020-10-17T16:15:48
268,434,064
0
0
null
null
null
null
UTF-8
C++
false
false
817
h
// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "Data/AEDataAsset.h" #include "WorldGrid/WorldGridInterface.h" #include "GameFramework/Actor.h" #include "Tree.generated.h" UCLASS() class ANIMALEFFECT_API UTreeAsset : public UAEMetaAsset , public IWorldGridInterface { GENERATED_BODY() UPROPERTY(EditDefaultsOnly, Category = "World Grid", meta = (ClampMin = 1, ClampMax = 2)) int32 Size = 1; public: // BEGIN IWorldGridInterface FGridVector GetWorldGridSize() const { return FGridVector(Size); } // END IWorldGridInterface }; UCLASS() class ANIMALEFFECT_API ATree : public AActor { GENERATED_BODY() public: ATree(); void OnAxeHit(APawn* HitInstigator); private: UPROPERTY(BlueprintReadOnly, Category = "Health", meta = (AllowPrivateAccess = true)) int32 Health; };
[ "cobryis@gmail.com" ]
cobryis@gmail.com
10b58fd0526b4f042758d76f78318c6c90c8fc89
4e2d90ef3b17872ea3f4fc16832fb8815ffef985
/LongestPelindromeSubstring.cpp
7c1ce9177d02216663e41dfc75ea21e507a8c2ea
[]
no_license
shyam2797/DynamicProgramming
16230065535dde0d86cb8eb078248b1ae03cdb7e
8a7d4b2dde3c8c80c9e54f791c057a822fa74de1
refs/heads/master
2022-12-11T10:00:48.295336
2020-09-05T17:32:57
2020-09-05T17:32:57
290,374,350
0
0
null
null
null
null
UTF-8
C++
false
false
785
cpp
#include<bits/stdc++.h> using namespace std; int main() { int arr[]= {5,3,2,6,4,4,6,2,1,2,1,2,1,2,1,2,1,2}; int Size=sizeof(arr)/sizeof(arr[0]); int S[Size][Size],Max=1; for(int i=0; i<Size; i++) { S[i][i]=1; } for(int i=0; i<Size-1; i++) { if(arr[i]=arr[i+1]) { S[i][i+1]=1; Max=2; } else { S[i][i+1]=0; } } for(int k=2; k<Size; k++) { for(int i=0; i<Size-k; i++) { int j=i+k; if(arr[i]==arr[j] && S[i+1][j-1]) { S[i][j]=1; Max=k+1; } else { S[i][j]=0; } } } cout<<Max<<endl; return 0; }
[ "shyamsaini2797@example.com" ]
shyamsaini2797@example.com
3ce79245367be2a20d27aedcc22a81c3e7de8cb5
03b5b626962b6c62fc3215154b44bbc663a44cf6
/src/keywords/_endif.h
889a4c407335d2c144341ffddf086a23698f6eb7
[]
no_license
haochenprophet/iwant
8b1f9df8ee428148549253ce1c5d821ece0a4b4c
1c9bd95280216ee8cd7892a10a7355f03d77d340
refs/heads/master
2023-06-09T11:10:27.232304
2023-05-31T02:41:18
2023-05-31T02:41:18
67,756,957
17
5
null
2018-08-11T16:37:37
2016-09-09T02:08:46
C++
UTF-8
C++
false
false
208
h
#ifndef _ENDIF_H #define _ENDIF_H #include "../object.h" namespace n__endif { class C_endif :public Object { public: C_endif(); int my_init(void *p=nullptr); }; } using namespace n__endif; #endif
[ "hao__chen@sina.com" ]
hao__chen@sina.com
3c0106f59efb88c2fb511870d879ae4b04946f34
9f170204f6976fe59d9ee74aa78f62b10663c051
/third_party/sputnik/sputnik/depthwise/filter_tile.h
e015b3c75925f56f64a90bafcd977fd0ce013d46
[ "Apache-2.0", "BSD-2-Clause", "BSD-3-Clause" ]
permissive
hercules261188/xformers
04132b4c94bfb59ea9917ccf29800a049f924da9
71bab94cb954e6e291ca93d3bce5dffadab4286d
refs/heads/main
2023-09-06T02:51:47.086611
2021-11-24T16:36:22
2021-11-24T16:36:22
431,593,450
1
0
NOASSERTION
2021-11-24T18:43:24
2021-11-24T18:43:23
null
UTF-8
C++
false
false
2,665
h
// Copyright 2020 The Sputnik Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef THIRD_PARTY_SPUTNIK_DEPTHWISE_FILTER_TILE_H_ #define THIRD_PARTY_SPUTNIK_DEPTHWISE_FILTER_TILE_H_ #include "sputnik/common.h" #include "sputnik/load_store.h" #include "sputnik/tiling_utils.h" namespace sputnik { template <int kKernelSize, int kBlockDimX> struct FilterTile { // /// Static members. // // The number of weights in each filter. static constexpr int kNumWeights = kKernelSize * kKernelSize; // /// Member variables. // const float* filters; float* smem; float* filter_fragment; __device__ __forceinline__ FilterTile(int filter_offset, const float* __restrict__ filters_, float* __restrict__ smem_, float* __restrict__ filter_fragment_) : filters(filters_ + filter_offset), smem(smem_), filter_fragment(filter_fragment_) {} __device__ __forceinline__ void Load() { // TODO(tgale): This should always be true. We could get rid of // this an just have the compiler unroll a loop. const int thread_idx = threadIdx.x + threadIdx.y * kBlockDimX; if (thread_idx < kNumWeights) { Store(sputnik::Load(filters + thread_idx), smem + thread_idx); } __syncthreads(); // Load all of the weights. We use 4-wide vector loads. This // loads a few more values than we need, but it doesn't matter // and the register allocator should just reuse those registers // right after we store to them. constexpr int kValuesPerLoad = 4; constexpr int kSharedFilterLoads = RoundUpTo(kNumWeights, kValuesPerLoad) / kValuesPerLoad; auto vector_smem = OffsetCast<const float4>(smem, 0); auto vector_filter_fragment = OffsetCast<float4>(filter_fragment, 0); #pragma unroll for (int load_idx = 0; load_idx < kSharedFilterLoads; ++load_idx) { Store(vector_smem[load_idx], vector_filter_fragment); vector_filter_fragment++; } } }; } // namespace sputnik #endif // THIRD_PARTY_SPUTNIK_DEPTHWISE_FILTER_TILE_H_
[ "benjamin.lefaudeux@gmail.com" ]
benjamin.lefaudeux@gmail.com
826e231707c56fc367b5f7fa22126bdf1e55ed9b
c762444f01a7d53361b2f8d22d8845b0a802d8d9
/vtr@2780988/blifexplorer/src/clockconfig.cpp
b8a040d328c80ad344ca6b1b711f6ad81eb34f66
[ "LicenseRef-scancode-unknown-license-reference", "MIT", "MIT-Modern-Variant" ]
permissive
xibo-sun/VTR_with_Yosys
ef12ff0ee649e9376063a011cbcdf1208ee02094
2d8ef88fa8e6c9c66489e81f50f37dede6b1bb30
refs/heads/master
2023-02-23T10:27:58.243842
2023-02-11T00:51:35
2023-02-11T00:51:35
227,647,186
0
1
MIT
2023-02-11T00:51:37
2019-12-12T16:15:57
C
UTF-8
C++
false
false
1,201
cpp
#include "clockconfig.h" #include "ui_clockconfig.h" ClockConfig::ClockConfig(QWidget *parent) : QDialog(parent), ui(new Ui::ClockConfig) { ui->setupUi(this); } ClockConfig::~ClockConfig() { delete ui; } void ClockConfig::on_buttonBox_accepted() { //set the ratios in Odin. :) int i = 0; for(i = 0;i<clocks.length();i++){ QString ratText = ui->tableWidget->item(i,1)->text(); int rat = ratText.toInt(); set_clock_ratio(rat, clocks.at(i)->getOdinRef()); } } void ClockConfig::on_buttonBox_rejected() { // do nothing for now. } void ClockConfig::passClockList(QList<LogicUnit *> clocklist) { clocks = clocklist; int i = 0; ui->tableWidget->setRowCount(clocklist.length()); for(i = 0;i<clocklist.length();i++){ int rat = get_clock_ratio(clocks.at(i)->getOdinRef()); QString ratString; ratString.setNum(rat); QTableWidgetItem *clockName = new QTableWidgetItem(clocks.at(i)->getName()); QTableWidgetItem *clockRatio = new QTableWidgetItem(ratString); ui->tableWidget->setItem(i,0,clockName); ui->tableWidget->setItem(i,1,clockRatio); } }
[ "sun@localhost.localdomain" ]
sun@localhost.localdomain
0511de1b4ad71bdf71e1966dfd12621b2f8ccc7e
55f5d42e9e2cbfb2c3d41c1dd0050fbb6ad13781
/get_Serial_32_demo/get_Serial_32_demo.ino
04890a843610ed568465dff4b39384c095029649
[]
no_license
juchani/respaldp
97c2f4555134c376f132306dbe846adc7e7c0722
0e46792a35d076c45562e0b58cbaec3ae08cd4f5
refs/heads/master
2021-09-01T21:52:58.353039
2021-08-03T15:26:27
2021-08-03T15:26:27
134,037,744
0
0
null
2018-05-19T06:55:22
2018-05-19T06:51:54
null
UTF-8
C++
false
false
1,382
ino
#include <WiFi.h> #include <HTTPClient.h> #include <SoftwareSerial.h> SoftwareSerial rs232(26, 27);//rx-tx const char* ssid = "juchani";/////red const char* password = "12345678";//////////pasword String url = "http://clinica.solucionespymes.com/apic/savedata?list=FREND"; unsigned long lastTime = 0; unsigned long timerDelay = 5000; String texto = "", E; String item_code, test_result, test_unit, ref_max, ref_min, date_time, ver = "1.0.0.0"; String total[8] = {E, item_code, test_result, test_unit, ref_max, ref_min, date_time, ver}; int buzzer = 12, led = 13; int vacio = 0, limite = 0; String fecha; bool error = 0; void setup() { Serial.begin(9600); rs232.begin(9600); WiFi.begin(ssid, password); Serial.println("Connecting"); while (WiFi.status() != WL_CONNECTED) { delay(500); Serial.print("."); } Serial.println(""); Serial.print("Connected to WiFi network with IP Address: "); Serial.println(WiFi.localIP()); Serial.println("Timer set to 5 seconds (timerDelay variable), it will take 5 seconds before publishing the first reading."); pinMode(buzzer, OUTPUT); pinMode(led, OUTPUT); delay(10); digitalWrite(led, 0); } void loop() { updateSerial(); Serial.println(rs232.available()); delay(10); } String li(bool n, String l) { l.trim(); if (n == 0) { l = l + "|"; } else { l = "|" + l + "|"; } return l; }
[ "victorfrancojuchani@gmail.com" ]
victorfrancojuchani@gmail.com
b1dbac5e6527ec4532bccdf2dfed128f70d7f743
44a676b33c39798820bc1a6819b6cd6a156bf108
/Bit Manip Practice/min-bit-operations.cpp
f073ea1fd844aa1da3f3dffdb646f72462b7e204
[]
no_license
Mayank-MP05/CPP-Codes-Contests
9111a02221ac64031f5516c88c36df039975f073
f5113b4a84517df7ecce010da98f12aaf91e8259
refs/heads/main
2023-04-19T07:09:41.961955
2021-05-07T11:47:07
2021-05-07T11:47:07
354,313,141
0
0
null
null
null
null
UTF-8
C++
false
false
1,929
cpp
#include<bits/stdc++.h> using namespace std; #define fo(i,n) for(i=0;i<n;i++) #define ll long long #define deb(x) if(SHOW) cout << #x << "=" << x << endl #define deb2(x, y) if(SHOW) cout << #x << "=" << x << "," << #y << "=" << y << endl #define debArr(a,n) if(SHOW) for(int z=0;z<n;z++){ cout<<a[z]<<" "; } cout<<endl; #define deb2DArr(a,m,n) if(SHOW) for(int z=0;z<m;z++){for(int y=0;y<n;y++){ cout<<a[z][y]<<" "; } cout<<endl;} #define deb3(x, y, z) if(SHOW) cout<<#x<<":" <<x<<" | "<<#y<<": "<<y<<" |\ "<<#z<<": "<<z<<endl #define deb4(a, b, c, d) if(SHOW) cout<<#a<<": "<<a<<" | "<<#b<<": "<<b<<" |\ "<<#c<<": "<<c<<" | "<<#d<<": "<<d<<endl #define deb5(a, b, c, d, e) if(SHOW) cout<<#a<<": "<<a<<" | "<<#b<<": "<<b<<" |\ "<<#c<<": "<<c<<" | "<<#d<<": "<<d<<" | "<<#e<< ": "<<e<<endl #define deb6(a, b, c, d, e, f) if(SHOW) cout<<#a<<": "<<a<<" | "<<#b<<": "<<b<<" | "<<#c<<": "<< c<<" |\ "<<#d<<": "<<d<<" | "<<#e<< ": "<<e<<" | "<<#f<<": "<<f<<endl #define line if(SHOW) cout<<"\n__________________________________________\n"; #define pb push_back #define mp make_pair #define F first #define S second #define all(x) x.begin(), x.end() #define clr(x) memset(x, 0, sizeof(x)) #define sortall(x) sort(all(x)) #define tr(it, a) for(auto it = a.begin(); it != a.end(); it++) typedef pair<int, int> pii; typedef pair<ll, ll> pl; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<pii> vpii; typedef vector<pl> vpl; typedef vector<vi> vvi; typedef vector<vl> vvl; #define SHOW false void solve() { ll i, j, n, m, k; cin >> n >> m; vl A(n), B(m); fo(i, n) { cin >> A[i]; } fo(i, m) { cin >> B[i]; } } int main() { #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif // ONLINE_JUDGE ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); int t = 1; // cin >> t; while (t--) { solve(); line; } return 0; }
[ "mayank5pande@gmail.com" ]
mayank5pande@gmail.com
3f19238d0ea1c69840cd49a6c9612150fe7c772d
5bb2d3364a529f7b15c97d2f3aa175e77af3c695
/cf318A.cpp
f37893a916d0e8cc3b4fdc17272e9cda01f2c0ce
[]
no_license
suraj021/Codeforces-Solutions
c589cf3ff72aa5297d06e854c73aa2d587ed4257
7d669635778700c4772674865c7b7560abe2cf89
refs/heads/master
2021-01-17T02:22:27.159917
2018-06-23T15:12:05
2018-06-23T15:12:05
37,797,992
1
0
null
null
null
null
UTF-8
C++
false
false
323
cpp
#include <bits/stdc++.h> using namespace std; int main(){ long long int n, k, ans; cin >> n >> k;; if( n%2== 0 ){ if( k <= n/2 ){ ans= 2*k - 1; }else{ k-= n/2; ans= 2*k; } }else{ if( k<= n/2 + 1 ){ ans= 2*k - 1; }else{ k= k- n/2 - 1; ans= 2*k; } } cout << ans << endl; }
[ "surajbora021@gmail.com" ]
surajbora021@gmail.com
42c500f32900db9b4a13cc8baeacf7ae29bbe3f5
fed9f14edb87cd975ac946e01e063df492a9929a
/src/hhkb2020/A.cpp
dcdbc609bb0695788e362c8ec1702dc5743f0bcd
[]
no_license
n-inja/kyoupro
ba91dd582488b2a8c7222242801cf3115ed7fd10
44c5a888984764b98e105780ca57d522a47d832d
refs/heads/master
2021-01-01T06:52:59.655419
2020-10-17T13:28:35
2020-10-17T13:28:35
97,537,227
0
0
null
null
null
null
UTF-8
C++
false
false
421
cpp
#include <bits/stdc++.h> using namespace std; using ll = long long; using vi = vector<int>; using vll = vector<ll>; using vvi = vector<vector<int>>; using vvl = vector<vector<ll>>; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); string s, t; cin >> s >> t; if (s == "Y") { for (char c : t) cout << (char) (c + 'A' - 'a'); cout << endl; } else { cout << t << endl; } return 0; }
[ "mail@n-inja.me" ]
mail@n-inja.me
3346858788df68ac393ec145d83ec6a9474e0e44
8ed64d957b1999a8b6b1aba7c5bea22a5c767d1a
/riegeli/chunk_encoding/simple_decoder.cc
42f11fe3f94ac0789d8c3d04a56d4d14bf72bb44
[ "Apache-2.0" ]
permissive
Bingo20/riegeli
4b14b1793136ffdcb0d8682e964c496005f8f9fc
2f2f1c72c30267cd2386607059f54b5214219c4c
refs/heads/master
2021-04-16T14:30:01.324619
2020-03-21T11:07:13
2020-03-21T11:12:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,994
cc
// Copyright 2017 Google LLC // // 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 "riegeli/chunk_encoding/simple_decoder.h" #include <stddef.h> #include <stdint.h> #include <limits> #include <tuple> #include <vector> #include "absl/base/optimization.h" #include "absl/status/status.h" #include "absl/types/optional.h" #include "riegeli/base/base.h" #include "riegeli/base/object.h" #include "riegeli/bytes/limiting_reader.h" #include "riegeli/bytes/reader.h" #include "riegeli/bytes/reader_utils.h" #include "riegeli/bytes/varint_reading.h" #include "riegeli/chunk_encoding/constants.h" #include "riegeli/chunk_encoding/decompressor.h" namespace riegeli { void SimpleDecoder::Done() { if (ABSL_PREDICT_FALSE(!values_decompressor_.Close())) { Fail(values_decompressor_); } } bool SimpleDecoder::Decode(Reader* src, uint64_t num_records, uint64_t decoded_data_size, std::vector<size_t>* limits) { Object::Reset(kInitiallyOpen); if (ABSL_PREDICT_FALSE(num_records > limits->max_size())) { return Fail(absl::ResourceExhaustedError("Too many records")); } if (ABSL_PREDICT_FALSE(decoded_data_size > std::numeric_limits<size_t>::max())) { return Fail(absl::ResourceExhaustedError("Records too large")); } const absl::optional<uint8_t> compression_type_byte = ReadByte(src); if (ABSL_PREDICT_FALSE(compression_type_byte == absl::nullopt)) { src->Fail(absl::DataLossError("Reading compression type failed")); return Fail(*src); } const CompressionType compression_type = static_cast<CompressionType>(*compression_type_byte); const absl::optional<uint64_t> sizes_size = ReadVarint64(src); if (ABSL_PREDICT_FALSE(sizes_size == absl::nullopt)) { src->Fail(absl::DataLossError("Reading size of sizes failed")); return Fail(*src); } if (ABSL_PREDICT_FALSE(*sizes_size > std::numeric_limits<Position>::max() - src->pos())) { return Fail(absl::ResourceExhaustedError("Size of sizes too large")); } internal::Decompressor<LimitingReader<>> sizes_decompressor( std::forward_as_tuple(src, src->pos() + *sizes_size), compression_type); if (ABSL_PREDICT_FALSE(!sizes_decompressor.healthy())) { return Fail(sizes_decompressor); } limits->clear(); size_t limit = 0; while (limits->size() != num_records) { const absl::optional<uint64_t> size = ReadVarint64(sizes_decompressor.reader()); if (ABSL_PREDICT_FALSE(size == absl::nullopt)) { sizes_decompressor.reader()->Fail( absl::DataLossError("Reading record size failed")); return Fail(*sizes_decompressor.reader()); } if (ABSL_PREDICT_FALSE(*size > decoded_data_size - limit)) { return Fail( absl::DataLossError("Decoded data size larger than expected")); } limit += IntCast<size_t>(*size); limits->push_back(limit); } if (ABSL_PREDICT_FALSE(!sizes_decompressor.VerifyEndAndClose())) { return Fail(sizes_decompressor); } if (ABSL_PREDICT_FALSE(limit != decoded_data_size)) { return Fail(absl::DataLossError("Decoded data size smaller than expected")); } values_decompressor_.Reset(src, compression_type); if (ABSL_PREDICT_FALSE(!values_decompressor_.healthy())) { return Fail(values_decompressor_); } return true; } bool SimpleDecoder::VerifyEndAndClose() { values_decompressor_.VerifyEnd(); return Close(); } } // namespace riegeli
[ "qrczak@google.com" ]
qrczak@google.com
b65470450e5d245292b8f6429f7efe601d6aa80a
883ab57c7fc417e89d2c1dc977f29d0d7c4c94fa
/SDL_Collide.cpp
45be1039589308c358bb176946327d999784c8c0
[]
no_license
charnet3d/ENSAS-Fighter
40a2e92c2591cc8475c3920edcbd0b0f84f6d390
a15a821035342b2691b2d3d956bd6d8625011897
refs/heads/master
2020-05-25T17:26:28.820200
2016-07-11T13:47:55
2016-07-11T13:47:55
17,574,562
1
0
null
null
null
null
ISO-8859-1
C++
false
false
7,337
cpp
/* SDL_Collide: A 2D collision detection library for use with SDL MIT License Copyright 2005-2006 SDL_collide Team http://sdl-collide.sourceforge.net All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Amir Taaki genjix@gmail.com Rob Loach http://robloach.net */ #include "SDL_collide.h" /*if this header is not supported on your system comment out the assert function call in SDL_TransparentPixel*/ #include "assert.h" /*returns maximum or minimum of number*/ #define SDL_COLLIDE_MAX(a,b) ((a > b) ? a : b) #define SDL_COLLIDE_MIN(a,b) ((a < b) ? a : b) /* SDL surface test if offset (u,v) is a transparent pixel */ int SDL_CollideTransparentPixel(SDL_Surface *surface , int u , int v) { if(SDL_MUSTLOCK(surface)) SDL_LockSurface(surface); /*assert that (u,v) offsets lie within surface*/ assert((u < surface->w) && (v < surface->h)); int bpp = surface->format->BytesPerPixel; /*here p is the address to the pixel we want to retrieve*/ Uint8 *p = (Uint8 *)surface->pixels + v * surface->pitch + u * bpp; Uint32 pixelcolor; bool ret = false; switch(bpp) { case(1): pixelcolor = *p; ret = (pixelcolor == surface->format->colorkey); break; case(2): pixelcolor = *(Uint16 *)p; ret = (pixelcolor == surface->format->colorkey); break; case(3): if(SDL_BYTEORDER == SDL_BIG_ENDIAN) pixelcolor = p[0] << 16 | p[1] << 8 | p[2]; else pixelcolor = p[0] | p[1] << 8 | p[2] << 16; ret = (pixelcolor == surface->format->colorkey); break; case(4): pixelcolor = *(Uint32 *)p; // ce dernier cas gère la transparence quelque soit son type // soit par ColorKey ou bien par pixel (dernier octet de chaque pixel qui représente la valeur Alpha) ret = (surface->format->colorkey >> 24 == 255)?(pixelcolor == surface->format->colorkey):(pixelcolor >> 24 == 0); break; } if(SDL_MUSTLOCK(surface)) SDL_UnlockSurface(surface); return ret; } /* SDL pixel perfect collision test */ int SDL_CollidePixel(SDL_Surface *as , int ax , int ay , SDL_Surface *bs , int bx , int by, int skip) { /*a - bottom right co-ordinates in world space*/ int ax1 = ax + as->w - 1; int ay1 = ay + as->h - 1; /*b - bottom right co-ordinates in world space*/ int bx1 = bx + bs->w - 1; int by1 = by + bs->h - 1; /*check if bounding boxes intersect*/ if (bx1 < ax) return 0; if (ax1 < bx) return 0; if (by1 < ay) return 0; if (ay1 < by) return 0; /*Now lets make the bouding box for which we check for a pixel collision*/ /*To get the bounding box we do Ax1,Ay1______________ | | | | | | | Bx1,By1____________ | | | | | | | | |________|_______| | | Ax2,Ay2 | | | | | |___________Bx2,By2 To find that overlap we find the biggest left hand cordinate AND the smallest right hand co-ordinate To find it for y we do the biggest top y value AND the smallest bottom y value Therefore the overlap here is Bx1,By1 --> Ax2,Ay2 Remember Ax2 = Ax1 + SA->w Bx2 = Bx1 + SB->w Ay2 = Ay1 + SA->h By2 = By1 + SB->h */ /*now we loop round every pixel in area of intersection if 2 pixels alpha values on 2 surfaces at the same place != 0 then we have a collision*/ int xstart = SDL_COLLIDE_MAX(ax,bx); int xend = SDL_COLLIDE_MIN(ax1,bx1); int ystart = SDL_COLLIDE_MAX(ay,by); int yend = SDL_COLLIDE_MIN(ay1,by1); for(int y = ystart ; y <= yend ; y += skip) { for(int x = xstart ; x <= xend ; x += skip) { /*compute offsets for surface before pass to TransparentPixel test*/ if(!SDL_CollideTransparentPixel(as , x-ax , y-ay) && !SDL_CollideTransparentPixel(bs , x-bx , y-by)) return 1; } } return 0; } /* SDL bounding box collision test */ int SDL_CollideBoundingBox(SDL_Surface *sa , int ax , int ay , SDL_Surface *sb , int bx , int by) { if(bx + sb->w < ax) return 0; //just checking if their if(bx > ax + sa->w) return 0; //bounding boxes even touch if(by + sb->h < ay) return 0; if(by > ay + sa->h) return 0; return 1; //bounding boxes intersect } /* SDL bounding box collision tests (works on SDL_Rect's) */ int SDL_CollideBoundingBox(SDL_Rect a , SDL_Rect b) { if(b.x + b.w < a.x) return 0; //just checking if their if(b.x > a.x + a.w) return 0; //bounding boxes even touch if(b.y + b.h < a.y) return 0; if(b.y > a.y + a.h) return 0; return 1; //bounding boxes intersect } /* tests whether 2 circles intersect circle1 : centre (x1,y1) with radius r1 circle2 : centre (x2,y2) with radius r2 (allow distance between circles of offset) */ int SDL_CollideBoundingCircle(int x1 , int y1 , int r1 , int x2 , int y2 , int r2 , int offset) { int xdiff = x2 - x1; // x plane difference int ydiff = y2 - y1; // y plane difference /* distance between the circles centres squared */ int dcentre_sq = (ydiff*ydiff) + (xdiff*xdiff); /* calculate sum of radiuses squared */ int r_sum_sq = r1 + r2; // square on seperate line, so r_sum_sq *= r_sum_sq; // dont recompute r1 + r2 return (dcentre_sq - r_sum_sq <= (offset*offset)); } /* a circle intersection detection algorithm that will use the position of the centre of the surface as the centre of the circle and approximate the radius using the width and height of the surface (for example a rect of 4x6 would have r = 2.5). */ int SDL_CollideBoundingCircle(SDL_Surface *a , int x1 , int y1 , SDL_Surface *b , int x2 , int y2 , int offset) { /* if radius is not specified we approximate them using SDL_Surface's width and height average and divide by 2*/ int r1 = (a->w + a->h) / 4; // same as / 2) / 2; int r2 = (b->w + b->h) / 4; x1 += a->w / 2; // offset x and y y1 += a->h / 2; // co-ordinates into // centre of image x2 += b->w / 2; y2 += b->h / 2; return SDL_CollideBoundingCircle(x1,y1,r1,x2,y2,r2,offset); }
[ "charnet3d@gmail.com" ]
charnet3d@gmail.com
f8eadff15cd63296cd1ba6b8e5fd626989aa42e5
1d17c354e4f0c60a40b0d9a180d6c55df7d11e38
/jni/libutils/jni/StreamingZipInflater.cpp
8730878ad4b4f7fa21668bc07d12ae4f7d22b1dd
[ "Apache-2.0" ]
permissive
goodev/droidide
f217efc6754f510049a1976d4418f33a31babf89
d23e6fb4add430c4b81e31697f011878dec64dde
refs/heads/master
2020-04-12T18:59:59.956614
2014-10-03T11:55:28
2014-10-03T11:55:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,288
cpp
/* * Copyright (C) 2010 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_NDEBUG 1 #define LOG_TAG "szipinf" #include <utils/Log.h> #include <utils/FileMap.h> #include <utils/StreamingZipInflater.h> #include <string.h> #include <stddef.h> #include <assert.h> static inline size_t min_of(size_t a, size_t b) { return (a < b) ? a : b; } using namespace android; /* * Streaming access to compressed asset data in an open fd */ StreamingZipInflater::StreamingZipInflater(int fd, off_t compDataStart, size_t uncompSize, size_t compSize) { mFd = fd; mDataMap = NULL; mInFileStart = compDataStart; mOutTotalSize = uncompSize; mInTotalSize = compSize; mInBufSize = StreamingZipInflater::INPUT_CHUNK_SIZE; mInBuf = new uint8_t[mInBufSize]; mOutBufSize = StreamingZipInflater::OUTPUT_CHUNK_SIZE; mOutBuf = new uint8_t[mOutBufSize]; initInflateState(); } /* * Streaming access to compressed data held in an mmapped region of memory */ StreamingZipInflater::StreamingZipInflater(FileMap* dataMap, size_t uncompSize) { mFd = -1; mDataMap = dataMap; mOutTotalSize = uncompSize; mInTotalSize = dataMap->getDataLength(); mInBuf = (uint8_t*) dataMap->getDataPtr(); mInBufSize = mInTotalSize; mOutBufSize = StreamingZipInflater::OUTPUT_CHUNK_SIZE; mOutBuf = new uint8_t[mOutBufSize]; initInflateState(); } StreamingZipInflater::~StreamingZipInflater() { // tear down the in-flight zip state just in case ::inflateEnd(&mInflateState); if (mDataMap == NULL) { delete [] mInBuf; } delete [] mOutBuf; } void StreamingZipInflater::initInflateState() { LOGD("Initializing inflate state"); memset(&mInflateState, 0, sizeof(mInflateState)); mInflateState.zalloc = Z_NULL; mInflateState.zfree = Z_NULL; mInflateState.opaque = Z_NULL; mInflateState.next_in = (Bytef*)mInBuf; mInflateState.next_out = (Bytef*) mOutBuf; mInflateState.avail_out = mOutBufSize; mInflateState.data_type = Z_UNKNOWN; mOutLastDecoded = mOutDeliverable = mOutCurPosition = 0; mInNextChunkOffset = 0; mStreamNeedsInit = true; if (mDataMap == NULL) { ::lseek(mFd, mInFileStart, SEEK_SET); mInflateState.avail_in = 0; // set when a chunk is read in } else { mInflateState.avail_in = mInBufSize; } } /* * Basic approach: * * 1. If we have undelivered uncompressed data, send it. At this point * either we've satisfied the request, or we've exhausted the available * output data in mOutBuf. * * 2. While we haven't sent enough data to satisfy the request: * 0. if the request is for more data than exists, bail. * a. if there is no input data to decode, read some into the input buffer * and readjust the z_stream input pointers * b. point the output to the start of the output buffer and decode what we can * c. deliver whatever output data we can */ ssize_t StreamingZipInflater::read(void* outBuf, size_t count) { uint8_t* dest = (uint8_t*) outBuf; size_t bytesRead = 0; size_t toRead = min_of(count, size_t(mOutTotalSize - mOutCurPosition)); while (toRead > 0) { // First, write from whatever we already have decoded and ready to go size_t deliverable = min_of(toRead, mOutLastDecoded - mOutDeliverable); if (deliverable > 0) { if (outBuf != NULL) memcpy(dest, mOutBuf + mOutDeliverable, deliverable); mOutDeliverable += deliverable; mOutCurPosition += deliverable; dest += deliverable; bytesRead += deliverable; toRead -= deliverable; } // need more data? time to decode some. if (toRead > 0) { // if we don't have any data to decode, read some in. If we're working // from mmapped data this won't happen, because the clipping to total size // will prevent reading off the end of the mapped input chunk. if (mInflateState.avail_in == 0) { int err = readNextChunk(); if (err < 0) { LOGE("Unable to access asset data: %d", err); if (!mStreamNeedsInit) { ::inflateEnd(&mInflateState); initInflateState(); } return -1; } } // we know we've drained whatever is in the out buffer now, so just // start from scratch there, reading all the input we have at present. mInflateState.next_out = (Bytef*) mOutBuf; mInflateState.avail_out = mOutBufSize; /* LOGD("Inflating to outbuf: avail_in=%u avail_out=%u next_in=%p next_out=%p", mInflateState.avail_in, mInflateState.avail_out, mInflateState.next_in, mInflateState.next_out); */ int result = Z_OK; if (mStreamNeedsInit) { LOGD("Initializing zlib to inflate"); result = inflateInit2(&mInflateState, -MAX_WBITS); mStreamNeedsInit = false; } if (result == Z_OK) result = ::inflate(&mInflateState, Z_SYNC_FLUSH); if (result < 0) { // Whoops, inflation failed LOGE("Error inflating asset: %d", result); ::inflateEnd(&mInflateState); initInflateState(); return -1; } else { if (result == Z_STREAM_END) { // we know we have to have reached the target size here and will // not try to read any further, so just wind things up. ::inflateEnd(&mInflateState); } // Note how much data we got, and off we go mOutDeliverable = 0; mOutLastDecoded = mOutBufSize - mInflateState.avail_out; } } } return bytesRead; } int StreamingZipInflater::readNextChunk() { assert(mDataMap == NULL); if (mInNextChunkOffset < mInTotalSize) { size_t toRead = min_of(mInBufSize, mInTotalSize - mInNextChunkOffset); if (toRead > 0) { ssize_t didRead = ::read(mFd, mInBuf, toRead); //LOGD("Reading input chunk, size %08x didread %08x", toRead, didRead); if (didRead < 0) { // TODO: error LOGE("Error reading asset data"); return didRead; } else { mInNextChunkOffset += didRead; mInflateState.next_in = (Bytef*) mInBuf; mInflateState.avail_in = didRead; } } } return 0; } // seeking backwards requires uncompressing fom the beginning, so is very // expensive. seeking forwards only requires uncompressing from the current // position to the destination. off_t StreamingZipInflater::seekAbsolute(off_t absoluteInputPosition) { if (absoluteInputPosition < mOutCurPosition) { // rewind and reprocess the data from the beginning if (!mStreamNeedsInit) { ::inflateEnd(&mInflateState); } initInflateState(); read(NULL, absoluteInputPosition); } else if (absoluteInputPosition > mOutCurPosition) { read(NULL, absoluteInputPosition - mOutCurPosition); } // else if the target position *is* our current position, do nothing return absoluteInputPosition; }
[ "Administrator@USER-J9L630860H" ]
Administrator@USER-J9L630860H
c7b84a23caaac034ad82eeb9440017c024e550f8
ceb020fee45a01645f0b2adc118483c6cf296226
/NumberOfRecentCalls.cpp
0038ca0482fd2397e7635d425182074c7deaeba0
[]
no_license
anaypaul/LeetCode
6423c4ca1b0d147206c06ebb86c9e558a85077f2
667825d32df2499301184d486e3a674291c0ca0b
refs/heads/master
2021-09-28T06:05:21.256702
2020-10-12T04:01:46
2020-10-12T04:01:46
153,226,092
0
0
null
null
null
null
UTF-8
C++
false
false
957
cpp
class RecentCounter { public: queue<int> q; RecentCounter() { } int ping(int t) { int x = 1; if(t- q.front() <= 3000){ x += q.size(); q.push(t); }else{ while(t- q.front()>3000 && !q.empty()){ q.pop(); } x += q.size(); q.push(t); } return x; } }; /** * Your RecentCounter object will be instantiated and called as such: * RecentCounter* obj = new RecentCounter(); * int param_1 = obj->ping(t); */ //new submission class RecentCounter { public: queue<int> q; RecentCounter() { } int ping(int t) { q.push(t); while(t-q.front() > 3000){ q.pop(); } return q.size(); } }; /** * Your RecentCounter object will be instantiated and called as such: * RecentCounter* obj = new RecentCounter(); * int param_1 = obj->ping(t); */
[ "anay.paul2@gmail.com" ]
anay.paul2@gmail.com
027308f40a33b54f90ce02f5b4b52f31947fe63b
101b45e1f7054ff20dccbf0fb3128edb68880780
/legacy/qmmp_ui_example/renamedialog.cpp
5ab6b4bf3beb56f38f6cdeac1cffef97a50d7fbc
[]
no_license
calupator/QMMP
2803c0d2c07c13f6804456aa4058b3e17b8cba52
b56617e0f1d1d0adabbb14008a3ab3f19d3cb3fc
refs/heads/master
2023-04-01T09:38:09.317025
2021-04-11T20:31:10
2021-04-11T20:31:10
357,050,154
0
0
null
null
null
null
UTF-8
C++
false
false
153
cpp
#include "renamedialog.h" renameDialog::renameDialog (QWidget *parent) : QDialog (parent) { ui.setupUi (this); } renameDialog::~renameDialog() { }
[ "trialuser02@90c681e8-e032-0410-971d-27865f9a5e38" ]
trialuser02@90c681e8-e032-0410-971d-27865f9a5e38
7000ab36d1e5ae2539c2541158d2562726db33a9
43317a28027bf058cb382f8b4587c5af09345ff5
/tinyurl.cpp
fb435c5b3b531cfb0a4b45b24f6bacddaff77858
[]
no_license
ScoobyKot/TinyUrl
6b701e402057e85fd10d20cfece344686b554b1c
309c8977214ce9a4cd7806f3a08ae0ec00640c1b
refs/heads/master
2020-05-01T05:01:35.691761
2019-03-23T13:03:43
2019-03-23T13:03:43
177,289,666
0
0
null
null
null
null
UTF-8
C++
false
false
2,694
cpp
/* [2 punkty] LeetCode Przygotwać bibliotekę wspomagającą tworzenie skróconych adresów URL. W tym celu może pomóc Zdefniowanie metody generotora, która jest testowana w pierwszym kroku testów. Na podstawie aktualnego stanu generatora (tablica 6 znaków) wyznacza następny stan. Tablicę stanu można dalej przechowywać w strukturze TinyUrlCodec Moduł: tinyurl Pliki z implementacją: TinyUrl.h/cpp Używana struktura danych: TinyUrlCodec Sygnatury metod: std::unique_ptr<TinyUrlCodec> Init(); void NextHash(std::arrray<char, 6> *state); std::string Encode(const std::string &url, std::unique_ptr<TinyUrlCodec> *codec); std::string Decode(const std::unique_ptr<TinyUrlCodec> &codec, const std::string &hash); Przestrzeń nazw: tinyurl Importy: #include <utility> #include <string> #include <array> #include <memory> */ #include <iostream> #include <utility> #include <string> #include <array> #include <memory> #include <regex> using namespace std; char letters[26] = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'}; struct TinyUrlCodec { string long_url; string short_url; }; string lpu(string sb_url) { int rand_let; string ti_url; int tab[6] ; for (int i = 0; i<6; i++) { rand_let = rand() %25 +0; //cout << "random "<< rand_let<<endl; ti_url +=letters[rand_let]; //cout<<ti_url<<endl; } sb_url +=ti_url; return sb_url; } int main() { srand( time( NULL ) ); char LETTERS[26] = {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'}; string long_url; string t_u; regex patter ("http://www.(\\w).(\\w)\[ ^ ]"); //cout<<"wprowadz url: "; //cin>>long_url; //cout<<long_url; int num_slash = 0; string sb_url; string url ; cout << "Wprowadz nazwe strony "<<endl;cin>>url; for (int i = 0 ; i<url.length();i++) { if (num_slash == 3) { break; } //cout<<url[i]<<endl; if (url[i] == '/') { num_slash++; //cout << "Number of slash "<< num_slash<<endl; } sb_url +=url[i]; } //cout<<sb_url<<endl; //cout<<sb_url<<endl; string short_url = lpu(sb_url); cout<<short_url<<endl; TinyUrlCodec new_url = { url, short_url }; //cout<< new_url.long_url << "<=>"<<new_url.short_url; return 0; }
[ "scoobykot@gmail.com" ]
scoobykot@gmail.com
f56a01ffdd076f1a58420405edae1ad4545f15d4
fb22522d72bc35979405e3ac07d0e4663c2ed6fc
/src/raid/io/manager.cpp
fc3bc1d63740b88cc545a84ed66065278e026133
[]
no_license
DreadedX/raid
f9872785be5d49e6a03ae7ea126bf44662bf10f0
15cf52e9a2bc7c9e511dd06aec0fc04c027c6ddc
refs/heads/master
2020-05-30T08:39:27.457741
2017-05-17T19:47:32
2017-05-17T19:47:32
70,187,823
0
0
null
null
null
null
UTF-8
C++
false
false
1,624
cpp
//---------------------------------------------- #include "typedef.h" #include "raid/engine.h" #include "flxr/spec.h" #include "flxr/exceptions.h" #include "logger.h" //---------------------------------------------- /// @todo Make this not platform specific void raid::FileManager::add_container(const std::string& container_path) { // Create en pointer to a container std::string full_path = Engine::instance().get_platform()->get_storage_path() + "/" + container_path; std::unique_ptr<flxr::Container> container = std::make_unique<flxr::Container>(full_path); // try { container->check_crc(); container->read_header(); container->read_index(); for(auto& meta_data : (*container).get_index()) { add_file(meta_data); } containers.emplace_back(std::move(container)); // } catch(flxr::bad_file& e) { // warning << e.what() << '\n'; // } } //---------------------------------------------- flxr::MetaData& raid::FileManager::get_file(std::string file_name) { /// @todo Optimize this // Search for file and return it for (auto& file : files) { if (file.get_name() == file_name) { return file; } } warning << "Unable to find file: " << file_name << '\n'; throw std::runtime_error("Unable to find file"); /// @todo This should be an exception, maybe even return a default object or something // exit(-1); } //---------------------------------------------- /// @todo Prevent duplication void raid::FileManager::add_file(flxr::MetaData& meta_data) { debug << "Adding file: " << meta_data.get_name() << '\n'; files.push_back(meta_data); } //----------------------------------------------
[ "tim.huizinga@gmail.com" ]
tim.huizinga@gmail.com
c5d886edd807b29962024608b51f71932920c828
fec81bfe0453c5646e00c5d69874a71c579a103d
/blazetest/src/mathtest/operations/smatsmatadd/HCbUCa.cpp
394e4df4c3740116222cd46beeb59ad59f5c0823
[ "BSD-3-Clause" ]
permissive
parsa/blaze
801b0f619a53f8c07454b80d0a665ac0a3cf561d
6ce2d5d8951e9b367aad87cc55ac835b054b5964
refs/heads/master
2022-09-19T15:46:44.108364
2022-07-30T04:47:03
2022-07-30T04:47:03
105,918,096
52
7
null
null
null
null
UTF-8
C++
false
false
4,309
cpp
//================================================================================================= /*! // \file src/mathtest/operations/smatsmatadd/HCbUCa.cpp // \brief Source file for the HCbUCa sparse matrix/sparse matrix addition math test // // Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved // // This file is part of the Blaze library. You can redistribute it and/or modify it under // the terms of the New (Revised) BSD License. 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. // 3. Neither the names of the Blaze development group nor the names of its contributors // may be used to endorse or promote products derived from this software without specific // prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT // SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR // BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH // DAMAGE. */ //================================================================================================= //************************************************************************************************* // Includes //************************************************************************************************* #include <cstdlib> #include <iostream> #include <blaze/math/CompressedMatrix.h> #include <blaze/math/HermitianMatrix.h> #include <blaze/math/UpperMatrix.h> #include <blazetest/mathtest/Creator.h> #include <blazetest/mathtest/operations/smatsmatadd/OperationTest.h> #include <blazetest/system/MathTest.h> #ifdef BLAZE_USE_HPX_THREADS # include <hpx/hpx_main.hpp> #endif //================================================================================================= // // MAIN FUNCTION // //================================================================================================= //************************************************************************************************* int main() { std::cout << " Running 'HCbUCa'..." << std::endl; using blazetest::mathtest::ScalarA; using blazetest::mathtest::ScalarB; try { // Matrix type definitions using HCb = blaze::HermitianMatrix< blaze::CompressedMatrix<ScalarB> >; using UCa = blaze::UpperMatrix< blaze::CompressedMatrix<ScalarA> >; // Creator type definitions using CHCb = blazetest::Creator<HCb>; using CUCa = blazetest::Creator<UCa>; // Running tests with small matrices for( size_t i=0UL; i<=6UL; ++i ) { for( size_t j=0UL; j<=i*i; ++j ) { for( size_t k=0UL; k<=UCa::maxNonZeros( i ); ++k ) { RUN_SMATSMATADD_OPERATION_TEST( CHCb( i, j ), CUCa( i, k ) ); } } } // Running tests with large matrices RUN_SMATSMATADD_OPERATION_TEST( CHCb( 67UL, 7UL ), CUCa( 67UL, 13UL ) ); RUN_SMATSMATADD_OPERATION_TEST( CHCb( 128UL, 16UL ), CUCa( 128UL, 8UL ) ); } catch( std::exception& ex ) { std::cerr << "\n\n ERROR DETECTED during sparse matrix/sparse matrix addition:\n" << ex.what() << "\n"; return EXIT_FAILURE; } return EXIT_SUCCESS; } //*************************************************************************************************
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
da0f4ae7d21a7b1da99ac6409e4f4bfc3485385d
d2d0e72fc04f4699595aa1946362e081c63fd69a
/SandBox/src/Parseur.cpp
84c594c30fe279e0624f69d3a43ebf43a15fb490
[]
no_license
T4ouf/Rainbow-Engine
f3b8e908dc0bef053efea2ec7c7fbb9a2478a663
5b57b9b20c6edecf7da90595e7ef9b13852ff6d5
refs/heads/master
2020-05-16T05:55:44.215733
2019-05-10T11:46:22
2019-05-10T11:46:22
182,830,198
1
0
null
null
null
null
UTF-8
C++
false
false
7,908
cpp
#include "Parseur.h" Parseur::Parseur(std::string pathFile) { path = pathFile; // Initiate the structure lvl.startPosX = 0.0f; lvl.startPosY = 0.0f; lvl.startPosZ = 0.0f; lvl.levelPath = ""; lvl.musicPath = ""; lvl.endPosX = 0.0f; lvl.endPosY = 0.0f; lvl.endPosZ = 0.0f; lvl.length = 0.0f; lvl.width = 0.0f; lvl.height = 0.0f; } Parseur::~Parseur() { } void Parseur::setPath(std::string pathFile) { path = pathFile; } std::string Parseur::getPath() { return path; } Level Parseur::parse(Rainbow::Scene& scene) { // Clear the structure lvl.startPosX = 0.0f; lvl.startPosY = 0.0f; lvl.startPosZ = 0.0f; lvl.levelPath = ""; lvl.musicPath = ""; lvl.endPosX = 0.0f; lvl.endPosY = 0.0f; lvl.endPosZ = 0.0f; lvl.length = 0.0f; lvl.width = 0.0f; lvl.height = 0.0f; // ************** Open File ***************// rapidxml::xml_document<> doc; rapidxml::xml_node<> * root_node; std::ifstream theFile(this->path); // if the file exist and is open if (theFile) { // declaration of buffer to read file std::vector<char> buffer((std::istreambuf_iterator<char>(theFile)), std::istreambuf_iterator<char>()); buffer.push_back('\0'); doc.parse<0>(&buffer[0]); // first node level root_node = doc.first_node("Level"); std::string nameLevel = root_node->first_attribute("name")->value(); lvl.levelPath = nameLevel; // first node Background rapidxml::xml_node<> * background_node = root_node->first_node("Background"); //*********************** COLOR / MUSIC / LIGHT ******************// // first node name Color if it exists rapidxml::xml_node<>* color_node = background_node->first_node("Color"); if (color_node != nullptr) { std::string::size_type sz; float r, g, b; r = std::stof(color_node->first_attribute("red")->value(), &sz); g = std::stof(color_node->first_attribute("green")->value(), &sz); b = std::stof(color_node->first_attribute("blue")->value(), &sz); scene.setBackgroundColor(r/255.0f,g/255.0f,b/255.0f); } rapidxml::xml_node<>* music_node = background_node->first_node("Music"); if (music_node != nullptr) { std::string musicName = music_node->first_attribute("name")->value(); lvl.musicPath = musicName; } rapidxml::xml_node<>* light_node = background_node->first_node("Light"); if (light_node != nullptr) { float posX, posY, posZ; posX = std::stof(light_node->first_attribute("posX")->value()); posY = std::stof(light_node->first_attribute("posY")->value()); posZ = std::stof(light_node->first_attribute("posZ")->value()); scene.setLightPos(posX/255.0f, posY/255.0f, posZ/255.0f); } //*********************** START, END AND OBJECT ******************// // node structure of Level rapidxml::xml_node<> * structure_node = root_node->first_node("Structure"); // node start of structure rapidxml::xml_node<> * start_node = structure_node->first_node("Start"); if (start_node != nullptr) { float posX = std::stof(start_node->first_attribute("posX")->value()); float posY = std::stof(start_node->first_attribute("posY")->value()); float posZ = std::stof(start_node->first_attribute("posZ")->value()); // Store in structure lvl.startPosX = posX; lvl.startPosY = posY; lvl.startPosZ = posZ; } // node end of structure rapidxml::xml_node<> * end_node = structure_node->first_node("End"); if (end_node != nullptr) { float posX = std::stof(end_node->first_attribute("posX")->value()); float posY = std::stof(end_node->first_attribute("posY")->value()); float posZ = std::stof(end_node->first_attribute("posZ")->value()); float length = std::stof(end_node->first_attribute("length")->value()); float width = std::stof(end_node->first_attribute("width")->value()); float height = std::stof(end_node->first_attribute("height")->value()); // Store in structure lvl.endPosX = posX; lvl.endPosY = posY; lvl.endPosZ = posZ; lvl.length = length; lvl.width = width; lvl.height = height; } rapidxml::xml_node<>* objects_node = structure_node->first_node("Objects"); if (objects_node != nullptr) { for (rapidxml::xml_node<> * obj_node = objects_node->first_node("Obj");; obj_node = obj_node->next_sibling()) { if (obj_node != nullptr) { if (strcmp(obj_node->name(), "Obj") != 0) { break; } // We get attribut object float posX = std::stof(obj_node->first_attribute("posX")->value()); float posY = std::stof(obj_node->first_attribute("posY")->value()); float posZ = std::stof(obj_node->first_attribute("posZ")->value()); float sizeX = std::stof(obj_node->first_attribute("sizeX")->value()); float sizeY = std::stof(obj_node->first_attribute("sizeY")->value()); float sizeZ = std::stof(obj_node->first_attribute("sizeZ")->value()); float mass = std::stof(obj_node->first_attribute("mass")->value()); bool isAnchor = atoi(obj_node->first_attribute("isAnchor")->value()); std::string nameMaterial = obj_node->first_attribute("material")->value(); Rainbow::Shader * shader = new Rainbow::Shader("Ressources/Shaders/Material.shader"); Rainbow::Material * material; // we create material according to the name of material in the file if (nameMaterial == "Gold") { material = new Rainbow::Material(shader, nullptr, glm::vec3(0.329412f, 0.223529f, 0.027451f), glm::vec3(0.780392f, 0.568627f, 0.113725f), glm::vec3(0.992157f, 0.941176f, 0.807843f), 27.8974f); } else if (nameMaterial == "Ruby") { material = new Rainbow::Material(shader, nullptr, glm::vec3(0.1745f, 0.01175f, 0.01175f), glm::vec3(0.61424f, 0.04136f, 0.04136f), glm::vec3(0.727811f, 0.626959f, 0.626959f), 0.6f * 128); } else if (nameMaterial == "Chrome") { material = new Rainbow::Material(shader, nullptr, glm::vec3(0.25f, 0.25f, 0.25f), glm::vec3(0.4f, 0.4f, 0.4f), glm::vec3(0.774597f, 0.774597f, 0.774597f), 0.6f * 128); } else if (nameMaterial == "Pearl") { material = new Rainbow::Material(shader, nullptr, glm::vec3(0.25f, 0.20725f, 0.20725f), glm::vec3(1.0f, 0.829f, 0.829f), glm::vec3(0.296648f, 0.296648f, 0.296648f), 0.088f * 128); } else if (nameMaterial == "Copper") { material = new Rainbow::Material(shader, nullptr, glm::vec3(0.19125f, 0.0735f, 0.0225f), glm::vec3(0.7038f, 0.27048f, 0.0828f), glm::vec3(0.256777f, 0.137622f, 0.086014f), 0.1f * 128); } else if (nameMaterial == "Obsidian") { material = new Rainbow::Material(shader, nullptr, glm::vec3(0.05375f, 0.05f, 0.06625f), glm::vec3(0.18275f, 0.17f, 0.22525f), glm::vec3(0.332741f, 0.328634f, 0.346435f), 0.3f * 128); } else if (nameMaterial == "BlackRubber") { material = new Rainbow::Material(shader, nullptr, glm::vec3(0.02f, 0.02f, 0.02f), glm::vec3(0.01f, 0.01f, 0.01f), glm::vec3(0.4f, 0.4f, 0.4f), 10.0f); } else if (nameMaterial == "LampMaterial") { material = new Rainbow::Material(Rainbow::LightSourceShader, "Ressources/Textures/texture-caisse.png", glm::vec3(1.0f, 1.0f, 1.0f), glm::vec3(1.0f, 1.0f, 1.0f), glm::vec3(1.0f, 1.0f, 1.0f), 1.0f); } else { nameMaterial = "No"; material = new Rainbow::Material(shader, nullptr, glm::vec3(1.0f, 1.0f, 1.0f), glm::vec3(1.0f, 1.0f, 1.0f), glm::vec3(1.0f, 1.0f, 1.0f), 1.0f); } //add object at the scene Rainbow::Object *b = Rainbow::ObjectFactory::CreateBoxe(glm::vec3(posX, posY, posZ), sizeX, sizeY, sizeZ, mass, isAnchor, material); scene.addObject(b); if (obj_node->next_sibling() == nullptr) { break; } } } } doc.clear(); } else { // There is an error with file std::cerr << "Impossible to open file !" << std::endl; } return lvl; }
[ "thomasvonascheberg@hotmail.fr" ]
thomasvonascheberg@hotmail.fr
21621a2c40d3247a7113e160e07398aa87c05bc4
04a540847c1333c987a1957fd8d31197c594f6bb
/BOJ/10820_1.cpp
c95880ed96998b8a5f0e263129f322f1db6c976b
[]
no_license
k8440009/Algorithm
fd148269b264b580876c7426e19dbe2425ddc1ab
a48eba0ac5c9f2e10f3c509ce9d349c8a1dc3f0c
refs/heads/master
2023-04-02T16:06:10.260768
2023-04-02T11:04:32
2023-04-02T11:04:32
200,506,643
0
0
null
null
null
null
UTF-8
C++
false
false
343
cpp
char *read_line(int fd) { char *buf; char c; int i; int n_read; buf = malloc(sizeof(char) * 50000); if (buf == NULL) return (NULL); n_read = 0; i = 0; while (read(fd, &c, 1) > 0) { n_read++; if (c == '\n') break; buf[i] = c; i++; } if (n_read == 0) { free(buf); return (NULL); } buf[i] = '\0'; return (buf); }
[ "k8440009@gmail.com" ]
k8440009@gmail.com
bc5604be5579e165c533ea525cbb0b2802d058b2
eebfd60a94004abd8d2459c2f6bb0b74018dc5f7
/src/amg_solvers.cpp
c8952188b8f4523f40af5ca65654cea9d1e2872e
[]
no_license
kahnon/Poisson2D-amg-lib
b072bf15f15bd5834f3167fa64fa7fc5bb7cf4fd
d7cac64edb9899d65e8ee524b6183c9fe23a7491
refs/heads/master
2022-12-21T03:16:55.105896
2020-10-02T11:08:28
2020-10-02T11:08:28
300,580,042
0
0
null
null
null
null
UTF-8
C++
false
false
10,094
cpp
#include <vector> #include <limits> #include <math.h> #include "amg_solvers.h" #include "smoothing.h" #include "amg_solve_components.h" #include "matrix.h" #include "amg_benchmark.h" //sor solver with system matrix "matrix", rhs "rhs", damping parameter omega //and guess phi. Iteration until max_norm of residual is smaller than maxerror //or maxstep is reached void sor(const Matrix& matrix, const std::vector<double>& rhs, std::vector<double>& phi, int error_interval, double maxerror, int maxstep, double omega){ assert(matrix.size() == rhs.size() && "matrix & vector size dont match in sor(...)"); assert(matrix.size() == phi.size() && "matrix & vector size dont match in sor(...)"); int steps=0; double error=1; std::vector<double> phi_old(0); do{ //checkerboard pattern for(auto i=0u;i<rhs.size();i+=2) sor_base_with_bounds(i,matrix,rhs,phi_old,phi,omega); for(auto i=1u;i<rhs.size();i+=2) sor_base_with_bounds(i,matrix,rhs,phi_old,phi,omega); ++steps; if(steps%error_interval == 0) error = calc_max_norm_res(matrix,rhs,phi).second; }while(error > maxerror && steps<maxstep); std::cout<<"sor: error="<<error<<" steps="<<steps<<std::endl; } //jacobi solver with system matrix "matrix", rhs "rhs", damping parameter omega //and guess phi. Iteration until max_norm of residual is smaller than maxerror //or maxstep is reached void jacobi(const Matrix& matrix, const std::vector<double>& rhs, std::vector<double>& phi, int error_interval, double maxerror, int maxstep, double omega){ assert(matrix.size() == rhs.size() && "matrix & vector size dont match in jacobi(...)"); assert(matrix.size() == phi.size() && "matrix & vector size dont match in jacobi(...)"); int steps=0; double error=1; std::vector<double> phi_old(phi); do{ for(auto i=0u;i<rhs.size();++i) jacobi_base_with_bounds(i,matrix,rhs,phi_old,phi,1); ++steps; if(steps%error_interval == 0) error = calc_max_norm_res(matrix,rhs,phi).second; std::copy(phi.begin(),phi.end(),phi_old.begin()); }while(error > maxerror && steps<maxstep); std::cout<<"jacobi: error="<<error<<" steps="<<steps<<std::endl; } //non pre-conditioned cg method to solve the AMG system on the lowest level //(should be) guaranteed to converge after dim(phi) steps void cg(const Matrix& matrix, const std::vector<double>& rhs, std::vector<double>& phi, int maxsteps, double acc){ assert(matrix.size() == rhs.size() && "matrix & vector size dont match in cg(...)"); assert(matrix.size() == phi.size() && "matrix & vector size dont match in cg(...)"); double error=0; int steps=0; std::vector<double> residual=matrix_vector(matrix,phi); for(auto i=0u;i<residual.size();++i) residual[i] = rhs[i] - residual[i]; std::vector<double> direction=residual; std::vector<double> mvprod(direction.size(),0); std::vector<double> new_residual(residual); for(auto i=0;i<maxsteps;++i){ error=0; ++steps; //save this mvproduct mvprod = matrix_vector(matrix,direction); //find phi in search direction and update gradient and residual double alpha = scalar_product(residual,residual); alpha /= scalar_product(direction,mvprod); for(auto k=0u;k<phi.size();++k) phi[k]+=alpha*direction[k]; for(auto k=0u;k<residual.size();++k){ new_residual[k] = residual[k] - alpha*mvprod[k]; //find maximum norm of residual if(fabs(new_residual[k])>error) error=fabs(new_residual[k]); } if(error<acc) break; //update search direction double beta = scalar_product(new_residual,new_residual); beta /= scalar_product(residual,residual); for(auto k=0u;k<direction.size();++k) direction[k] = new_residual[k] + beta*direction[k]; std::copy(new_residual.begin(),new_residual.end(),residual.begin()); } //std::cout<<" cg: error="<<error<<" steps="<<steps<<std::endl; } //v-cycle: move straight down to coarsest level, //then back up and repeat until convergence void solve_v_cycle(AMGhierarchy& Hier, const std::vector<double>& rho, std::vector<double>& phi, int maxsteps, int smooth_steps, bool gen_flag, double maxerror){ init_benchmark_variables(); int solve_id = AMGbench::start(); int max_level=Hier[0].max_level; //int max_level=2; int steps=0; std::vector<int> stepsvec(max_level,smooth_steps); //if gen flag=true, use generalized cycle if(gen_flag){ for(auto i=0;i<max_level;++i){ stepsvec[i] = (i+1) * smooth_steps; } } AMGlvl& coarsest_lvl = Hier[max_level-1]; //init first guess for each level Hier[0].phi = phi; Hier[0].rhs = rho; for(auto i=1;i<max_level;++i){ std::fill(Hier[i].phi.begin(),Hier[i].phi.end(),0); std::fill(Hier[i].rhs.begin(),Hier[i].rhs.end(),0); } auto v_iteration = [&](){ double error = 0; //go "down" from i to next coarser lvl all the way to coarsest level for(auto i=0;i<max_level-1;++i){ int id = AMGbench::start(); double cycerror = go_down(i,Hier,maxerror,stepsvec[i]); go_down_time+=AMGbench::stop(id); id=AMGbench::start(); if(i==0){ error=cycerror; if(error < maxerror) return error; } error_time+=AMGbench::stop(id); } //almost exact solution on coarsest grid int id = AMGbench::start(); //cg(coarsest_lvl.matrix,coarsest_lvl.rhs,coarsest_lvl.phi,std::numeric_limits<int>::max()); cg(coarsest_lvl.matrix,coarsest_lvl.rhs,coarsest_lvl.phi,500); //sor(coarsest_lvl.matrix, coarsest_lvl.rhs, coarsest_lvl.phi, 10, 1e-12, 500, 1); cg_time+=AMGbench::stop(id); //go back "up" again from i t0 next finer lvl id=AMGbench::start(); for(auto i=max_level-1;i>0;--i) go_up(i,Hier,maxerror,stepsvec[i]); go_up_time+=AMGbench::stop(id); return error; }; double error=1; do{ error = v_iteration(); ++steps; std::cout<<"v-cycle step "<<steps<<", error "<<error<<std::endl; }while(error>maxerror && steps<maxsteps); phi=Hier[0].phi; //std::cout<<"AMG V-cycle: cycles="<<steps<<" "<<"error="<<error<<std::endl; long int pts = number_of_points(Hier); std::cout<<"*********************AMG V-CYCLE TIMES*********************"<<std::endl; std::cout<<" Solve took "<<AMGbench::stop(solve_id)/1000.<<"s with "<<steps<<" cycles and error="<<error<<std::endl; std::cout<<" Go Down took "<<1e6*go_down_time/(steps*pts)<<" ps/(cyc*pt)."<<std::endl; std::cout<<" Pre-Smoothing took "<<1e6*pre_smoothing_time/(steps*pts)<<" ps/(cyc*pt)."<<std::endl; std::cout<<" Residual Calculation took "<<1e6*residual_time/(steps*pts)<<" ps/(cyc*pt)."<<std::endl; std::cout<<" Restriction took "<<1e6*restriction_time/(steps*pts)<<" ps/(cyc*pt)."<<std::endl<<std::endl; std::cout<<" CG solve took "<<1e6*cg_time/(steps*pts)<<" ps/(cyc.*pt)"<<std::endl<<std::endl; std::cout<<" Go Up took "<<1e6*go_up_time/(steps*pts)<<" ps/(cyc*pt)."<<std::endl; std::cout<<" Post-Smoothing took "<<1e6*post_smoothing_time/(steps*pts)<<" ps/(cyc*pt)."<<std::endl; std::cout<<" Jacobi Sweeps took "<<1e6*jacobi_sweep_time/(steps*pts)<<" ps/(cyc*pt)."<<std::endl; std::cout<<" Interpolation took "<<1e6*interpolation_time/(steps*pts)<<" ps/(cyc*pt)."<<std::endl; std::cout<<" Error Checks took "<<1e6*error_time/(steps*pts)<<" ps/(cyc*pt)."<<std::endl; std::cout<<"***********************************************************"<<std::endl<<std::endl; } //TODO pass parameters of amg preconditioning void amg_preconditioned_cg(AMGhierarchy& hier, const std::vector<double>& rhs, std::vector<double>& phi, std::function<void(AMGhierarchy&,const std::vector<double>&,std::vector<double>&,int,int,bool,double)> precondition, bool gen_flag, int maxsteps, double acc){ //system matrix the same for both systems Matrix& matrix = hier[0].matrix; assert(matrix.size() == rhs.size() && "matrix & vector size dont match in cg(...)"); assert(matrix.size() == phi.size() && "matrix & vector size dont match in cg(...)"); double error=0; int steps=0; //move out of here and cg() from above auto scalar_product = [](const std::vector<double>& v1, const std::vector<double>& v2){ assert(v1.size() == v2.size() && "vector dimensions dont match in scalar_product"); double result=0; for(auto i=0u;i<v1.size();++i) result+=v1[i]*v2[i]; return result; }; //needed to set residual as rhs for preconditioner std::vector<double> residual=matrix_vector(matrix,phi); for(auto i=0u;i<residual.size();++i) residual[i] = rhs[i] - residual[i]; //preconditioned variable used here std::vector<double> prec_residual(residual); precondition(hier,residual,prec_residual,30,2,gen_flag,1e-12); //search direction in preconditioned residual std::vector<double> direction(prec_residual); std::vector<double> mvprod(direction.size(),0); double delta = scalar_product(residual,prec_residual); double new_delta = delta; for(auto i=0;i<maxsteps;++i){ error=0; ++steps; //save this mvproduct mvprod = matrix_vector(matrix,direction); //find phi in search direction and update residual double alpha = delta; alpha /= scalar_product(direction,mvprod); for(auto k=0u;k<phi.size();++k) phi[k]+=alpha*direction[k]; for(auto k=0u;k<residual.size();++k){ residual[k] -= alpha*mvprod[k]; if(fabs(residual[k]) > error) error = fabs(residual[k]); } if(error < acc) break; //use preconditioning precondition(hier,residual,prec_residual,30,2,gen_flag,1e-12); //update coefficients for new search direction new_delta = scalar_product(residual,prec_residual); double beta = new_delta / delta; delta = new_delta; //std::cout<<"step="<<steps<<" error="<<error<<" alpha="<<alpha<<" beta="<<beta<<" delta="<<delta<<std::endl; //update search direction for(auto k=0u;k<direction.size();++k) direction[k] = prec_residual[k] + beta*direction[k]; } std::cout<<"amg_preconditioned_cg: error="<<error<<" steps="<<steps<<std::endl; }
[ "kahnon@users.noreply.github.com" ]
kahnon@users.noreply.github.com
a2b6d554c5edb61851bbc085244ebacb17007a57
9e37bb8dc004cc39f39aae340b5ca5e3223bbde0
/174-15653.cpp
425151891a832de5ac13ccaab284c2b31c476c5e
[]
no_license
yongsoonko/solved-problems
5868823edfa2a5451b23b06e06ee7855b7073182
55dd3e0a1e40581f48a46b4ed78455d04de41ffc
refs/heads/master
2022-11-19T15:23:39.938416
2020-04-07T03:37:15
2020-04-07T03:37:15
221,386,455
0
0
null
null
null
null
UTF-8
C++
false
false
3,148
cpp
#include <algorithm> #include <array> #include <iostream> #include <queue> #include <string> #include <time.h> #include <vector> #define fi first #define se second using namespace std; using ll = long long; using pll = pair<ll, ll>; using pii = pair<int, int>; using ai3 = array<int, 3>; struct Ball { int i; int j; int k; Ball operator+(const Ball &other) { return Ball{i + other.i, j + other.j, k}; } }; int N, M; int di[4] = {-1, 0, 1, 0}, dj[4] = {0, 1, 0, -1}; string map[11]; int chk[10000]; int chk_fall[2]; Ball move_ball(Ball b, int d) { Ball res = {0, 0}; while (map[b.i + di[d]][b.j + dj[d]] == '.') { b.i += di[d], b.j += dj[d]; res.i += di[d], res.j += dj[d]; } if (map[b.i + di[d]][b.j + dj[d]] == 'O') { b.i += di[d], b.j += dj[d]; res.i += di[d], res.j += dj[d]; chk_fall[b.k] = 1; } return res; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); clock_t start = clock(); int tc = 1; while (tc--) { fill(chk_fall, chk_fall + 2, 0); fill(chk, chk + 10000, 0); Ball cr, cb; cin >> N >> M; for (int i = 0; i < N; i++) { cin >> map[i]; for (int j = 0; j < M; j++) { if (map[i][j] == 'R') { cr.i = i, cr.j = j, cr.k = 0; map[i][j] = '.'; } else if (map[i][j] == 'B') { cb.i = i, cb.j = j, cb.k = 1; map[i][j] = '.'; } } } int curr = cr.i * 1000 + cr.j * 100 + cb.i * 10 + cb.j; chk[curr] = 1; queue<int> q; q.push(curr); int prev_lv = 1, next_lv = 0, cnt = 1, flag = 0; while (!q.empty()) { curr = q.front(); q.pop(); prev_lv--; cr = {curr / 1000, curr % 1000 / 100, 0}, cb = {curr % 100 / 10, curr % 10, 1}; for (int i = 0; i < 4; i++) { Ball mr = move_ball(cr, i); Ball mb = move_ball(cb, i); Ball nr = cr + mr, nb = cb + mb; if (chk_fall[0] && !chk_fall[1]) { flag = 1; goto out; } else if (chk_fall[1]) { chk_fall[0] = chk_fall[1] = 0; continue; } else { if (nr.i == nb.i && nr.j == nb.j) { if (i == 0) { if (cr.i < cb.i) nb.i++; else nr.i++; } else if (i == 1) { if (cr.j < cb.j) nr.j--; else nb.j--; } else if (i == 2) { if (cr.i < cb.i) nr.i--; else nb.i--; } else { if (cr.j < cb.j) nb.j++; else nr.j++; } } } int next = nr.i * 1000 + nr.j * 100 + nb.i * 10 + nb.j; if (!chk[next]) { chk[next] = 1; q.push(next); next_lv++; } } if (!prev_lv) { prev_lv = next_lv; next_lv = 0; cnt++; } } out: if (flag) cout << cnt << '\n'; else cout << -1 << '\n'; } float time = (float)(clock() - start) / CLOCKS_PER_SEC; // cout << "\ntime : " << time; }
[ "goys5228@gmail.com" ]
goys5228@gmail.com
aaef63bbde57e0da771a6684f4d0259df7b36dfb
ba8f56b4292be78b6df3cd423497f1962f855965
/Frameworks/JuceModules/juce_gui_basics/native/juce_linux_X11_Windowing.cpp
9c34f09ae183783e5dd1f7b39d13253d14cdf9ed
[ "MIT" ]
permissive
Sin-tel/protoplug
644355f4dbf072eea68ac1e548f9f164b1364cc4
236344b1c3b1cc64d7dc01ea0c0c2a656bdc4ba1
refs/heads/master
2023-09-01T00:45:02.745857
2023-08-15T22:54:52
2023-08-15T22:54:52
151,246,506
17
4
NOASSERTION
2018-10-02T11:54:37
2018-10-02T11:54:37
null
UTF-8
C++
false
false
142,850
cpp
/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2017 - ROLI Ltd. JUCE is an open source library subject to commercial or open-source licensing. By using JUCE, you agree to the terms of both the JUCE 5 End-User License Agreement and JUCE 5 Privacy Policy (both updated and effective as of the 27th April 2017). End User License Agreement: www.juce.com/juce-5-licence Privacy Policy: www.juce.com/juce-5-privacy-policy Or: You may also use this code under the terms of the GPL v3 (see www.gnu.org/licenses). JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE DISCLAIMED. ============================================================================== */ namespace juce { #if JUCE_DEBUG && ! defined (JUCE_DEBUG_XERRORS) #define JUCE_DEBUG_XERRORS 1 #endif #if JUCE_MODULE_AVAILABLE_juce_gui_extra #define JUCE_X11_SUPPORTS_XEMBED 1 #else #define JUCE_X11_SUPPORTS_XEMBED 0 #endif #if JUCE_X11_SUPPORTS_XEMBED bool juce_handleXEmbedEvent (ComponentPeer*, void*); unsigned long juce_getCurrentFocusWindow (ComponentPeer*); #endif extern WindowMessageReceiveCallback dispatchWindowMessage; extern XContext windowHandleXContext; //=============================== X11 - Keys =================================== namespace Keys { enum MouseButtons { NoButton = 0, LeftButton = 1, MiddleButton = 2, RightButton = 3, WheelUp = 4, WheelDown = 5 }; static int AltMask = 0; static int NumLockMask = 0; static bool numLock = false; static bool capsLock = false; static char keyStates [32]; static const int extendedKeyModifier = 0x10000000; } bool KeyPress::isKeyCurrentlyDown (int keyCode) { ScopedXDisplay xDisplay; if (auto display = xDisplay.display) { int keysym; if (keyCode & Keys::extendedKeyModifier) { keysym = 0xff00 | (keyCode & 0xff); } else { keysym = keyCode; if (keysym == (XK_Tab & 0xff) || keysym == (XK_Return & 0xff) || keysym == (XK_Escape & 0xff) || keysym == (XK_BackSpace & 0xff)) { keysym |= 0xff00; } } ScopedXLock xlock (display); const int keycode = XKeysymToKeycode (display, (KeySym) keysym); const int keybyte = keycode >> 3; const int keybit = (1 << (keycode & 7)); return (Keys::keyStates [keybyte] & keybit) != 0; } return false; } //============================================================================== const int KeyPress::spaceKey = XK_space & 0xff; const int KeyPress::returnKey = XK_Return & 0xff; const int KeyPress::escapeKey = XK_Escape & 0xff; const int KeyPress::backspaceKey = XK_BackSpace & 0xff; const int KeyPress::leftKey = (XK_Left & 0xff) | Keys::extendedKeyModifier; const int KeyPress::rightKey = (XK_Right & 0xff) | Keys::extendedKeyModifier; const int KeyPress::upKey = (XK_Up & 0xff) | Keys::extendedKeyModifier; const int KeyPress::downKey = (XK_Down & 0xff) | Keys::extendedKeyModifier; const int KeyPress::pageUpKey = (XK_Page_Up & 0xff) | Keys::extendedKeyModifier; const int KeyPress::pageDownKey = (XK_Page_Down & 0xff) | Keys::extendedKeyModifier; const int KeyPress::endKey = (XK_End & 0xff) | Keys::extendedKeyModifier; const int KeyPress::homeKey = (XK_Home & 0xff) | Keys::extendedKeyModifier; const int KeyPress::insertKey = (XK_Insert & 0xff) | Keys::extendedKeyModifier; const int KeyPress::deleteKey = (XK_Delete & 0xff) | Keys::extendedKeyModifier; const int KeyPress::tabKey = XK_Tab & 0xff; const int KeyPress::F1Key = (XK_F1 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F2Key = (XK_F2 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F3Key = (XK_F3 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F4Key = (XK_F4 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F5Key = (XK_F5 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F6Key = (XK_F6 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F7Key = (XK_F7 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F8Key = (XK_F8 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F9Key = (XK_F9 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F10Key = (XK_F10 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F11Key = (XK_F11 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F12Key = (XK_F12 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F13Key = (XK_F13 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F14Key = (XK_F14 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F15Key = (XK_F15 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F16Key = (XK_F16 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F17Key = (XK_F17 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F18Key = (XK_F18 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F19Key = (XK_F19 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F20Key = (XK_F20 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F21Key = (XK_F21 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F22Key = (XK_F22 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F23Key = (XK_F23 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F24Key = (XK_F24 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F25Key = (XK_F25 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F26Key = (XK_F26 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F27Key = (XK_F27 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F28Key = (XK_F28 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F29Key = (XK_F29 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F30Key = (XK_F30 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F31Key = (XK_F31 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F32Key = (XK_F32 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F33Key = (XK_F33 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F34Key = (XK_F34 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::F35Key = (XK_F35 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::numberPad0 = (XK_KP_0 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::numberPad1 = (XK_KP_1 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::numberPad2 = (XK_KP_2 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::numberPad3 = (XK_KP_3 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::numberPad4 = (XK_KP_4 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::numberPad5 = (XK_KP_5 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::numberPad6 = (XK_KP_6 & 0xff) | Keys::extendedKeyModifier; const int KeyPress::numberPad7 = (XK_KP_7 & 0xff)| Keys::extendedKeyModifier; const int KeyPress::numberPad8 = (XK_KP_8 & 0xff)| Keys::extendedKeyModifier; const int KeyPress::numberPad9 = (XK_KP_9 & 0xff)| Keys::extendedKeyModifier; const int KeyPress::numberPadAdd = (XK_KP_Add & 0xff)| Keys::extendedKeyModifier; const int KeyPress::numberPadSubtract = (XK_KP_Subtract & 0xff)| Keys::extendedKeyModifier; const int KeyPress::numberPadMultiply = (XK_KP_Multiply & 0xff)| Keys::extendedKeyModifier; const int KeyPress::numberPadDivide = (XK_KP_Divide & 0xff)| Keys::extendedKeyModifier; const int KeyPress::numberPadSeparator = (XK_KP_Separator & 0xff)| Keys::extendedKeyModifier; const int KeyPress::numberPadDecimalPoint = (XK_KP_Decimal & 0xff)| Keys::extendedKeyModifier; const int KeyPress::numberPadEquals = (XK_KP_Equal & 0xff)| Keys::extendedKeyModifier; const int KeyPress::numberPadDelete = (XK_KP_Delete & 0xff)| Keys::extendedKeyModifier; const int KeyPress::playKey = ((int) 0xffeeff00) | Keys::extendedKeyModifier; const int KeyPress::stopKey = ((int) 0xffeeff01) | Keys::extendedKeyModifier; const int KeyPress::fastForwardKey = ((int) 0xffeeff02) | Keys::extendedKeyModifier; const int KeyPress::rewindKey = ((int) 0xffeeff03) | Keys::extendedKeyModifier; //================================== X11 - Shm ================================= #if JUCE_USE_XSHM namespace XSHMHelpers { static int trappedErrorCode = 0; extern "C" int errorTrapHandler (Display*, XErrorEvent* err) { trappedErrorCode = err->error_code; return 0; } static bool isShmAvailable (::Display* display) noexcept { static bool isChecked = false; static bool isAvailable = false; if (! isChecked) { isChecked = true; if (display != nullptr) { int major, minor; Bool pixmaps; ScopedXLock xlock (display); if (XShmQueryVersion (display, &major, &minor, &pixmaps)) { trappedErrorCode = 0; XErrorHandler oldHandler = XSetErrorHandler (errorTrapHandler); XShmSegmentInfo segmentInfo; zerostruct (segmentInfo); if (auto* xImage = XShmCreateImage (display, DefaultVisual (display, DefaultScreen (display)), 24, ZPixmap, 0, &segmentInfo, 50, 50)) { if ((segmentInfo.shmid = shmget (IPC_PRIVATE, (size_t) (xImage->bytes_per_line * xImage->height), IPC_CREAT | 0777)) >= 0) { segmentInfo.shmaddr = (char*) shmat (segmentInfo.shmid, 0, 0); if (segmentInfo.shmaddr != (void*) -1) { segmentInfo.readOnly = False; xImage->data = segmentInfo.shmaddr; XSync (display, False); if (XShmAttach (display, &segmentInfo) != 0) { XSync (display, False); XShmDetach (display, &segmentInfo); isAvailable = true; } } XFlush (display); XDestroyImage (xImage); shmdt (segmentInfo.shmaddr); } shmctl (segmentInfo.shmid, IPC_RMID, 0); XSetErrorHandler (oldHandler); if (trappedErrorCode != 0) isAvailable = false; } } } } return isAvailable; } } #endif //=============================== X11 - Render ================================= #if JUCE_USE_XRENDER namespace XRender { typedef Status (*tXRenderQueryVersion) (Display*, int*, int*); typedef XRenderPictFormat* (*tXRenderFindStandardFormat) (Display*, int); typedef XRenderPictFormat* (*tXRenderFindFormat) (Display*, unsigned long, XRenderPictFormat*, int); typedef XRenderPictFormat* (*tXRenderFindVisualFormat) (Display*, Visual*); static tXRenderQueryVersion xRenderQueryVersion = nullptr; static tXRenderFindStandardFormat xRenderFindStandardFormat = nullptr; static tXRenderFindFormat xRenderFindFormat = nullptr; static tXRenderFindVisualFormat xRenderFindVisualFormat = nullptr; static bool isAvailable (::Display* display) { static bool hasLoaded = false; if (! hasLoaded) { if (display != nullptr) { hasLoaded = true; ScopedXLock xlock (display); if (void* h = dlopen ("libXrender.so.1", RTLD_GLOBAL | RTLD_NOW)) { xRenderQueryVersion = (tXRenderQueryVersion) dlsym (h, "XRenderQueryVersion"); xRenderFindStandardFormat = (tXRenderFindStandardFormat) dlsym (h, "XRenderFindStandardFormat"); xRenderFindFormat = (tXRenderFindFormat) dlsym (h, "XRenderFindFormat"); xRenderFindVisualFormat = (tXRenderFindVisualFormat) dlsym (h, "XRenderFindVisualFormat"); } if (xRenderQueryVersion != nullptr && xRenderFindStandardFormat != nullptr && xRenderFindFormat != nullptr && xRenderFindVisualFormat != nullptr) { int major, minor; if (xRenderQueryVersion (display, &major, &minor)) return true; } } xRenderQueryVersion = nullptr; } return xRenderQueryVersion != nullptr; } static bool hasCompositingWindowManager (::Display* display) noexcept { return display != nullptr && XGetSelectionOwner (display, Atoms::getCreating ("_NET_WM_CM_S0")) != 0; } static XRenderPictFormat* findPictureFormat (::Display* display) { ScopedXLock xlock (display); XRenderPictFormat* pictFormat = nullptr; if (isAvailable()) { pictFormat = xRenderFindStandardFormat (display, PictStandardARGB32); if (pictFormat == nullptr) { XRenderPictFormat desiredFormat; desiredFormat.type = PictTypeDirect; desiredFormat.depth = 32; desiredFormat.direct.alphaMask = 0xff; desiredFormat.direct.redMask = 0xff; desiredFormat.direct.greenMask = 0xff; desiredFormat.direct.blueMask = 0xff; desiredFormat.direct.alpha = 24; desiredFormat.direct.red = 16; desiredFormat.direct.green = 8; desiredFormat.direct.blue = 0; pictFormat = xRenderFindFormat (display, PictFormatType | PictFormatDepth | PictFormatRedMask | PictFormatRed | PictFormatGreenMask | PictFormatGreen | PictFormatBlueMask | PictFormatBlue | PictFormatAlphaMask | PictFormatAlpha, &desiredFormat, 0); } } return pictFormat; } } #endif //================================ X11 - Visuals =============================== namespace Visuals { static Visual* findVisualWithDepth (::Display* display, int desiredDepth) noexcept { ScopedXLock xlock (display); Visual* visual = nullptr; int numVisuals = 0; long desiredMask = VisualNoMask; XVisualInfo desiredVisual; desiredVisual.screen = DefaultScreen (display); desiredVisual.depth = desiredDepth; desiredMask = VisualScreenMask | VisualDepthMask; if (desiredDepth == 32) { desiredVisual.c_class = TrueColor; desiredVisual.red_mask = 0x00FF0000; desiredVisual.green_mask = 0x0000FF00; desiredVisual.blue_mask = 0x000000FF; desiredVisual.bits_per_rgb = 8; desiredMask |= VisualClassMask; desiredMask |= VisualRedMaskMask; desiredMask |= VisualGreenMaskMask; desiredMask |= VisualBlueMaskMask; desiredMask |= VisualBitsPerRGBMask; } if (auto* xvinfos = XGetVisualInfo (display, desiredMask, &desiredVisual, &numVisuals)) { for (int i = 0; i < numVisuals; i++) { if (xvinfos[i].depth == desiredDepth) { visual = xvinfos[i].visual; break; } } XFree (xvinfos); } return visual; } static Visual* findVisualFormat (::Display* display, int desiredDepth, int& matchedDepth) noexcept { Visual* visual = nullptr; if (desiredDepth == 32) { #if JUCE_USE_XSHM if (XSHMHelpers::isShmAvailable (display)) { #if JUCE_USE_XRENDER if (XRender::isAvailable (display)) { if (auto pictFormat = XRender::findPictureFormat (display)) { int numVisuals = 0; XVisualInfo desiredVisual; desiredVisual.screen = DefaultScreen (display); desiredVisual.depth = 32; desiredVisual.bits_per_rgb = 8; if (auto xvinfos = XGetVisualInfo (display, VisualScreenMask | VisualDepthMask | VisualBitsPerRGBMask, &desiredVisual, &numVisuals)) { for (int i = 0; i < numVisuals; ++i) { auto pictVisualFormat = XRender::xRenderFindVisualFormat (display, xvinfos[i].visual); if (pictVisualFormat != nullptr && pictVisualFormat->type == PictTypeDirect && pictVisualFormat->direct.alphaMask) { visual = xvinfos[i].visual; matchedDepth = 32; break; } } XFree (xvinfos); } } } #endif if (visual == nullptr) { visual = findVisualWithDepth (display, 32); if (visual != nullptr) matchedDepth = 32; } } #endif } if (visual == nullptr && desiredDepth >= 24) { visual = findVisualWithDepth (display, 24); if (visual != nullptr) matchedDepth = 24; } if (visual == nullptr && desiredDepth >= 16) { visual = findVisualWithDepth (display, 16); if (visual != nullptr) matchedDepth = 16; } return visual; } } //================================= X11 - Bitmap =============================== class XBitmapImage : public ImagePixelData { public: XBitmapImage (::Display* d, Image::PixelFormat format, int w, int h, bool clearImage, unsigned int imageDepth_, Visual* visual) : ImagePixelData (format, w, h), imageDepth (imageDepth_), display (d) { jassert (format == Image::RGB || format == Image::ARGB); pixelStride = (format == Image::RGB) ? 3 : 4; lineStride = ((w * pixelStride + 3) & ~3); ScopedXLock xlock (display); #if JUCE_USE_XSHM usingXShm = false; if ((imageDepth > 16) && XSHMHelpers::isShmAvailable (display)) { zerostruct (segmentInfo); segmentInfo.shmid = -1; segmentInfo.shmaddr = (char *) -1; segmentInfo.readOnly = False; xImage = XShmCreateImage (display, visual, imageDepth, ZPixmap, 0, &segmentInfo, (unsigned int) w, (unsigned int) h); if (xImage != nullptr) { if ((segmentInfo.shmid = shmget (IPC_PRIVATE, (size_t) (xImage->bytes_per_line * xImage->height), IPC_CREAT | 0777)) >= 0) { if (segmentInfo.shmid != -1) { segmentInfo.shmaddr = (char*) shmat (segmentInfo.shmid, 0, 0); if (segmentInfo.shmaddr != (void*) -1) { segmentInfo.readOnly = False; xImage->data = segmentInfo.shmaddr; imageData = (uint8*) segmentInfo.shmaddr; if (XShmAttach (display, &segmentInfo) != 0) usingXShm = true; else jassertfalse; } else { shmctl (segmentInfo.shmid, IPC_RMID, 0); } } } } } if (! isUsingXShm()) #endif { imageDataAllocated.allocate ((size_t) (lineStride * h), format == Image::ARGB && clearImage); imageData = imageDataAllocated; xImage = (XImage*) ::calloc (1, sizeof (XImage)); xImage->width = w; xImage->height = h; xImage->xoffset = 0; xImage->format = ZPixmap; xImage->data = (char*) imageData; xImage->byte_order = ImageByteOrder (display); xImage->bitmap_unit = BitmapUnit (display); xImage->bitmap_bit_order = BitmapBitOrder (display); xImage->bitmap_pad = 32; xImage->depth = pixelStride * 8; xImage->bytes_per_line = lineStride; xImage->bits_per_pixel = pixelStride * 8; xImage->red_mask = 0x00FF0000; xImage->green_mask = 0x0000FF00; xImage->blue_mask = 0x000000FF; if (imageDepth == 16) { const int pixStride = 2; const int stride = ((w * pixStride + 3) & ~3); imageData16Bit.malloc (stride * h); xImage->data = imageData16Bit; xImage->bitmap_pad = 16; xImage->depth = pixStride * 8; xImage->bytes_per_line = stride; xImage->bits_per_pixel = pixStride * 8; xImage->red_mask = visual->red_mask; xImage->green_mask = visual->green_mask; xImage->blue_mask = visual->blue_mask; } if (! XInitImage (xImage)) jassertfalse; } } ~XBitmapImage() { ScopedXLock xlock (display); if (gc != None) XFreeGC (display, gc); #if JUCE_USE_XSHM if (isUsingXShm()) { XShmDetach (display, &segmentInfo); XFlush (display); XDestroyImage (xImage); shmdt (segmentInfo.shmaddr); shmctl (segmentInfo.shmid, IPC_RMID, 0); } else #endif { xImage->data = nullptr; XDestroyImage (xImage); } } LowLevelGraphicsContext* createLowLevelContext() override { sendDataChangeMessage(); return new LowLevelGraphicsSoftwareRenderer (Image (this)); } void initialiseBitmapData (Image::BitmapData& bitmap, int x, int y, Image::BitmapData::ReadWriteMode mode) override { bitmap.data = imageData + x * pixelStride + y * lineStride; bitmap.pixelFormat = pixelFormat; bitmap.lineStride = lineStride; bitmap.pixelStride = pixelStride; if (mode != Image::BitmapData::readOnly) sendDataChangeMessage(); } ImagePixelData::Ptr clone() override { jassertfalse; return nullptr; } ImageType* createType() const override { return new NativeImageType(); } void blitToWindow (Window window, int dx, int dy, unsigned int dw, unsigned int dh, int sx, int sy) { ScopedXLock xlock (display); if (gc == None) { XGCValues gcvalues; gcvalues.foreground = None; gcvalues.background = None; gcvalues.function = GXcopy; gcvalues.plane_mask = AllPlanes; gcvalues.clip_mask = None; gcvalues.graphics_exposures = False; gc = XCreateGC (display, window, GCBackground | GCForeground | GCFunction | GCPlaneMask | GCClipMask | GCGraphicsExposures, &gcvalues); } if (imageDepth == 16) { auto rMask = (uint32) xImage->red_mask; auto gMask = (uint32) xImage->green_mask; auto bMask = (uint32) xImage->blue_mask; auto rShiftL = (uint32) jmax (0, getShiftNeeded (rMask)); auto rShiftR = (uint32) jmax (0, -getShiftNeeded (rMask)); auto gShiftL = (uint32) jmax (0, getShiftNeeded (gMask)); auto gShiftR = (uint32) jmax (0, -getShiftNeeded (gMask)); auto bShiftL = (uint32) jmax (0, getShiftNeeded (bMask)); auto bShiftR = (uint32) jmax (0, -getShiftNeeded (bMask)); const Image::BitmapData srcData (Image (this), Image::BitmapData::readOnly); for (int y = sy; y < sy + (int)dh; ++y) { const uint8* p = srcData.getPixelPointer (sx, y); for (int x = sx; x < sx + (int)dw; ++x) { auto* pixel = (const PixelRGB*) p; p += srcData.pixelStride; XPutPixel (xImage, x, y, (((((uint32) pixel->getRed()) << rShiftL) >> rShiftR) & rMask) | (((((uint32) pixel->getGreen()) << gShiftL) >> gShiftR) & gMask) | (((((uint32) pixel->getBlue()) << bShiftL) >> bShiftR) & bMask)); } } } // blit results to screen. #if JUCE_USE_XSHM if (isUsingXShm()) XShmPutImage (display, (::Drawable) window, gc, xImage, sx, sy, dx, dy, dw, dh, True); else #endif XPutImage (display, (::Drawable) window, gc, xImage, sx, sy, dx, dy, dw, dh); } #if JUCE_USE_XSHM bool isUsingXShm() const noexcept { return usingXShm; } #endif private: //============================================================================== XImage* xImage = {}; const unsigned int imageDepth; HeapBlock<uint8> imageDataAllocated; HeapBlock<char> imageData16Bit; int pixelStride, lineStride; uint8* imageData = {}; GC gc = None; ::Display* display = {}; #if JUCE_USE_XSHM XShmSegmentInfo segmentInfo; bool usingXShm; #endif static int getShiftNeeded (const uint32 mask) noexcept { for (int i = 32; --i >= 0;) if (((mask >> i) & 1) != 0) return i - 7; jassertfalse; return 0; } JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (XBitmapImage) }; //============================================================================== #if JUCE_USE_XINERAMA static Array<XineramaScreenInfo> XineramaQueryDisplays (::Display* display) { typedef Bool (*tXineramaIsActive) (::Display*); typedef XineramaScreenInfo* (*tXineramaQueryScreens) (::Display*, int*); int major_opcode, first_event, first_error; if (XQueryExtension (display, "XINERAMA", &major_opcode, &first_event, &first_error)) { static void* libXinerama = nullptr; static tXineramaIsActive isActiveFuncPtr = nullptr; static tXineramaQueryScreens xineramaQueryScreens = nullptr; if (libXinerama == nullptr) { libXinerama = dlopen ("libXinerama.so", RTLD_GLOBAL | RTLD_NOW); if (libXinerama == nullptr) libXinerama = dlopen ("libXinerama.so.1", RTLD_GLOBAL | RTLD_NOW); if (libXinerama != nullptr) { isActiveFuncPtr = (tXineramaIsActive) dlsym (libXinerama, "XineramaIsActive"); xineramaQueryScreens = (tXineramaQueryScreens) dlsym (libXinerama, "XineramaQueryScreens"); } } if (isActiveFuncPtr != nullptr && xineramaQueryScreens != nullptr && isActiveFuncPtr (display) != 0) { int numScreens; if (auto* xinfo = xineramaQueryScreens (display, &numScreens)) { Array<XineramaScreenInfo> infos (xinfo, numScreens); XFree (xinfo); return infos; } } } return {}; } #endif //============================================================================== #if JUCE_USE_XRANDR class XRandrWrapper { private: XRandrWrapper() { if (libXrandr == nullptr) { libXrandr = dlopen ("libXrandr.so", RTLD_GLOBAL | RTLD_NOW); if (libXrandr == nullptr) libXrandr = dlopen ("libXrandr.so.2", RTLD_GLOBAL | RTLD_NOW); if (libXrandr != nullptr) { getScreenResourcesPtr = (tXRRGetScreenResources) dlsym (libXrandr, "XRRGetScreenResources"); freeScreenResourcesPtr = (tXRRFreeScreenResources) dlsym (libXrandr, "XRRFreeScreenResources"); getOutputInfoPtr = (tXRRGetOutputInfo) dlsym (libXrandr, "XRRGetOutputInfo"); freeOutputInfoPtr = (tXRRFreeOutputInfo) dlsym (libXrandr, "XRRFreeOutputInfo"); getCrtcInfoPtr = (tXRRGetCrtcInfo) dlsym (libXrandr, "XRRGetCrtcInfo"); freeCrtcInfoPtr = (tXRRFreeCrtcInfo) dlsym (libXrandr, "XRRFreeCrtcInfo"); getOutputPrimaryPtr = (tXRRGetOutputPrimary) dlsym (libXrandr, "XRRGetOutputPrimary"); } } } public: //============================================================================== static XRandrWrapper& getInstance() { static XRandrWrapper xrandr; return xrandr; } //============================================================================== XRRScreenResources* getScreenResources (::Display* display, ::Window window) { if (getScreenResourcesPtr != nullptr) return getScreenResourcesPtr (display, window); return nullptr; } XRROutputInfo* getOutputInfo (::Display* display, XRRScreenResources* resources, RROutput output) { if (getOutputInfoPtr != nullptr) return getOutputInfoPtr (display, resources, output); return nullptr; } XRRCrtcInfo* getCrtcInfo (::Display* display, XRRScreenResources* resources, RRCrtc crtc) { if (getCrtcInfoPtr != nullptr) return getCrtcInfoPtr (display, resources, crtc); return nullptr; } RROutput getOutputPrimary (::Display* display, ::Window window) { if (getOutputPrimaryPtr != nullptr) return getOutputPrimaryPtr (display, window); return 0; } //============================================================================== void freeScreenResources (XRRScreenResources* ptr) { if (freeScreenResourcesPtr != nullptr) freeScreenResourcesPtr (ptr); } void freeOutputInfo (XRROutputInfo* ptr) { if (freeOutputInfoPtr != nullptr) freeOutputInfoPtr (ptr); } void freeCrtcInfo (XRRCrtcInfo* ptr) { if (freeCrtcInfoPtr != nullptr) freeCrtcInfoPtr (ptr); } private: using tXRRGetScreenResources = XRRScreenResources* (*) (::Display*, ::Window); using tXRRFreeScreenResources = void (*) (XRRScreenResources*); using tXRRGetOutputInfo = XRROutputInfo* (*) (::Display*, XRRScreenResources*, RROutput); using tXRRFreeOutputInfo = void (*) (XRROutputInfo*); using tXRRGetCrtcInfo = XRRCrtcInfo* (*) (::Display*, XRRScreenResources*, RRCrtc); using tXRRFreeCrtcInfo = void (*) (XRRCrtcInfo*); using tXRRGetOutputPrimary = RROutput (*) (::Display*, ::Window); void* libXrandr = nullptr; tXRRGetScreenResources getScreenResourcesPtr = nullptr; tXRRFreeScreenResources freeScreenResourcesPtr = nullptr; tXRRGetOutputInfo getOutputInfoPtr = nullptr; tXRRFreeOutputInfo freeOutputInfoPtr = nullptr; tXRRGetCrtcInfo getCrtcInfoPtr = nullptr; tXRRFreeCrtcInfo freeCrtcInfoPtr = nullptr; tXRRGetOutputPrimary getOutputPrimaryPtr = nullptr; }; #endif static double getDisplayDPI (::Display* display, int index) { double dpiX = (DisplayWidth (display, index) * 25.4) / DisplayWidthMM (display, index); double dpiY = (DisplayHeight (display, index) * 25.4) / DisplayHeightMM (display, index); return (dpiX + dpiY) / 2.0; } static double getScaleForDisplay (const String& name, double dpi) { if (name.isNotEmpty()) { // Ubuntu and derived distributions now save a per-display scale factor as a configuration // variable. This can be changed in the Monitor system settings panel. ChildProcess dconf; if (File ("/usr/bin/dconf").existsAsFile() && dconf.start ("/usr/bin/dconf read /com/ubuntu/user-interface/scale-factor", ChildProcess::wantStdOut)) { if (dconf.waitForProcessToFinish (200)) { auto jsonOutput = dconf.readAllProcessOutput().replaceCharacter ('\'', '"'); if (dconf.getExitCode() == 0 && jsonOutput.isNotEmpty()) { auto jsonVar = JSON::parse (jsonOutput); if (auto* object = jsonVar.getDynamicObject()) { auto scaleFactorVar = object->getProperty (name); if (! scaleFactorVar.isVoid()) { auto scaleFactor = ((double) scaleFactorVar) / 8.0; if (scaleFactor > 0.0) return scaleFactor; } } } } } } { // Other gnome based distros now use gsettings for a global scale factor ChildProcess gsettings; if (File ("/usr/bin/gsettings").existsAsFile() && gsettings.start ("/usr/bin/gsettings get org.gnome.desktop.interface scaling-factor", ChildProcess::wantStdOut)) { if (gsettings.waitForProcessToFinish (200)) { auto gsettingsOutput = StringArray::fromTokens (gsettings.readAllProcessOutput(), true); if (gsettingsOutput.size() >= 2 && gsettingsOutput[1].length() > 0) { auto scaleFactor = gsettingsOutput[1].getDoubleValue(); if (scaleFactor > 0.0) return scaleFactor; } } } } // If no scale factor is set by GNOME or Ubuntu then calculate from monitor dpi // We use the same approach as chromium which simply divides the dpi by 96 // and then rounds the result return round (dpi / 150.0); } //=============================== X11 - Pixmap ================================= namespace PixmapHelpers { Pixmap createColourPixmapFromImage (::Display* display, const Image& image) { ScopedXLock xlock (display); auto width = (unsigned int) image.getWidth(); auto height = (unsigned int) image.getHeight(); HeapBlock<uint32> colour (width * height); int index = 0; for (int y = 0; y < (int) height; ++y) for (int x = 0; x < (int) width; ++x) colour[index++] = image.getPixelAt (x, y).getARGB(); XImage* ximage = XCreateImage (display, CopyFromParent, 24, ZPixmap, 0, reinterpret_cast<char*> (colour.getData()), width, height, 32, 0); Pixmap pixmap = XCreatePixmap (display, DefaultRootWindow (display), width, height, 24); GC gc = XCreateGC (display, pixmap, 0, 0); XPutImage (display, pixmap, gc, ximage, 0, 0, 0, 0, width, height); XFreeGC (display, gc); return pixmap; } Pixmap createMaskPixmapFromImage (::Display* display, const Image& image) { ScopedXLock xlock (display); auto width = (unsigned int) image.getWidth(); auto height = (unsigned int) image.getHeight(); auto stride = (width + 7) >> 3; HeapBlock<char> mask; mask.calloc (stride * height); const bool msbfirst = (BitmapBitOrder (display) == MSBFirst); for (unsigned int y = 0; y < height; ++y) { for (unsigned int x = 0; x < width; ++x) { auto bit = (char) (1 << (msbfirst ? (7 - (x & 7)) : (x & 7))); const unsigned int offset = y * stride + (x >> 3); if (image.getPixelAt ((int) x, (int) y).getAlpha() >= 128) mask[offset] |= bit; } } return XCreatePixmapFromBitmapData (display, DefaultRootWindow (display), mask.getData(), width, height, 1, 0, 1); } } static void* createDraggingHandCursor() { static unsigned char dragHandData[] = { 71,73,70,56,57,97,16,0,16,0,145,2,0,0,0,0,255,255,255,0, 0,0,0,0,0,33,249,4,1,0,0,2,0,44,0,0,0,0,16,0, 16,0,0,2,52,148,47,0,200,185,16,130,90,12,74,139,107,84,123,39, 132,117,151,116,132,146,248,60,209,138,98,22,203,114,34,236,37,52,77,217, 247,154,191,119,110,240,193,128,193,95,163,56,60,234,98,135,2,0,59 }; const int dragHandDataSize = 99; return CustomMouseCursorInfo (ImageFileFormat::loadFrom (dragHandData, dragHandDataSize), { 8, 7 }).create(); } //============================================================================== static int numAlwaysOnTopPeers = 0; bool juce_areThereAnyAlwaysOnTopWindows() { return numAlwaysOnTopPeers > 0; } //============================================================================== class LinuxComponentPeer : public ComponentPeer { public: LinuxComponentPeer (Component& comp, int windowStyleFlags, Window parentToAddTo) : ComponentPeer (comp, windowStyleFlags), isAlwaysOnTop (comp.isAlwaysOnTop()) { // it's dangerous to create a window on a thread other than the message thread.. jassert (MessageManager::getInstance()->currentThreadHasLockedMessageManager()); display = XWindowSystem::getInstance()->displayRef(); atoms.reset (new Atoms (display)); dragState.reset (new DragState (display)); repainter.reset (new LinuxRepaintManager (*this, display)); if (isAlwaysOnTop) ++numAlwaysOnTopPeers; createWindow (parentToAddTo); setTitle (component.getName()); getNativeRealtimeModifiers = [] { ScopedXDisplay xDisplay; if (auto display = xDisplay.display) { Window root, child; int x, y, winx, winy; unsigned int mask; int mouseMods = 0; ScopedXLock xlock (display); if (XQueryPointer (display, RootWindow (display, DefaultScreen (display)), &root, &child, &x, &y, &winx, &winy, &mask) != False) { if ((mask & Button1Mask) != 0) mouseMods |= ModifierKeys::leftButtonModifier; if ((mask & Button2Mask) != 0) mouseMods |= ModifierKeys::middleButtonModifier; if ((mask & Button3Mask) != 0) mouseMods |= ModifierKeys::rightButtonModifier; } ModifierKeys::currentModifiers = ModifierKeys::currentModifiers.withoutMouseButtons().withFlags (mouseMods); } return ModifierKeys::currentModifiers; }; } ~LinuxComponentPeer() { // it's dangerous to delete a window on a thread other than the message thread.. jassert (MessageManager::getInstance()->currentThreadHasLockedMessageManager()); #if JUCE_X11_SUPPORTS_XEMBED juce_handleXEmbedEvent (this, nullptr); #endif deleteIconPixmaps(); destroyWindow(); windowH = 0; if (isAlwaysOnTop) --numAlwaysOnTopPeers; // delete before display repainter = nullptr; display = XWindowSystem::getInstance()->displayUnref(); } //============================================================================== void* getNativeHandle() const override { return (void*) windowH; } static LinuxComponentPeer* getPeerFor (Window windowHandle) noexcept { XPointer peer = nullptr; if (display != nullptr) { ScopedXLock xlock (display); if (! XFindContext (display, (XID) windowHandle, windowHandleXContext, &peer)) if (peer != nullptr && ! ComponentPeer::isValidPeer (reinterpret_cast<LinuxComponentPeer*> (peer))) peer = nullptr; } return reinterpret_cast<LinuxComponentPeer*> (peer); } void setVisible (bool shouldBeVisible) override { ScopedXLock xlock (display); if (shouldBeVisible) XMapWindow (display, windowH); else XUnmapWindow (display, windowH); } void setTitle (const String& title) override { XTextProperty nameProperty; char* strings[] = { const_cast<char*> (title.toRawUTF8()) }; ScopedXLock xlock (display); if (XStringListToTextProperty (strings, 1, &nameProperty)) { XSetWMName (display, windowH, &nameProperty); XSetWMIconName (display, windowH, &nameProperty); XFree (nameProperty.value); } } void setBounds (const Rectangle<int>& newBounds, bool isNowFullScreen) override { if (fullScreen && ! isNowFullScreen) { // When transitioning back from fullscreen, we might need to remove // the FULLSCREEN window property Atom fs = Atoms::getIfExists (display, "_NET_WM_STATE_FULLSCREEN"); if (fs != None) { Window root = RootWindow (display, DefaultScreen (display)); XClientMessageEvent clientMsg; clientMsg.display = display; clientMsg.window = windowH; clientMsg.type = ClientMessage; clientMsg.format = 32; clientMsg.message_type = atoms->windowState; clientMsg.data.l[0] = 0; // Remove clientMsg.data.l[1] = (long) fs; clientMsg.data.l[2] = 0; clientMsg.data.l[3] = 1; // Normal Source ScopedXLock xlock (display); XSendEvent (display, root, false, SubstructureRedirectMask | SubstructureNotifyMask, (XEvent*) &clientMsg); } } fullScreen = isNowFullScreen; if (windowH != 0) { bounds = newBounds.withSize (jmax (1, newBounds.getWidth()), jmax (1, newBounds.getHeight())); auto& displays = Desktop::getInstance().getDisplays(); auto newScaleFactor = displays.findDisplayForRect (bounds, true).scale; if (! approximatelyEqual (newScaleFactor, currentScaleFactor)) { currentScaleFactor = newScaleFactor; scaleFactorListeners.call ([&] (ScaleFactorListener& l) { l.nativeScaleFactorChanged (currentScaleFactor); }); } auto physicalBounds = displays.logicalToPhysical (bounds); WeakReference<Component> deletionChecker (&component); ScopedXLock xlock (display); auto* hints = XAllocSizeHints(); hints->flags = USSize | USPosition; hints->x = physicalBounds.getX(); hints->y = physicalBounds.getY(); hints->width = physicalBounds.getWidth(); hints->height = physicalBounds.getHeight(); if ((getStyleFlags() & windowIsResizable) == 0) { hints->min_width = hints->max_width = hints->width; hints->min_height = hints->max_height = hints->height; hints->flags |= PMinSize | PMaxSize; } XSetWMNormalHints (display, windowH, hints); XFree (hints); XMoveResizeWindow (display, windowH, physicalBounds.getX() - windowBorder.getLeft(), physicalBounds.getY() - windowBorder.getTop(), (unsigned int) physicalBounds.getWidth(), (unsigned int) physicalBounds.getHeight()); if (deletionChecker != nullptr) { updateBorderSize(); handleMovedOrResized(); } } } Rectangle<int> getBounds() const override { return bounds; } Point<float> localToGlobal (Point<float> relativePosition) override { return relativePosition + bounds.getPosition().toFloat(); } Point<float> globalToLocal (Point<float> screenPosition) override { return screenPosition - bounds.getPosition().toFloat(); } void setAlpha (float /* newAlpha */) override { //xxx todo! } StringArray getAvailableRenderingEngines() override { return StringArray ("Software Renderer"); } void setMinimised (bool shouldBeMinimised) override { if (shouldBeMinimised) { Window root = RootWindow (display, DefaultScreen (display)); XClientMessageEvent clientMsg; clientMsg.display = display; clientMsg.window = windowH; clientMsg.type = ClientMessage; clientMsg.format = 32; clientMsg.message_type = atoms->changeState; clientMsg.data.l[0] = IconicState; ScopedXLock xlock (display); XSendEvent (display, root, false, SubstructureRedirectMask | SubstructureNotifyMask, (XEvent*) &clientMsg); } else { setVisible (true); } } bool isMinimised() const override { ScopedXLock xlock (display); GetXProperty prop (display, windowH, atoms->state, 0, 64, false, atoms->state); return prop.success && prop.actualType == atoms->state && prop.actualFormat == 32 && prop.numItems > 0 && ((unsigned long*) prop.data)[0] == IconicState; } void setFullScreen (bool shouldBeFullScreen) override { auto r = lastNonFullscreenBounds; // (get a copy of this before de-minimising) setMinimised (false); if (fullScreen != shouldBeFullScreen) { if (shouldBeFullScreen) r = Desktop::getInstance().getDisplays().getMainDisplay().userArea; if (! r.isEmpty()) setBounds (ScalingHelpers::scaledScreenPosToUnscaled (component, r), shouldBeFullScreen); component.repaint(); } } bool isFullScreen() const override { return fullScreen; } bool isChildWindowOf (Window possibleParent) const { Window* windowList = nullptr; uint32 windowListSize = 0; Window parent, root; ScopedXLock xlock (display); if (XQueryTree (display, windowH, &root, &parent, &windowList, &windowListSize) != 0) { if (windowList != nullptr) XFree (windowList); return parent == possibleParent; } return false; } bool isParentWindowOf (Window possibleChild) const { if (windowH != 0 && possibleChild != 0) { if (possibleChild == windowH) return true; Window* windowList = nullptr; uint32 windowListSize = 0; Window parent, root; ScopedXLock xlock (display); if (XQueryTree (display, possibleChild, &root, &parent, &windowList, &windowListSize) != 0) { if (windowList != nullptr) XFree (windowList); if (parent == root) return false; return isParentWindowOf (parent); } } return false; } bool isFrontWindow() const { Window* windowList = nullptr; uint32 windowListSize = 0; bool result = false; ScopedXLock xlock (display); Window parent, root = RootWindow (display, DefaultScreen (display)); if (XQueryTree (display, root, &root, &parent, &windowList, &windowListSize) != 0) { for (int i = (int) windowListSize; --i >= 0;) { if (auto* peer = LinuxComponentPeer::getPeerFor (windowList[i])) { result = (peer == this); break; } } } if (windowList != nullptr) XFree (windowList); return result; } bool contains (Point<int> localPos, bool trueIfInAChildWindow) const override { if (! bounds.withZeroOrigin().contains (localPos)) return false; for (int i = Desktop::getInstance().getNumComponents(); --i >= 0;) { auto* c = Desktop::getInstance().getComponent (i); if (c == &component) break; if (! c->isVisible()) continue; if (auto* peer = c->getPeer()) if (peer->contains (localPos + bounds.getPosition() - peer->getBounds().getPosition(), true)) return false; } if (trueIfInAChildWindow) return true; ::Window root, child; int wx, wy; unsigned int ww, wh, bw, bitDepth; ScopedXLock xlock (display); localPos *= currentScaleFactor; return XGetGeometry (display, (::Drawable) windowH, &root, &wx, &wy, &ww, &wh, &bw, &bitDepth) && XTranslateCoordinates (display, windowH, windowH, localPos.getX(), localPos.getY(), &wx, &wy, &child) && child == None; } BorderSize<int> getFrameSize() const override { return {}; } bool setAlwaysOnTop (bool /* alwaysOnTop */) override { return false; } void toFront (bool makeActive) override { if (makeActive) { setVisible (true); grabFocus(); } { ScopedXLock xlock (display); XEvent ev; ev.xclient.type = ClientMessage; ev.xclient.serial = 0; ev.xclient.send_event = True; ev.xclient.message_type = atoms->activeWin; ev.xclient.window = windowH; ev.xclient.format = 32; ev.xclient.data.l[0] = 2; ev.xclient.data.l[1] = getUserTime(); ev.xclient.data.l[2] = 0; ev.xclient.data.l[3] = 0; ev.xclient.data.l[4] = 0; XSendEvent (display, RootWindow (display, DefaultScreen (display)), False, SubstructureRedirectMask | SubstructureNotifyMask, &ev); XSync (display, False); } handleBroughtToFront(); } void toBehind (ComponentPeer* other) override { if (auto* otherPeer = dynamic_cast<LinuxComponentPeer*> (other)) { if (otherPeer->styleFlags & windowIsTemporary) return; setMinimised (false); Window newStack[] = { otherPeer->windowH, windowH }; ScopedXLock xlock (display); XRestackWindows (display, newStack, 2); } else jassertfalse; // wrong type of window? } bool isFocused() const override { int revert = 0; Window focusedWindow = 0; ScopedXLock xlock (display); XGetInputFocus (display, &focusedWindow, &revert); return isParentWindowOf (focusedWindow); } Window getFocusWindow() { #if JUCE_X11_SUPPORTS_XEMBED if (Window w = (Window) juce_getCurrentFocusWindow (this)) return w; #endif return windowH; } void grabFocus() override { XWindowAttributes atts; ScopedXLock xlock (display); if (windowH != 0 && XGetWindowAttributes (display, windowH, &atts) && atts.map_state == IsViewable && ! isFocused()) { XSetInputFocus (display, getFocusWindow(), RevertToParent, (::Time) getUserTime()); isActiveApplication = true; } } void textInputRequired (Point<int>, TextInputTarget&) override {} void repaint (const Rectangle<int>& area) override { repainter->repaint (area.getIntersection (bounds.withZeroOrigin())); } void performAnyPendingRepaintsNow() override { repainter->performAnyPendingRepaintsNow(); } void setIcon (const Image& newIcon) override { const int dataSize = newIcon.getWidth() * newIcon.getHeight() + 2; HeapBlock<unsigned long> data (dataSize); int index = 0; data[index++] = (unsigned long) newIcon.getWidth(); data[index++] = (unsigned long) newIcon.getHeight(); for (int y = 0; y < newIcon.getHeight(); ++y) for (int x = 0; x < newIcon.getWidth(); ++x) data[index++] = (unsigned long) newIcon.getPixelAt (x, y).getARGB(); ScopedXLock xlock (display); xchangeProperty (windowH, Atoms::getCreating (display, "_NET_WM_ICON"), XA_CARDINAL, 32, data.getData(), dataSize); deleteIconPixmaps(); XWMHints* wmHints = XGetWMHints (display, windowH); if (wmHints == nullptr) wmHints = XAllocWMHints(); wmHints->flags |= IconPixmapHint | IconMaskHint; wmHints->icon_pixmap = PixmapHelpers::createColourPixmapFromImage (display, newIcon); wmHints->icon_mask = PixmapHelpers::createMaskPixmapFromImage (display, newIcon); XSetWMHints (display, windowH, wmHints); XFree (wmHints); XSync (display, False); } void deleteIconPixmaps() { ScopedXLock xlock (display); if (auto* wmHints = XGetWMHints (display, windowH)) { if ((wmHints->flags & IconPixmapHint) != 0) { wmHints->flags &= ~IconPixmapHint; XFreePixmap (display, wmHints->icon_pixmap); } if ((wmHints->flags & IconMaskHint) != 0) { wmHints->flags &= ~IconMaskHint; XFreePixmap (display, wmHints->icon_mask); } XSetWMHints (display, windowH, wmHints); XFree (wmHints); } } //============================================================================== void handleWindowMessage (XEvent& event) { switch (event.xany.type) { case KeyPressEventType: handleKeyPressEvent (event.xkey); break; case KeyRelease: handleKeyReleaseEvent (event.xkey); break; case ButtonPress: handleButtonPressEvent (event.xbutton); break; case ButtonRelease: handleButtonReleaseEvent (event.xbutton); break; case MotionNotify: handleMotionNotifyEvent (event.xmotion); break; case EnterNotify: handleEnterNotifyEvent (event.xcrossing); break; case LeaveNotify: handleLeaveNotifyEvent (event.xcrossing); break; case FocusIn: handleFocusInEvent(); break; case FocusOut: handleFocusOutEvent(); break; case Expose: handleExposeEvent (event.xexpose); break; case MappingNotify: handleMappingNotify (event.xmapping); break; case ClientMessage: handleClientMessageEvent (event.xclient, event); break; case SelectionNotify: handleDragAndDropSelection (event); break; case ConfigureNotify: handleConfigureNotifyEvent (event.xconfigure); break; case ReparentNotify: handleReparentNotifyEvent(); break; case GravityNotify: handleGravityNotify(); break; case SelectionClear: handleExternalSelectionClear(); break; case SelectionRequest: handleExternalSelectionRequest (event); break; case CirculateNotify: case CreateNotify: case DestroyNotify: // Think we can ignore these break; case MapNotify: mapped = true; handleBroughtToFront(); break; case UnmapNotify: mapped = false; break; default: #if JUCE_USE_XSHM if (XSHMHelpers::isShmAvailable (display)) { ScopedXLock xlock (display); if (event.xany.type == XShmGetEventBase (display)) repainter->notifyPaintCompleted(); } #endif break; } } void handleKeyPressEvent (XKeyEvent& keyEvent) { auto oldMods = ModifierKeys::currentModifiers; char utf8 [64] = { 0 }; juce_wchar unicodeChar = 0; int keyCode = 0; bool keyDownChange = false; KeySym sym; { ScopedXLock xlock (display); updateKeyStates ((int) keyEvent.keycode, true); String oldLocale (::setlocale (LC_ALL, 0)); ::setlocale (LC_ALL, ""); XLookupString (&keyEvent, utf8, sizeof (utf8), &sym, 0); if (oldLocale.isNotEmpty()) ::setlocale (LC_ALL, oldLocale.toRawUTF8()); unicodeChar = *CharPointer_UTF8 (utf8); keyCode = (int) unicodeChar; if (keyCode < 0x20) keyCode = (int) XkbKeycodeToKeysym (display, (::KeyCode) keyEvent.keycode, 0, ModifierKeys::currentModifiers.isShiftDown() ? 1 : 0); keyDownChange = (sym != NoSymbol) && ! updateKeyModifiersFromSym (sym, true); } bool keyPressed = false; if ((sym & 0xff00) == 0xff00 || keyCode == XK_ISO_Left_Tab) { switch (sym) // Translate keypad { case XK_KP_Add: keyCode = XK_plus; break; case XK_KP_Subtract: keyCode = XK_hyphen; break; case XK_KP_Divide: keyCode = XK_slash; break; case XK_KP_Multiply: keyCode = XK_asterisk; break; case XK_KP_Enter: keyCode = XK_Return; break; case XK_KP_Insert: keyCode = XK_Insert; break; case XK_Delete: case XK_KP_Delete: keyCode = XK_Delete; break; case XK_KP_Left: keyCode = XK_Left; break; case XK_KP_Right: keyCode = XK_Right; break; case XK_KP_Up: keyCode = XK_Up; break; case XK_KP_Down: keyCode = XK_Down; break; case XK_KP_Home: keyCode = XK_Home; break; case XK_KP_End: keyCode = XK_End; break; case XK_KP_Page_Down: keyCode = XK_Page_Down; break; case XK_KP_Page_Up: keyCode = XK_Page_Up; break; case XK_KP_0: keyCode = XK_0; break; case XK_KP_1: keyCode = XK_1; break; case XK_KP_2: keyCode = XK_2; break; case XK_KP_3: keyCode = XK_3; break; case XK_KP_4: keyCode = XK_4; break; case XK_KP_5: keyCode = XK_5; break; case XK_KP_6: keyCode = XK_6; break; case XK_KP_7: keyCode = XK_7; break; case XK_KP_8: keyCode = XK_8; break; case XK_KP_9: keyCode = XK_9; break; default: break; } switch (keyCode) { case XK_Left: case XK_Right: case XK_Up: case XK_Down: case XK_Page_Up: case XK_Page_Down: case XK_End: case XK_Home: case XK_Delete: case XK_Insert: keyPressed = true; keyCode = (keyCode & 0xff) | Keys::extendedKeyModifier; break; case XK_Tab: case XK_Return: case XK_Escape: case XK_BackSpace: keyPressed = true; keyCode &= 0xff; break; case XK_ISO_Left_Tab: keyPressed = true; keyCode = XK_Tab & 0xff; break; default: if (sym >= XK_F1 && sym <= XK_F35) { keyPressed = true; keyCode = (sym & 0xff) | Keys::extendedKeyModifier; } break; } } if (utf8[0] != 0 || ((sym & 0xff00) == 0 && sym >= 8)) keyPressed = true; if (oldMods != ModifierKeys::currentModifiers) handleModifierKeysChange(); if (keyDownChange) handleKeyUpOrDown (true); if (keyPressed) handleKeyPress (keyCode, unicodeChar); } static bool isKeyReleasePartOfAutoRepeat (const XKeyEvent& keyReleaseEvent) { if (XPending (display)) { XEvent e; XPeekEvent (display, &e); // Look for a subsequent key-down event with the same timestamp and keycode return e.type == KeyPressEventType && e.xkey.keycode == keyReleaseEvent.keycode && e.xkey.time == keyReleaseEvent.time; } return false; } void handleKeyReleaseEvent (const XKeyEvent& keyEvent) { if (! isKeyReleasePartOfAutoRepeat (keyEvent)) { updateKeyStates ((int) keyEvent.keycode, false); KeySym sym; { ScopedXLock xlock (display); sym = XkbKeycodeToKeysym (display, (::KeyCode) keyEvent.keycode, 0, 0); } auto oldMods = ModifierKeys::currentModifiers; const bool keyDownChange = (sym != NoSymbol) && ! updateKeyModifiersFromSym (sym, false); if (oldMods != ModifierKeys::currentModifiers) handleModifierKeysChange(); if (keyDownChange) handleKeyUpOrDown (false); } } template <typename EventType> Point<float> getMousePos (const EventType& e) noexcept { return Point<float> ((float) e.x, (float) e.y) / currentScaleFactor; } void handleWheelEvent (const XButtonPressedEvent& buttonPressEvent, float amount) { MouseWheelDetails wheel; wheel.deltaX = 0.0f; wheel.deltaY = amount; wheel.isReversed = false; wheel.isSmooth = false; wheel.isInertial = false; handleMouseWheel (MouseInputSource::InputSourceType::mouse, getMousePos (buttonPressEvent), getEventTime (buttonPressEvent), wheel); } void handleButtonPressEvent (const XButtonPressedEvent& buttonPressEvent, int buttonModifierFlag) { ModifierKeys::currentModifiers = ModifierKeys::currentModifiers.withFlags (buttonModifierFlag); toFront (true); handleMouseEvent (MouseInputSource::InputSourceType::mouse, getMousePos (buttonPressEvent), ModifierKeys::currentModifiers, MouseInputSource::invalidPressure, MouseInputSource::invalidOrientation, getEventTime (buttonPressEvent), {}); } void handleButtonPressEvent (const XButtonPressedEvent& buttonPressEvent) { updateKeyModifiers ((int) buttonPressEvent.state); auto mapIndex = (uint32) (buttonPressEvent.button - Button1); if (mapIndex < (uint32) numElementsInArray (pointerMap)) { switch (pointerMap[mapIndex]) { case Keys::WheelUp: handleWheelEvent (buttonPressEvent, 50.0f / 256.0f); break; case Keys::WheelDown: handleWheelEvent (buttonPressEvent, -50.0f / 256.0f); break; case Keys::LeftButton: handleButtonPressEvent (buttonPressEvent, ModifierKeys::leftButtonModifier); break; case Keys::RightButton: handleButtonPressEvent (buttonPressEvent, ModifierKeys::rightButtonModifier); break; case Keys::MiddleButton: handleButtonPressEvent (buttonPressEvent, ModifierKeys::middleButtonModifier); break; default: break; } } clearLastMousePos(); } void handleButtonReleaseEvent (const XButtonReleasedEvent& buttonRelEvent) { updateKeyModifiers ((int) buttonRelEvent.state); if (parentWindow != 0) updateWindowBounds(); auto mapIndex = (uint32) (buttonRelEvent.button - Button1); if (mapIndex < (uint32) numElementsInArray (pointerMap)) { switch (pointerMap[mapIndex]) { case Keys::LeftButton: ModifierKeys::currentModifiers = ModifierKeys::currentModifiers.withoutFlags (ModifierKeys::leftButtonModifier); break; case Keys::RightButton: ModifierKeys::currentModifiers = ModifierKeys::currentModifiers.withoutFlags (ModifierKeys::rightButtonModifier); break; case Keys::MiddleButton: ModifierKeys::currentModifiers = ModifierKeys::currentModifiers.withoutFlags (ModifierKeys::middleButtonModifier); break; default: break; } } if (dragState->dragging) handleExternalDragButtonReleaseEvent(); handleMouseEvent (MouseInputSource::InputSourceType::mouse, getMousePos (buttonRelEvent), ModifierKeys::currentModifiers, MouseInputSource::invalidPressure, MouseInputSource::invalidOrientation, getEventTime (buttonRelEvent)); clearLastMousePos(); } void handleMotionNotifyEvent (const XPointerMovedEvent& movedEvent) { updateKeyModifiers ((int) movedEvent.state); lastMousePos = Point<int> (movedEvent.x_root, movedEvent.y_root); if (dragState->dragging) handleExternalDragMotionNotify(); handleMouseEvent (MouseInputSource::InputSourceType::mouse, getMousePos (movedEvent), ModifierKeys::currentModifiers, MouseInputSource::invalidPressure, MouseInputSource::invalidOrientation, getEventTime (movedEvent)); } void handleEnterNotifyEvent (const XEnterWindowEvent& enterEvent) { if (parentWindow != 0) updateWindowBounds(); clearLastMousePos(); if (! ModifierKeys::currentModifiers.isAnyMouseButtonDown()) { updateKeyModifiers ((int) enterEvent.state); handleMouseEvent (MouseInputSource::InputSourceType::mouse, getMousePos (enterEvent), ModifierKeys::currentModifiers, MouseInputSource::invalidPressure, MouseInputSource::invalidOrientation, getEventTime (enterEvent)); } } void handleLeaveNotifyEvent (const XLeaveWindowEvent& leaveEvent) { // Suppress the normal leave if we've got a pointer grab, or if // it's a bogus one caused by clicking a mouse button when running // in a Window manager if (((! ModifierKeys::currentModifiers.isAnyMouseButtonDown()) && leaveEvent.mode == NotifyNormal) || leaveEvent.mode == NotifyUngrab) { updateKeyModifiers ((int) leaveEvent.state); handleMouseEvent (MouseInputSource::InputSourceType::mouse, getMousePos (leaveEvent), ModifierKeys::currentModifiers, MouseInputSource::invalidPressure, MouseInputSource::invalidOrientation, getEventTime (leaveEvent)); } } void handleFocusInEvent() { isActiveApplication = true; if (isFocused() && ! focused) { focused = true; handleFocusGain(); } } void handleFocusOutEvent() { if (! isFocused() && focused) { focused = false; isActiveApplication = false; handleFocusLoss(); } } void handleExposeEvent (XExposeEvent& exposeEvent) { // Batch together all pending expose events XEvent nextEvent; ScopedXLock xlock (display); // if we have opengl contexts then just repaint them all // regardless if this is really necessary repaintOpenGLContexts(); if (exposeEvent.window != windowH) { Window child; XTranslateCoordinates (display, exposeEvent.window, windowH, exposeEvent.x, exposeEvent.y, &exposeEvent.x, &exposeEvent.y, &child); } // exposeEvent is in local window local coordinates so do not convert with // physicalToScaled, but rather use currentScaleFactor repaint (Rectangle<int> (exposeEvent.x, exposeEvent.y, exposeEvent.width, exposeEvent.height) / currentScaleFactor); while (XEventsQueued (display, QueuedAfterFlush) > 0) { XPeekEvent (display, &nextEvent); if (nextEvent.type != Expose || nextEvent.xany.window != exposeEvent.window) break; XNextEvent (display, &nextEvent); auto& nextExposeEvent = (const XExposeEvent&) nextEvent.xexpose; repaint (Rectangle<int> (nextExposeEvent.x, nextExposeEvent.y, nextExposeEvent.width, nextExposeEvent.height) / currentScaleFactor); } } void handleConfigureNotifyEvent (XConfigureEvent& confEvent) { updateWindowBounds(); updateBorderSize(); handleMovedOrResized(); // if the native title bar is dragged, need to tell any active menus, etc. if ((styleFlags & windowHasTitleBar) != 0 && component.isCurrentlyBlockedByAnotherModalComponent()) { if (auto* currentModalComp = Component::getCurrentlyModalComponent()) currentModalComp->inputAttemptWhenModal(); } if (confEvent.window == windowH && confEvent.above != 0 && isFrontWindow()) handleBroughtToFront(); } void handleReparentNotifyEvent() { parentWindow = 0; Window wRoot = 0; Window* wChild = nullptr; unsigned int numChildren; { ScopedXLock xlock (display); XQueryTree (display, windowH, &wRoot, &parentWindow, &wChild, &numChildren); } if (parentWindow == windowH || parentWindow == wRoot) parentWindow = 0; handleGravityNotify(); } void handleGravityNotify() { updateWindowBounds(); updateBorderSize(); handleMovedOrResized(); } void handleMappingNotify (XMappingEvent& mappingEvent) { if (mappingEvent.request != MappingPointer) { // Deal with modifier/keyboard mapping ScopedXLock xlock (display); XRefreshKeyboardMapping (&mappingEvent); updateModifierMappings(); } } void handleClientMessageEvent (XClientMessageEvent& clientMsg, XEvent& event) { if (clientMsg.message_type == atoms->protocols && clientMsg.format == 32) { auto atom = (Atom) clientMsg.data.l[0]; if (atom == atoms->protocolList [Atoms::PING]) { Window root = RootWindow (display, DefaultScreen (display)); clientMsg.window = root; XSendEvent (display, root, False, NoEventMask, &event); XFlush (display); } else if (atom == atoms->protocolList [Atoms::TAKE_FOCUS]) { if ((getStyleFlags() & juce::ComponentPeer::windowIgnoresKeyPresses) == 0) { XWindowAttributes atts; ScopedXLock xlock (display); if (clientMsg.window != 0 && XGetWindowAttributes (display, clientMsg.window, &atts)) { if (atts.map_state == IsViewable) XSetInputFocus (display, (clientMsg.window == windowH ? getFocusWindow() : clientMsg.window), RevertToParent, (::Time) clientMsg.data.l[1]); } } } else if (atom == atoms->protocolList [Atoms::DELETE_WINDOW]) { handleUserClosingWindow(); } } else if (clientMsg.message_type == atoms->XdndEnter) { handleDragAndDropEnter (clientMsg); } else if (clientMsg.message_type == atoms->XdndLeave) { handleDragExit (dragInfo); resetDragAndDrop(); } else if (clientMsg.message_type == atoms->XdndPosition) { handleDragAndDropPosition (clientMsg); } else if (clientMsg.message_type == atoms->XdndDrop) { handleDragAndDropDrop (clientMsg); } else if (clientMsg.message_type == atoms->XdndStatus) { handleExternalDragAndDropStatus (clientMsg); } else if (clientMsg.message_type == atoms->XdndFinished) { externalResetDragAndDrop(); } } bool externalDragTextInit (const String& text, std::function<void()> cb) { if (dragState->dragging) return false; return externalDragInit (true, text, cb); } bool externalDragFileInit (const StringArray& files, bool /*canMoveFiles*/, std::function<void()> cb) { if (dragState->dragging) return false; StringArray uriList; for (auto& f : files) { if (f.matchesWildcard ("?*://*", false)) uriList.add (f); else uriList.add ("file://" + f); } return externalDragInit (false, uriList.joinIntoString ("\r\n"), cb); } //============================================================================== void showMouseCursor (Cursor cursor) noexcept { ScopedXLock xlock (display); XDefineCursor (display, windowH, cursor); } //============================================================================== double getPlatformScaleFactor() const noexcept override { return currentScaleFactor; } //============================================================================== void addOpenGLRepaintListener (Component* dummy) { if (dummy != nullptr) glRepaintListeners.addIfNotAlreadyThere (dummy); } void removeOpenGLRepaintListener (Component* dummy) { if (dummy != nullptr) glRepaintListeners.removeAllInstancesOf (dummy); } void repaintOpenGLContexts() { for (int i = 0; i < glRepaintListeners.size(); ++i) if (auto* c = glRepaintListeners [i]) c->handleCommandMessage (0); } //============================================================================== unsigned long createKeyProxy() { jassert (keyProxy == 0 && windowH != 0); if (keyProxy == 0 && windowH != 0) { XSetWindowAttributes swa; swa.event_mask = KeyPressMask | KeyReleaseMask | FocusChangeMask; keyProxy = XCreateWindow (display, windowH, -1, -1, 1, 1, 0, 0, InputOnly, CopyFromParent, CWEventMask, &swa); XMapWindow (display, keyProxy); XSaveContext (display, (XID) keyProxy, windowHandleXContext, (XPointer) this); } return keyProxy; } void deleteKeyProxy() { jassert (keyProxy != 0); if (keyProxy != 0) { XPointer handlePointer; if (! XFindContext (display, (XID) keyProxy, windowHandleXContext, &handlePointer)) XDeleteContext (display, (XID) keyProxy, windowHandleXContext); XDestroyWindow (display, keyProxy); XSync (display, false); XEvent event; while (XCheckWindowEvent (display, keyProxy, getAllEventsMask(), &event) == True) {} keyProxy = 0; } } //============================================================================== bool dontRepaint; static bool isActiveApplication; private: //============================================================================== class LinuxRepaintManager : public Timer { public: LinuxRepaintManager (LinuxComponentPeer& p, ::Display* d) : peer (p), display (d) { #if JUCE_USE_XSHM useARGBImagesForRendering = XSHMHelpers::isShmAvailable (display); if (useARGBImagesForRendering) { ScopedXLock xlock (display); XShmSegmentInfo segmentinfo; auto testImage = XShmCreateImage (display, DefaultVisual (display, DefaultScreen (display)), 24, ZPixmap, 0, &segmentinfo, 64, 64); useARGBImagesForRendering = (testImage->bits_per_pixel == 32); XDestroyImage (testImage); } #endif } void timerCallback() override { #if JUCE_USE_XSHM if (shmPaintsPending != 0) return; #endif if (! regionsNeedingRepaint.isEmpty()) { stopTimer(); performAnyPendingRepaintsNow(); } else if (Time::getApproximateMillisecondCounter() > lastTimeImageUsed + 3000) { stopTimer(); image = Image(); } } void repaint (Rectangle<int> area) { if (! isTimerRunning()) startTimer (repaintTimerPeriod); regionsNeedingRepaint.add (area * peer.currentScaleFactor); } void performAnyPendingRepaintsNow() { #if JUCE_USE_XSHM if (shmPaintsPending != 0) { startTimer (repaintTimerPeriod); return; } #endif auto originalRepaintRegion = regionsNeedingRepaint; regionsNeedingRepaint.clear(); auto totalArea = originalRepaintRegion.getBounds(); if (! totalArea.isEmpty()) { if (image.isNull() || image.getWidth() < totalArea.getWidth() || image.getHeight() < totalArea.getHeight()) { #if JUCE_USE_XSHM image = Image (new XBitmapImage (display, useARGBImagesForRendering ? Image::ARGB : Image::RGB, #else image = Image (new XBitmapImage (display, Image::RGB, #endif (totalArea.getWidth() + 31) & ~31, (totalArea.getHeight() + 31) & ~31, false, (unsigned int) peer.depth, peer.visual)); } startTimer (repaintTimerPeriod); RectangleList<int> adjustedList (originalRepaintRegion); adjustedList.offsetAll (-totalArea.getX(), -totalArea.getY()); if (peer.depth == 32) for (auto& i : originalRepaintRegion) image.clear (i - totalArea.getPosition()); { std::unique_ptr<LowLevelGraphicsContext> context (peer.getComponent().getLookAndFeel() .createGraphicsContext (image, -totalArea.getPosition(), adjustedList)); context->addTransform (AffineTransform::scale ((float) peer.currentScaleFactor)); peer.handlePaint (*context); } for (auto& i : originalRepaintRegion) { auto* xbitmap = static_cast<XBitmapImage*> (image.getPixelData()); #if JUCE_USE_XSHM if (xbitmap->isUsingXShm()) ++shmPaintsPending; #endif xbitmap->blitToWindow (peer.windowH, i.getX(), i.getY(), (unsigned int) i.getWidth(), (unsigned int) i.getHeight(), i.getX() - totalArea.getX(), i.getY() - totalArea.getY()); } } lastTimeImageUsed = Time::getApproximateMillisecondCounter(); startTimer (repaintTimerPeriod); } #if JUCE_USE_XSHM void notifyPaintCompleted() noexcept { --shmPaintsPending; } #endif private: enum { repaintTimerPeriod = 1000 / 100 }; LinuxComponentPeer& peer; Image image; uint32 lastTimeImageUsed = 0; RectangleList<int> regionsNeedingRepaint; ::Display* display; #if JUCE_USE_XSHM bool useARGBImagesForRendering; int shmPaintsPending = 0; #endif JUCE_DECLARE_NON_COPYABLE (LinuxRepaintManager) }; std::unique_ptr<Atoms> atoms; std::unique_ptr<LinuxRepaintManager> repainter; friend class LinuxRepaintManager; Window windowH = {}, parentWindow = {}, keyProxy = {}; Rectangle<int> bounds; Image taskbarImage; bool fullScreen = false, mapped = false, focused = false; Visual* visual = {}; int depth = 0; BorderSize<int> windowBorder; bool isAlwaysOnTop; double currentScaleFactor = 1.0; Array<Component*> glRepaintListeners; enum { KeyPressEventType = 2 }; static ::Display* display; struct MotifWmHints { unsigned long flags; unsigned long functions; unsigned long decorations; long input_mode; unsigned long status; }; static void updateKeyStates (int keycode, bool press) noexcept { const int keybyte = keycode >> 3; const int keybit = (1 << (keycode & 7)); if (press) Keys::keyStates [keybyte] |= keybit; else Keys::keyStates [keybyte] &= ~keybit; } static void updateKeyModifiers (int status) noexcept { int keyMods = 0; if ((status & ShiftMask) != 0) keyMods |= ModifierKeys::shiftModifier; if ((status & ControlMask) != 0) keyMods |= ModifierKeys::ctrlModifier; if ((status & Keys::AltMask) != 0) keyMods |= ModifierKeys::altModifier; ModifierKeys::currentModifiers = ModifierKeys::currentModifiers.withOnlyMouseButtons().withFlags (keyMods); Keys::numLock = ((status & Keys::NumLockMask) != 0); Keys::capsLock = ((status & LockMask) != 0); } static bool updateKeyModifiersFromSym (KeySym sym, bool press) noexcept { int modifier = 0; bool isModifier = true; switch (sym) { case XK_Shift_L: case XK_Shift_R: modifier = ModifierKeys::shiftModifier; break; case XK_Control_L: case XK_Control_R: modifier = ModifierKeys::ctrlModifier; break; case XK_Alt_L: case XK_Alt_R: modifier = ModifierKeys::altModifier; break; case XK_Num_Lock: if (press) Keys::numLock = ! Keys::numLock; break; case XK_Caps_Lock: if (press) Keys::capsLock = ! Keys::capsLock; break; case XK_Scroll_Lock: break; default: isModifier = false; break; } ModifierKeys::currentModifiers = press ? ModifierKeys::currentModifiers.withFlags (modifier) : ModifierKeys::currentModifiers.withoutFlags (modifier); return isModifier; } // Alt and Num lock are not defined by standard X // modifier constants: check what they're mapped to static void updateModifierMappings() noexcept { ScopedXLock xlock (display); int altLeftCode = XKeysymToKeycode (display, XK_Alt_L); int numLockCode = XKeysymToKeycode (display, XK_Num_Lock); Keys::AltMask = 0; Keys::NumLockMask = 0; if (auto* mapping = XGetModifierMapping (display)) { for (int i = 0; i < 8; i++) { if (mapping->modifiermap [i << 1] == altLeftCode) Keys::AltMask = 1 << i; else if (mapping->modifiermap [i << 1] == numLockCode) Keys::NumLockMask = 1 << i; } XFreeModifiermap (mapping); } } //============================================================================== static void xchangeProperty (Window wndH, Atom property, Atom type, int format, const void* data, int numElements) { XChangeProperty (display, wndH, property, type, format, PropModeReplace, (const unsigned char*) data, numElements); } void removeWindowDecorations (Window wndH) { Atom hints = Atoms::getIfExists (display, "_MOTIF_WM_HINTS"); if (hints != None) { MotifWmHints motifHints; zerostruct (motifHints); motifHints.flags = 2; /* MWM_HINTS_DECORATIONS */ motifHints.decorations = 0; ScopedXLock xlock (display); xchangeProperty (wndH, hints, hints, 32, &motifHints, 4); } hints = Atoms::getIfExists (display, "_WIN_HINTS"); if (hints != None) { long gnomeHints = 0; ScopedXLock xlock (display); xchangeProperty (wndH, hints, hints, 32, &gnomeHints, 1); } hints = Atoms::getIfExists (display, "KWM_WIN_DECORATION"); if (hints != None) { long kwmHints = 2; /*KDE_tinyDecoration*/ ScopedXLock xlock (display); xchangeProperty (wndH, hints, hints, 32, &kwmHints, 1); } hints = Atoms::getIfExists (display, "_KDE_NET_WM_WINDOW_TYPE_OVERRIDE"); if (hints != None) { ScopedXLock xlock (display); xchangeProperty (wndH, atoms->windowType, XA_ATOM, 32, &hints, 1); } } void addWindowButtons (Window wndH) { ScopedXLock xlock (display); Atom hints = Atoms::getIfExists (display, "_MOTIF_WM_HINTS"); if (hints != None) { MotifWmHints motifHints; zerostruct (motifHints); motifHints.flags = 1 | 2; /* MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS */ motifHints.decorations = 2 /* MWM_DECOR_BORDER */ | 8 /* MWM_DECOR_TITLE */ | 16; /* MWM_DECOR_MENU */ motifHints.functions = 4 /* MWM_FUNC_MOVE */; if ((styleFlags & windowHasCloseButton) != 0) motifHints.functions |= 32; /* MWM_FUNC_CLOSE */ if ((styleFlags & windowHasMinimiseButton) != 0) { motifHints.functions |= 8; /* MWM_FUNC_MINIMIZE */ motifHints.decorations |= 0x20; /* MWM_DECOR_MINIMIZE */ } if ((styleFlags & windowHasMaximiseButton) != 0) { motifHints.functions |= 0x10; /* MWM_FUNC_MAXIMIZE */ motifHints.decorations |= 0x40; /* MWM_DECOR_MAXIMIZE */ } if ((styleFlags & windowIsResizable) != 0) { motifHints.functions |= 2; /* MWM_FUNC_RESIZE */ motifHints.decorations |= 0x4; /* MWM_DECOR_RESIZEH */ } xchangeProperty (wndH, hints, hints, 32, &motifHints, 5); } hints = Atoms::getIfExists (display, "_NET_WM_ALLOWED_ACTIONS"); if (hints != None) { Atom netHints [6]; int num = 0; if ((styleFlags & windowIsResizable) != 0) netHints [num++] = Atoms::getIfExists (display, "_NET_WM_ACTION_RESIZE"); if ((styleFlags & windowHasMaximiseButton) != 0) netHints [num++] = Atoms::getIfExists (display, "_NET_WM_ACTION_FULLSCREEN"); if ((styleFlags & windowHasMinimiseButton) != 0) netHints [num++] = Atoms::getIfExists (display, "_NET_WM_ACTION_MINIMIZE"); if ((styleFlags & windowHasCloseButton) != 0) netHints [num++] = Atoms::getIfExists (display, "_NET_WM_ACTION_CLOSE"); xchangeProperty (wndH, hints, XA_ATOM, 32, &netHints, num); } } void setWindowType() { Atom netHints [2]; if ((styleFlags & windowIsTemporary) != 0 || ((styleFlags & windowHasDropShadow) == 0 && Desktop::canUseSemiTransparentWindows())) netHints [0] = Atoms::getIfExists (display, "_NET_WM_WINDOW_TYPE_COMBO"); else netHints [0] = Atoms::getIfExists (display, "_NET_WM_WINDOW_TYPE_NORMAL"); xchangeProperty (windowH, atoms->windowType, XA_ATOM, 32, &netHints, 1); int numHints = 0; if ((styleFlags & windowAppearsOnTaskbar) == 0) netHints [numHints++] = Atoms::getIfExists (display, "_NET_WM_STATE_SKIP_TASKBAR"); if (component.isAlwaysOnTop()) netHints [numHints++] = Atoms::getIfExists (display, "_NET_WM_STATE_ABOVE"); if (numHints > 0) xchangeProperty (windowH, atoms->windowState, XA_ATOM, 32, &netHints, numHints); } void createWindow (Window parentToAddTo) { ScopedXLock xlock (display); resetDragAndDrop(); // Get defaults for various properties const int screen = DefaultScreen (display); Window root = RootWindow (display, screen); parentWindow = parentToAddTo; // Try to obtain a 32-bit visual or fallback to 24 or 16 visual = Visuals::findVisualFormat (display, (styleFlags & windowIsSemiTransparent) ? 32 : 24, depth); if (visual == nullptr) { Logger::outputDebugString ("ERROR: System doesn't support 32, 24 or 16 bit RGB display.\n"); Process::terminate(); } // Create and install a colormap suitable fr our visual Colormap colormap = XCreateColormap (display, root, visual, AllocNone); XInstallColormap (display, colormap); // Set up the window attributes XSetWindowAttributes swa; swa.border_pixel = 0; swa.background_pixmap = None; swa.colormap = colormap; swa.override_redirect = ((styleFlags & windowIsTemporary) != 0) ? True : False; swa.event_mask = getAllEventsMask(); windowH = XCreateWindow (display, parentToAddTo != 0 ? parentToAddTo : root, 0, 0, 1, 1, 0, depth, InputOutput, visual, CWBorderPixel | CWColormap | CWBackPixmap | CWEventMask | CWOverrideRedirect, &swa); // Set the window context to identify the window handle object if (XSaveContext (display, (XID) windowH, windowHandleXContext, (XPointer) this)) { // Failed jassertfalse; Logger::outputDebugString ("Failed to create context information for window.\n"); XDestroyWindow (display, windowH); windowH = 0; return; } // Set window manager hints XWMHints* wmHints = XAllocWMHints(); wmHints->flags = InputHint | StateHint; wmHints->input = True; // Locally active input model wmHints->initial_state = NormalState; XSetWMHints (display, windowH, wmHints); XFree (wmHints); // Set the window type setWindowType(); // Define decoration if ((styleFlags & windowHasTitleBar) == 0) removeWindowDecorations (windowH); else addWindowButtons (windowH); setTitle (component.getName()); // Associate the PID, allowing to be shut down when something goes wrong unsigned long pid = (unsigned long) getpid(); xchangeProperty (windowH, atoms->pid, XA_CARDINAL, 32, &pid, 1); // Set window manager protocols xchangeProperty (windowH, atoms->protocols, XA_ATOM, 32, atoms->protocolList, 2); // Set drag and drop flags xchangeProperty (windowH, atoms->XdndTypeList, XA_ATOM, 32, atoms->allowedMimeTypes, numElementsInArray (atoms->allowedMimeTypes)); xchangeProperty (windowH, atoms->XdndActionList, XA_ATOM, 32, atoms->allowedActions, numElementsInArray (atoms->allowedActions)); xchangeProperty (windowH, atoms->XdndActionDescription, XA_STRING, 8, "", 0); xchangeProperty (windowH, atoms->XdndAware, XA_ATOM, 32, &atoms->DndVersion, 1); initialisePointerMap(); updateModifierMappings(); } void destroyWindow() { ScopedXLock xlock (display); XPointer handlePointer; if (keyProxy != 0) deleteKeyProxy(); if (! XFindContext (display, (XID) windowH, windowHandleXContext, &handlePointer)) XDeleteContext (display, (XID) windowH, windowHandleXContext); XDestroyWindow (display, windowH); // Wait for it to complete and then remove any events for this // window from the event queue. XSync (display, false); XEvent event; while (XCheckWindowEvent (display, windowH, getAllEventsMask(), &event) == True) {} } int getAllEventsMask() const noexcept { return NoEventMask | KeyPressMask | KeyReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask | KeymapStateMask | ExposureMask | StructureNotifyMask | FocusChangeMask | ((styleFlags & windowIgnoresMouseClicks) != 0 ? 0 : (ButtonPressMask | ButtonReleaseMask)); } template <typename EventType> static int64 getEventTime (const EventType& t) { return getEventTime (t.time); } static int64 getEventTime (::Time t) { static int64 eventTimeOffset = 0x12345678; auto thisMessageTime = (int64) t; if (eventTimeOffset == 0x12345678) eventTimeOffset = Time::currentTimeMillis() - thisMessageTime; return eventTimeOffset + thisMessageTime; } long getUserTime() const { GetXProperty prop (display, windowH, atoms->userTime, 0, 65536, false, XA_CARDINAL); return prop.success ? *(long*) prop.data : 0; } void updateBorderSize() { if ((styleFlags & windowHasTitleBar) == 0) { windowBorder = BorderSize<int> (0); } else if (windowBorder.getTopAndBottom() == 0 && windowBorder.getLeftAndRight() == 0) { ScopedXLock xlock (display); Atom hints = Atoms::getIfExists (display, "_NET_FRAME_EXTENTS"); if (hints != None) { GetXProperty prop (display, windowH, hints, 0, 4, false, XA_CARDINAL); if (prop.success && prop.actualFormat == 32) { auto* sizes = (const unsigned long*) prop.data; windowBorder = BorderSize<int> ((int) sizes[2], (int) sizes[0], (int) sizes[3], (int) sizes[1]); } } } } void updateWindowBounds() { jassert (windowH != 0); if (windowH != 0) { Window root, child; int wx = 0, wy = 0; unsigned int ww = 0, wh = 0, bw, bitDepth; ScopedXLock xlock (display); if (XGetGeometry (display, (::Drawable) windowH, &root, &wx, &wy, &ww, &wh, &bw, &bitDepth)) if (! XTranslateCoordinates (display, windowH, root, 0, 0, &wx, &wy, &child)) wx = wy = 0; Rectangle<int> physicalBounds (wx, wy, (int) ww, (int) wh); auto& displays = Desktop::getInstance().getDisplays(); auto newScaleFactor = displays.findDisplayForRect (physicalBounds, true).scale; if (! approximatelyEqual (newScaleFactor, currentScaleFactor)) { currentScaleFactor = newScaleFactor; scaleFactorListeners.call ([&] (ScaleFactorListener& l) { l.nativeScaleFactorChanged (currentScaleFactor); }); } bounds = displays.physicalToLogical (physicalBounds); } } //============================================================================== struct DragState { DragState (::Display* d) { if (isText) allowedTypes.add (Atoms::getCreating (d, "text/plain")); else allowedTypes.add (Atoms::getCreating (d, "text/uri-list")); } bool isText = false; bool dragging = false; // currently performing outgoing external dnd as Xdnd source, have grabbed mouse bool expectingStatus = false; // XdndPosition sent, waiting for XdndStatus bool canDrop = false; // target window signals it will accept the drop Window targetWindow = None; // potential drop target int xdndVersion = -1; // negotiated version with target Rectangle<int> silentRect; String textOrFiles; Array<Atom> allowedTypes; std::function<void()> completionCallback; }; //============================================================================== void resetDragAndDrop() { dragInfo.clear(); dragInfo.position = Point<int> (-1, -1); dragAndDropCurrentMimeType = 0; dragAndDropSourceWindow = 0; srcMimeTypeAtomList.clear(); finishAfterDropDataReceived = false; } void resetExternalDragState() { dragState.reset (new DragState (display)); } void sendDragAndDropMessage (XClientMessageEvent& msg) { msg.type = ClientMessage; msg.display = display; msg.window = dragAndDropSourceWindow; msg.format = 32; msg.data.l[0] = (long) windowH; ScopedXLock xlock (display); XSendEvent (display, dragAndDropSourceWindow, False, 0, (XEvent*) &msg); } bool sendExternalDragAndDropMessage (XClientMessageEvent& msg, Window targetWindow) { msg.type = ClientMessage; msg.display = display; msg.window = targetWindow; msg.format = 32; msg.data.l[0] = (long) windowH; ScopedXLock xlock (display); return XSendEvent (display, targetWindow, False, 0, (XEvent*) &msg) != 0; } void sendExternalDragAndDropDrop (Window targetWindow) { XClientMessageEvent msg; zerostruct (msg); msg.message_type = atoms->XdndDrop; msg.data.l[2] = CurrentTime; sendExternalDragAndDropMessage (msg, targetWindow); } void sendExternalDragAndDropEnter (Window targetWindow) { XClientMessageEvent msg; zerostruct (msg); msg.message_type = atoms->XdndEnter; msg.data.l[1] = (dragState->xdndVersion << 24); for (int i = 0; i < 3; ++i) msg.data.l[i + 2] = (long) dragState->allowedTypes[i]; sendExternalDragAndDropMessage (msg, targetWindow); } void sendExternalDragAndDropPosition (Window targetWindow) { XClientMessageEvent msg; zerostruct (msg); msg.message_type = atoms->XdndPosition; Point<int> mousePos (Desktop::getInstance().getMousePosition()); if (dragState->silentRect.contains (mousePos)) // we've been asked to keep silent return; auto& displays = Desktop::getInstance().getDisplays(); mousePos = displays.logicalToPhysical (mousePos); msg.data.l[1] = 0; msg.data.l[2] = (mousePos.x << 16) | mousePos.y; msg.data.l[3] = CurrentTime; msg.data.l[4] = (long) atoms->XdndActionCopy; // this is all JUCE currently supports dragState->expectingStatus = sendExternalDragAndDropMessage (msg, targetWindow); } void sendDragAndDropStatus (bool acceptDrop, Atom dropAction) { XClientMessageEvent msg; zerostruct (msg); msg.message_type = atoms->XdndStatus; msg.data.l[1] = (acceptDrop ? 1 : 0) | 2; // 2 indicates that we want to receive position messages msg.data.l[4] = (long) dropAction; sendDragAndDropMessage (msg); } void sendExternalDragAndDropLeave (Window targetWindow) { XClientMessageEvent msg; zerostruct (msg); msg.message_type = atoms->XdndLeave; sendExternalDragAndDropMessage (msg, targetWindow); } void sendDragAndDropFinish() { XClientMessageEvent msg; zerostruct (msg); msg.message_type = atoms->XdndFinished; sendDragAndDropMessage (msg); } void handleExternalSelectionClear() { if (dragState->dragging) externalResetDragAndDrop(); } void handleExternalSelectionRequest (const XEvent& evt) { Atom targetType = evt.xselectionrequest.target; XEvent s; s.xselection.type = SelectionNotify; s.xselection.requestor = evt.xselectionrequest.requestor; s.xselection.selection = evt.xselectionrequest.selection; s.xselection.target = targetType; s.xselection.property = None; s.xselection.time = evt.xselectionrequest.time; if (dragState->allowedTypes.contains (targetType)) { s.xselection.property = evt.xselectionrequest.property; xchangeProperty (evt.xselectionrequest.requestor, evt.xselectionrequest.property, targetType, 8, dragState->textOrFiles.toRawUTF8(), (int) dragState->textOrFiles.getNumBytesAsUTF8()); } XSendEvent (display, evt.xselectionrequest.requestor, True, 0, &s); } void handleExternalDragAndDropStatus (const XClientMessageEvent& clientMsg) { if (dragState->expectingStatus) { dragState->expectingStatus = false; dragState->canDrop = false; dragState->silentRect = Rectangle<int>(); if ((clientMsg.data.l[1] & 1) != 0 && ((Atom) clientMsg.data.l[4] == atoms->XdndActionCopy || (Atom) clientMsg.data.l[4] == atoms->XdndActionPrivate)) { if ((clientMsg.data.l[1] & 2) == 0) // target requests silent rectangle dragState->silentRect.setBounds ((int) clientMsg.data.l[2] >> 16, (int) clientMsg.data.l[2] & 0xffff, (int) clientMsg.data.l[3] >> 16, (int) clientMsg.data.l[3] & 0xffff); dragState->canDrop = true; } } } void handleExternalDragButtonReleaseEvent() { if (dragState->dragging) XUngrabPointer (display, CurrentTime); if (dragState->canDrop) { sendExternalDragAndDropDrop (dragState->targetWindow); } else { sendExternalDragAndDropLeave (dragState->targetWindow); externalResetDragAndDrop(); } } void handleExternalDragMotionNotify() { Window targetWindow = externalFindDragTargetWindow (RootWindow (display, DefaultScreen (display))); if (dragState->targetWindow != targetWindow) { if (dragState->targetWindow != None) sendExternalDragAndDropLeave (dragState->targetWindow); dragState->canDrop = false; dragState->silentRect = Rectangle<int>(); if (targetWindow == None) return; GetXProperty prop (display, targetWindow, atoms->XdndAware, 0, 2, false, AnyPropertyType); if (prop.success && prop.data != None && prop.actualFormat == 32 && prop.numItems == 1) { dragState->xdndVersion = jmin ((int) prop.data[0], (int) atoms->DndVersion); } else { dragState->xdndVersion = -1; return; } sendExternalDragAndDropEnter (targetWindow); dragState->targetWindow = targetWindow; } if (! dragState->expectingStatus) sendExternalDragAndDropPosition (targetWindow); } void handleDragAndDropPosition (const XClientMessageEvent& clientMsg) { if (dragAndDropSourceWindow == 0) return; dragAndDropSourceWindow = (::Window) clientMsg.data.l[0]; Point<int> dropPos ((int) clientMsg.data.l[2] >> 16, (int) clientMsg.data.l[2] & 0xffff); dropPos -= bounds.getPosition(); Atom targetAction = atoms->XdndActionCopy; for (int i = numElementsInArray (atoms->allowedActions); --i >= 0;) { if ((Atom) clientMsg.data.l[4] == atoms->allowedActions[i]) { targetAction = atoms->allowedActions[i]; break; } } sendDragAndDropStatus (true, targetAction); if (dragInfo.position != dropPos) { dragInfo.position = dropPos; if (dragInfo.isEmpty()) updateDraggedFileList (clientMsg); if (! dragInfo.isEmpty()) handleDragMove (dragInfo); } } void handleDragAndDropDrop (const XClientMessageEvent& clientMsg) { if (dragInfo.isEmpty()) { // no data, transaction finished in handleDragAndDropSelection() finishAfterDropDataReceived = true; updateDraggedFileList (clientMsg); } else { handleDragAndDropDataReceived(); // data was already received } } void handleDragAndDropDataReceived() { DragInfo dragInfoCopy (dragInfo); sendDragAndDropFinish(); resetDragAndDrop(); if (! dragInfoCopy.isEmpty()) handleDragDrop (dragInfoCopy); } void handleDragAndDropEnter (const XClientMessageEvent& clientMsg) { dragInfo.clear(); srcMimeTypeAtomList.clear(); dragAndDropCurrentMimeType = 0; auto dndCurrentVersion = static_cast<unsigned long> (clientMsg.data.l[1] & 0xff000000) >> 24; if (dndCurrentVersion < 3 || dndCurrentVersion > Atoms::DndVersion) { dragAndDropSourceWindow = 0; return; } dragAndDropSourceWindow = (::Window) clientMsg.data.l[0]; if ((clientMsg.data.l[1] & 1) != 0) { ScopedXLock xlock (display); GetXProperty prop (display, dragAndDropSourceWindow, atoms->XdndTypeList, 0, 0x8000000L, false, XA_ATOM); if (prop.success && prop.actualType == XA_ATOM && prop.actualFormat == 32 && prop.numItems != 0) { auto* types = (const unsigned long*) prop.data; for (unsigned long i = 0; i < prop.numItems; ++i) if (types[i] != None) srcMimeTypeAtomList.add (types[i]); } } if (srcMimeTypeAtomList.isEmpty()) { for (int i = 2; i < 5; ++i) if (clientMsg.data.l[i] != None) srcMimeTypeAtomList.add ((unsigned long) clientMsg.data.l[i]); if (srcMimeTypeAtomList.isEmpty()) { dragAndDropSourceWindow = 0; return; } } for (int i = 0; i < srcMimeTypeAtomList.size() && dragAndDropCurrentMimeType == 0; ++i) for (int j = 0; j < numElementsInArray (atoms->allowedMimeTypes); ++j) if (srcMimeTypeAtomList[i] == atoms->allowedMimeTypes[j]) dragAndDropCurrentMimeType = atoms->allowedMimeTypes[j]; handleDragAndDropPosition (clientMsg); } void handleDragAndDropSelection (const XEvent& evt) { dragInfo.clear(); if (evt.xselection.property != None) { StringArray lines; { MemoryBlock dropData; for (;;) { GetXProperty prop (display, evt.xany.window, evt.xselection.property, dropData.getSize() / 4, 65536, false, AnyPropertyType); if (! prop.success) break; dropData.append (prop.data, prop.numItems * (size_t) prop.actualFormat / 8); if (prop.bytesLeft <= 0) break; } lines.addLines (dropData.toString()); } if (Atoms::isMimeTypeFile (display, dragAndDropCurrentMimeType)) { for (int i = 0; i < lines.size(); ++i) dragInfo.files.add (URL::removeEscapeChars (lines[i].replace ("file://", String(), true))); dragInfo.files.trim(); dragInfo.files.removeEmptyStrings(); } else { dragInfo.text = lines.joinIntoString ("\n"); } if (finishAfterDropDataReceived) handleDragAndDropDataReceived(); } } void updateDraggedFileList (const XClientMessageEvent& clientMsg) { jassert (dragInfo.isEmpty()); if (dragAndDropSourceWindow != None && dragAndDropCurrentMimeType != None) { ScopedXLock xlock (display); XConvertSelection (display, atoms->XdndSelection, dragAndDropCurrentMimeType, Atoms::getCreating (display, "JXSelectionWindowProperty"), windowH, (::Time) clientMsg.data.l[2]); } } bool isWindowDnDAware (Window w) const { int numProperties = 0; auto* properties = XListProperties (display, w, &numProperties); bool dndAwarePropFound = false; for (int i = 0; i < numProperties; ++i) if (properties[i] == atoms->XdndAware) dndAwarePropFound = true; if (properties != nullptr) XFree (properties); return dndAwarePropFound; } Window externalFindDragTargetWindow (Window targetWindow) { if (targetWindow == None) return None; if (isWindowDnDAware (targetWindow)) return targetWindow; Window child, phonyWin; int phony; unsigned int uphony; XQueryPointer (display, targetWindow, &phonyWin, &child, &phony, &phony, &phony, &phony, &uphony); return externalFindDragTargetWindow (child); } bool externalDragInit (bool isText, const String& textOrFiles, std::function<void()> cb) { ScopedXLock xlock (display); resetExternalDragState(); dragState->isText = isText; dragState->textOrFiles = textOrFiles; dragState->targetWindow = windowH; dragState->completionCallback = cb; const int pointerGrabMask = Button1MotionMask | ButtonReleaseMask; if (XGrabPointer (display, windowH, True, pointerGrabMask, GrabModeAsync, GrabModeAsync, None, None, CurrentTime) == GrabSuccess) { // No other method of changing the pointer seems to work, this call is needed from this very context XChangeActivePointerGrab (display, pointerGrabMask, (Cursor) createDraggingHandCursor(), CurrentTime); XSetSelectionOwner (display, atoms->XdndSelection, windowH, CurrentTime); // save the available types to XdndTypeList xchangeProperty (windowH, atoms->XdndTypeList, XA_ATOM, 32, dragState->allowedTypes.getRawDataPointer(), dragState->allowedTypes.size()); dragState->dragging = true; handleExternalDragMotionNotify(); return true; } return false; } void externalResetDragAndDrop() { if (dragState->dragging) { ScopedXLock xlock (display); XUngrabPointer (display, CurrentTime); } if (dragState->completionCallback != nullptr) dragState->completionCallback(); resetExternalDragState(); } std::unique_ptr<DragState> dragState; DragInfo dragInfo; Atom dragAndDropCurrentMimeType; Window dragAndDropSourceWindow; bool finishAfterDropDataReceived; Array<Atom> srcMimeTypeAtomList; int pointerMap[5] = {}; void initialisePointerMap() { const int numButtons = XGetPointerMapping (display, 0, 0); pointerMap[2] = pointerMap[3] = pointerMap[4] = Keys::NoButton; if (numButtons == 2) { pointerMap[0] = Keys::LeftButton; pointerMap[1] = Keys::RightButton; } else if (numButtons >= 3) { pointerMap[0] = Keys::LeftButton; pointerMap[1] = Keys::MiddleButton; pointerMap[2] = Keys::RightButton; if (numButtons >= 5) { pointerMap[3] = Keys::WheelUp; pointerMap[4] = Keys::WheelDown; } } } static Point<int> lastMousePos; static void clearLastMousePos() noexcept { lastMousePos = Point<int> (0x100000, 0x100000); } JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (LinuxComponentPeer) }; bool LinuxComponentPeer::isActiveApplication = false; Point<int> LinuxComponentPeer::lastMousePos; ::Display* LinuxComponentPeer::display = nullptr; //============================================================================== namespace WindowingHelpers { static void windowMessageReceive (XEvent& event) { if (event.xany.window != None) { #if JUCE_X11_SUPPORTS_XEMBED if (! juce_handleXEmbedEvent (nullptr, &event)) #endif { if (auto* peer = LinuxComponentPeer::getPeerFor (event.xany.window)) peer->handleWindowMessage (event); } } else if (event.xany.type == KeymapNotify) { auto& keymapEvent = (const XKeymapEvent&) event.xkeymap; memcpy (Keys::keyStates, keymapEvent.key_vector, 32); } } } struct WindowingCallbackInitialiser { WindowingCallbackInitialiser() { dispatchWindowMessage = WindowingHelpers::windowMessageReceive; } }; static WindowingCallbackInitialiser windowingInitialiser; //============================================================================== JUCE_API bool JUCE_CALLTYPE Process::isForegroundProcess() { return LinuxComponentPeer::isActiveApplication; } // N/A on Linux as far as I know. JUCE_API void JUCE_CALLTYPE Process::makeForegroundProcess() {} JUCE_API void JUCE_CALLTYPE Process::hide() {} //============================================================================== void Desktop::setKioskComponent (Component* comp, bool enableOrDisable, bool /* allowMenusAndBars */) { if (enableOrDisable) comp->setBounds (getDisplays().getMainDisplay().totalArea); } void Desktop::allowedOrientationsChanged() {} //============================================================================== ComponentPeer* Component::createNewPeer (int styleFlags, void* nativeWindowToAttachTo) { return new LinuxComponentPeer (*this, styleFlags, (Window) nativeWindowToAttachTo); } //============================================================================== void Displays::findDisplays (float masterScale) { ScopedXDisplay xDisplay; if (auto display = xDisplay.display) { #if JUCE_USE_XRANDR { int major_opcode, first_event, first_error; if (XQueryExtension (display, "RANDR", &major_opcode, &first_event, &first_error)) { auto& xrandr = XRandrWrapper::getInstance(); auto numMonitors = ScreenCount (display); auto mainDisplay = xrandr.getOutputPrimary (display, RootWindow (display, 0)); for (int i = 0; i < numMonitors; ++i) { if (auto* screens = xrandr.getScreenResources (display, RootWindow (display, i))) { for (int j = 0; j < screens->noutput; ++j) { if (screens->outputs[j]) { // Xrandr on the raspberry pi fails to determine the main display (mainDisplay == 0)! // Detect this edge case and make the first found display the main display if (! mainDisplay) mainDisplay = screens->outputs[j]; if (auto* output = xrandr.getOutputInfo (display, screens, screens->outputs[j])) { if (output->crtc) { if (auto* crtc = xrandr.getCrtcInfo (display, screens, output->crtc)) { Display d; d.totalArea = Rectangle<int> (crtc->x, crtc->y, (int) crtc->width, (int) crtc->height); d.isMain = (mainDisplay == screens->outputs[j]) && (i == 0); d.dpi = getDisplayDPI (display, 0); // The raspberry pi returns a zero sized display, so we need to guard for divide-by-zero if (output->mm_width > 0 && output->mm_height > 0) d.dpi = ((static_cast<double> (crtc->width) * 25.4 * 0.5) / static_cast<double> (output->mm_width)) + ((static_cast<double> (crtc->height) * 25.4 * 0.5) / static_cast<double> (output->mm_height)); double scale = getScaleForDisplay (output->name, d.dpi); scale = (scale <= 0.1 ? 1.0 : scale); d.scale = masterScale * scale; if (d.isMain) displays.insert (0, d); else displays.add (d); xrandr.freeCrtcInfo (crtc); } } xrandr.freeOutputInfo (output); } } } xrandr.freeScreenResources (screens); } } } } if (displays.isEmpty()) #endif #if JUCE_USE_XINERAMA { auto screens = XineramaQueryDisplays (display); int numMonitors = screens.size(); for (int index = 0; index < numMonitors; ++index) { for (int j = numMonitors; --j >= 0;) { if (screens[j].screen_number == index) { Display d; d.totalArea = Rectangle<int> (screens[j].x_org, screens[j].y_org, screens[j].width, screens[j].height); d.isMain = (index == 0); d.scale = masterScale; d.dpi = getDisplayDPI (display, 0); // (all screens share the same DPI) displays.add (d); } } } } if (displays.isEmpty()) #endif { Atom hints = Atoms::getIfExists (display, "_NET_WORKAREA"); if (hints != None) { auto numMonitors = ScreenCount (display); for (int i = 0; i < numMonitors; ++i) { GetXProperty prop (display, RootWindow (display, i), hints, 0, 4, false, XA_CARDINAL); if (prop.success && prop.actualType == XA_CARDINAL && prop.actualFormat == 32 && prop.numItems == 4) { auto position = (const long*) prop.data; Display d; d.totalArea = Rectangle<int> ((int) position[0], (int) position[1], (int) position[2], (int) position[3]); d.isMain = displays.isEmpty(); d.scale = masterScale; d.dpi = getDisplayDPI (display, i); displays.add (d); } } } if (displays.isEmpty()) { Display d; d.totalArea = Rectangle<int> (DisplayWidth (display, DefaultScreen (display)), DisplayHeight (display, DefaultScreen (display))); d.isMain = true; d.scale = masterScale; d.dpi = getDisplayDPI (display, 0); displays.add (d); } } for (auto& d : displays) d.userArea = d.totalArea; // JUCE currently does not support requesting the user area on Linux updateToLogical(); } } //============================================================================== bool MouseInputSource::SourceList::addSource() { if (sources.isEmpty()) { addSource (0, MouseInputSource::InputSourceType::mouse); return true; } return false; } bool MouseInputSource::SourceList::canUseTouch() { return false; } bool Desktop::canUseSemiTransparentWindows() noexcept { #if JUCE_USE_XRENDER if (XRender::hasCompositingWindowManager()) { int matchedDepth = 0, desiredDepth = 32; return Visuals::findVisualFormat (display, desiredDepth, matchedDepth) != 0 && matchedDepth == desiredDepth; } #endif return false; } Point<float> MouseInputSource::getCurrentRawMousePosition() { ScopedXDisplay xDisplay; auto display = xDisplay.display; if (display == nullptr) return {}; Window root, child; int x, y, winx, winy; unsigned int mask; ScopedXLock xlock (display); if (XQueryPointer (display, RootWindow (display, DefaultScreen (display)), &root, &child, &x, &y, &winx, &winy, &mask) == False) { // Pointer not on the default screen x = y = -1; } return Desktop::getInstance().getDisplays().physicalToLogical (Point<float> ((float) x, (float) y)); } void MouseInputSource::setRawMousePosition (Point<float> newPosition) { ScopedXDisplay xDisplay; if (auto display = xDisplay.display) { ScopedXLock xlock (display); Window root = RootWindow (display, DefaultScreen (display)); newPosition = Desktop::getInstance().getDisplays().logicalToPhysical (newPosition); XWarpPointer (display, None, root, 0, 0, 0, 0, roundToInt (newPosition.getX()), roundToInt (newPosition.getY())); } } double Desktop::getDefaultMasterScale() { return 1.0; } Desktop::DisplayOrientation Desktop::getCurrentOrientation() const { return upright; } //============================================================================== static bool screenSaverAllowed = true; void Desktop::setScreenSaverEnabled (bool isEnabled) { if (screenSaverAllowed != isEnabled) { screenSaverAllowed = isEnabled; ScopedXDisplay xDisplay; if (auto display = xDisplay.display) { typedef void (*tXScreenSaverSuspend) (Display*, Bool); static tXScreenSaverSuspend xScreenSaverSuspend = nullptr; if (xScreenSaverSuspend == nullptr) if (void* h = dlopen ("libXss.so.1", RTLD_GLOBAL | RTLD_NOW)) xScreenSaverSuspend = (tXScreenSaverSuspend) dlsym (h, "XScreenSaverSuspend"); ScopedXLock xlock (display); if (xScreenSaverSuspend != nullptr) xScreenSaverSuspend (display, ! isEnabled); } } } bool Desktop::isScreenSaverEnabled() { return screenSaverAllowed; } //============================================================================== Image juce_createIconForFile (const File& /* file */) { return {}; } //============================================================================== void LookAndFeel::playAlertSound() { std::cout << "\a" << std::flush; } //============================================================================== Rectangle<int> juce_LinuxScaledToPhysicalBounds (ComponentPeer* peer, Rectangle<int> bounds) { if (auto* linuxPeer = dynamic_cast<LinuxComponentPeer*> (peer)) bounds *= linuxPeer->getPlatformScaleFactor(); return bounds; } void juce_LinuxAddRepaintListener (ComponentPeer* peer, Component* dummy) { if (auto* linuxPeer = dynamic_cast<LinuxComponentPeer*> (peer)) linuxPeer->addOpenGLRepaintListener (dummy); } void juce_LinuxRemoveRepaintListener (ComponentPeer* peer, Component* dummy) { if (auto* linuxPeer = dynamic_cast<LinuxComponentPeer*> (peer)) linuxPeer->removeOpenGLRepaintListener (dummy); } unsigned long juce_createKeyProxyWindow (ComponentPeer* peer) { if (auto* linuxPeer = dynamic_cast<LinuxComponentPeer*> (peer)) return linuxPeer->createKeyProxy(); return 0; } void juce_deleteKeyProxyWindow (ComponentPeer* peer) { if (auto* linuxPeer = dynamic_cast<LinuxComponentPeer*> (peer)) linuxPeer->deleteKeyProxy(); } //============================================================================== #if JUCE_MODAL_LOOPS_PERMITTED void JUCE_CALLTYPE NativeMessageBox::showMessageBox (AlertWindow::AlertIconType iconType, const String& title, const String& message, Component* /* associatedComponent */) { AlertWindow::showMessageBox (iconType, title, message); } #endif void JUCE_CALLTYPE NativeMessageBox::showMessageBoxAsync (AlertWindow::AlertIconType iconType, const String& title, const String& message, Component* associatedComponent, ModalComponentManager::Callback* callback) { AlertWindow::showMessageBoxAsync (iconType, title, message, String(), associatedComponent, callback); } bool JUCE_CALLTYPE NativeMessageBox::showOkCancelBox (AlertWindow::AlertIconType iconType, const String& title, const String& message, Component* associatedComponent, ModalComponentManager::Callback* callback) { return AlertWindow::showOkCancelBox (iconType, title, message, String(), String(), associatedComponent, callback); } int JUCE_CALLTYPE NativeMessageBox::showYesNoCancelBox (AlertWindow::AlertIconType iconType, const String& title, const String& message, Component* associatedComponent, ModalComponentManager::Callback* callback) { return AlertWindow::showYesNoCancelBox (iconType, title, message, String(), String(), String(), associatedComponent, callback); } int JUCE_CALLTYPE NativeMessageBox::showYesNoBox (AlertWindow::AlertIconType iconType, const String& title, const String& message, Component* associatedComponent, ModalComponentManager::Callback* callback) { return AlertWindow::showOkCancelBox (iconType, title, message, TRANS ("Yes"), TRANS ("No"), associatedComponent, callback); } //============================== X11 - MouseCursor ============================= void* CustomMouseCursorInfo::create() const { ScopedXDisplay xDisplay; auto display = xDisplay.display; if (display == nullptr) return nullptr; ScopedXLock xlock (display); auto imageW = (unsigned int) image.getWidth(); auto imageH = (unsigned int) image.getHeight(); int hotspotX = hotspot.x; int hotspotY = hotspot.y; #if JUCE_USE_XCURSOR { using tXcursorSupportsARGB = XcursorBool (*) (Display*); using tXcursorImageCreate = XcursorImage* (*) (int, int); using tXcursorImageDestroy = void (*) (XcursorImage*); using tXcursorImageLoadCursor = Cursor (*) (Display*, const XcursorImage*); static tXcursorSupportsARGB xcursorSupportsARGB = nullptr; static tXcursorImageCreate xcursorImageCreate = nullptr; static tXcursorImageDestroy xcursorImageDestroy = nullptr; static tXcursorImageLoadCursor xcursorImageLoadCursor = nullptr; static bool hasBeenLoaded = false; if (! hasBeenLoaded) { hasBeenLoaded = true; if (void* h = dlopen ("libXcursor.so.1", RTLD_GLOBAL | RTLD_NOW)) { xcursorSupportsARGB = (tXcursorSupportsARGB) dlsym (h, "XcursorSupportsARGB"); xcursorImageCreate = (tXcursorImageCreate) dlsym (h, "XcursorImageCreate"); xcursorImageLoadCursor = (tXcursorImageLoadCursor) dlsym (h, "XcursorImageLoadCursor"); xcursorImageDestroy = (tXcursorImageDestroy) dlsym (h, "XcursorImageDestroy"); if (xcursorSupportsARGB == nullptr || xcursorImageCreate == nullptr || xcursorImageLoadCursor == nullptr || xcursorImageDestroy == nullptr || ! xcursorSupportsARGB (display)) xcursorSupportsARGB = nullptr; } } if (xcursorSupportsARGB != nullptr) { if (XcursorImage* xcImage = xcursorImageCreate ((int) imageW, (int) imageH)) { xcImage->xhot = (XcursorDim) hotspotX; xcImage->yhot = (XcursorDim) hotspotY; XcursorPixel* dest = xcImage->pixels; for (int y = 0; y < (int) imageH; ++y) for (int x = 0; x < (int) imageW; ++x) *dest++ = image.getPixelAt (x, y).getARGB(); void* result = (void*) xcursorImageLoadCursor (display, xcImage); xcursorImageDestroy (xcImage); if (result != nullptr) return result; } } } #endif Window root = RootWindow (display, DefaultScreen (display)); unsigned int cursorW, cursorH; if (! XQueryBestCursor (display, root, imageW, imageH, &cursorW, &cursorH)) return nullptr; Image im (Image::ARGB, (int) cursorW, (int) cursorH, true); { Graphics g (im); if (imageW > cursorW || imageH > cursorH) { hotspotX = (hotspotX * (int) cursorW) / (int) imageW; hotspotY = (hotspotY * (int) cursorH) / (int) imageH; g.drawImage (image, Rectangle<float> ((float) imageW, (float) imageH), RectanglePlacement::xLeft | RectanglePlacement::yTop | RectanglePlacement::onlyReduceInSize); } else { g.drawImageAt (image, 0, 0); } } const unsigned int stride = (cursorW + 7) >> 3; HeapBlock<char> maskPlane, sourcePlane; maskPlane.calloc (stride * cursorH); sourcePlane.calloc (stride * cursorH); const bool msbfirst = (BitmapBitOrder (display) == MSBFirst); for (int y = (int) cursorH; --y >= 0;) { for (int x = (int) cursorW; --x >= 0;) { auto mask = (char) (1 << (msbfirst ? (7 - (x & 7)) : (x & 7))); auto offset = (unsigned int) y * stride + ((unsigned int) x >> 3); auto c = im.getPixelAt (x, y); if (c.getAlpha() >= 128) maskPlane[offset] |= mask; if (c.getBrightness() >= 0.5f) sourcePlane[offset] |= mask; } } Pixmap sourcePixmap = XCreatePixmapFromBitmapData (display, root, sourcePlane.getData(), cursorW, cursorH, 0xffff, 0, 1); Pixmap maskPixmap = XCreatePixmapFromBitmapData (display, root, maskPlane.getData(), cursorW, cursorH, 0xffff, 0, 1); XColor white, black; black.red = black.green = black.blue = 0; white.red = white.green = white.blue = 0xffff; void* result = (void*) XCreatePixmapCursor (display, sourcePixmap, maskPixmap, &white, &black, (unsigned int) hotspotX, (unsigned int) hotspotY); XFreePixmap (display, sourcePixmap); XFreePixmap (display, maskPixmap); return result; } void MouseCursor::deleteMouseCursor (void* cursorHandle, bool) { if (cursorHandle != nullptr) { ScopedXDisplay xDisplay; if (auto display = xDisplay.display) { ScopedXLock xlock (display); XFreeCursor (display, (Cursor) cursorHandle); } } } void* MouseCursor::createStandardMouseCursor (MouseCursor::StandardCursorType type) { ScopedXDisplay xDisplay; auto display = xDisplay.display; if (display == nullptr) return None; unsigned int shape; switch (type) { case NormalCursor: case ParentCursor: return None; // Use parent cursor case NoCursor: return CustomMouseCursorInfo (Image (Image::ARGB, 16, 16, true), {}).create(); case WaitCursor: shape = XC_watch; break; case IBeamCursor: shape = XC_xterm; break; case PointingHandCursor: shape = XC_hand2; break; case LeftRightResizeCursor: shape = XC_sb_h_double_arrow; break; case UpDownResizeCursor: shape = XC_sb_v_double_arrow; break; case UpDownLeftRightResizeCursor: shape = XC_fleur; break; case TopEdgeResizeCursor: shape = XC_top_side; break; case BottomEdgeResizeCursor: shape = XC_bottom_side; break; case LeftEdgeResizeCursor: shape = XC_left_side; break; case RightEdgeResizeCursor: shape = XC_right_side; break; case TopLeftCornerResizeCursor: shape = XC_top_left_corner; break; case TopRightCornerResizeCursor: shape = XC_top_right_corner; break; case BottomLeftCornerResizeCursor: shape = XC_bottom_left_corner; break; case BottomRightCornerResizeCursor: shape = XC_bottom_right_corner; break; case CrosshairCursor: shape = XC_crosshair; break; case DraggingHandCursor: return createDraggingHandCursor(); case CopyingCursor: { static unsigned char copyCursorData[] = { 71,73,70,56,57,97,21,0,21,0,145,0,0,0,0,0,255,255,255,0, 128,128,255,255,255,33,249,4,1,0,0,3,0,44,0,0,0,0,21,0, 21,0,0,2,72,4,134,169,171,16,199,98,11,79,90,71,161,93,56,111, 78,133,218,215,137,31,82,154,100,200,86,91,202,142,12,108,212,87,235,174, 15,54,214,126,237,226,37,96,59,141,16,37,18,201,142,157,230,204,51,112, 252,114,147,74,83,5,50,68,147,208,217,16,71,149,252,124,5,0,59,0,0 }; const int copyCursorSize = 119; return CustomMouseCursorInfo (ImageFileFormat::loadFrom (copyCursorData, copyCursorSize), { 1, 3 }).create(); } default: jassertfalse; return None; } ScopedXLock xlock (display); return (void*) XCreateFontCursor (display, shape); } void MouseCursor::showInWindow (ComponentPeer* peer) const { if (auto* lp = dynamic_cast<LinuxComponentPeer*> (peer)) lp->showMouseCursor ((Cursor) getHandle()); } void MouseCursor::showInAllWindows() const { for (int i = ComponentPeer::getNumPeers(); --i >= 0;) showInWindow (ComponentPeer::getPeer (i)); } //=================================== X11 - DND ================================ static LinuxComponentPeer* getPeerForDragEvent (Component* sourceComp) { if (sourceComp == nullptr) if (auto* draggingSource = Desktop::getInstance().getDraggingMouseSource(0)) sourceComp = draggingSource->getComponentUnderMouse(); if (sourceComp != nullptr) if (auto* lp = dynamic_cast<LinuxComponentPeer*> (sourceComp->getPeer())) return lp; jassertfalse; // This method must be called in response to a component's mouseDown or mouseDrag event! return nullptr; } bool DragAndDropContainer::performExternalDragDropOfFiles (const StringArray& files, bool canMoveFiles, Component* sourceComp, std::function<void()> callback) { if (files.isEmpty()) return false; if (auto* lp = getPeerForDragEvent (sourceComp)) return lp->externalDragFileInit (files, canMoveFiles, callback); // This method must be called in response to a component's mouseDown or mouseDrag event! jassertfalse; return false; } bool DragAndDropContainer::performExternalDragDropOfText (const String& text, Component* sourceComp, std::function<void()> callback) { if (text.isEmpty()) return false; if (auto* lp = getPeerForDragEvent (sourceComp)) return lp->externalDragTextInit (text, callback); // This method must be called in response to a component's mouseDown or mouseDrag event! jassertfalse; return false; } } // namespace juce
[ "pierre@osar.fr" ]
pierre@osar.fr
23926276f8278be1d08073c5034dbe83d08a9de0
dfff1eb0823f0ef1fd284e674f8c77453794f859
/ASTGen.h
1945fa2628027100b911406b76a34e6c7316f1c7
[]
no_license
Lisa1999/SMLComplier
4379ad77441b6a20bc4b3f2722bbd1f4057015bb
e967f5c302c73a2b76050120c91b1715013670ad
refs/heads/master
2020-09-18T18:27:50.469605
2019-11-25T06:16:06
2019-11-25T06:16:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
65
h
#pragma once #include"GeneralFile.h" class ASTGen { public: };
[ "YAOXL819@outlook.com" ]
YAOXL819@outlook.com
65dc0dbe13f0e05cf70c6dea42757c8ec933e691
a92b18defb50c5d1118a11bc364f17b148312028
/src/prod/src/data/interop/ReliableCollectionRuntimeImpl/StoreKeyValueEnumeratorCExports.cpp
f55aa32532fa2cd4140aeac6b5675726c1400bb0
[ "MIT" ]
permissive
KDSBest/service-fabric
34694e150fde662286e25f048fb763c97606382e
fe61c45b15a30fb089ad891c68c893b3a976e404
refs/heads/master
2023-01-28T23:19:25.040275
2020-11-30T11:11:58
2020-11-30T11:11:58
301,365,601
1
0
MIT
2020-11-30T11:11:59
2020-10-05T10:05:53
null
UTF-8
C++
false
false
4,930
cpp
// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. // ------------------------------------------------------------ #include "stdafx.h" using namespace Data; using namespace Data::Utilities; using namespace Data::Interop; // TODO remove this KAllocator& GetAllocator() { KtlSystemCore* ktlsystem = KtlSystemCoreImp::TryGetDefaultKtlSystemCore(); return ktlsystem->PagedAllocator(); } void StoreKeyValueEnumeratorCurrent( __in IAsyncEnumerator<KeyValuePair<KString::SPtr, KeyValuePair<LONG64, KBuffer::SPtr>>>* enumerator, __out LPCWSTR* key, __out size_t *objectHandle, __out Buffer* value, __out LONG64* versionSequenceNumber) { char* buffer; ULONG bufferLength; auto result = enumerator->GetCurrent(); *key = static_cast<LPCWSTR>(*(result.Key)); *versionSequenceNumber = result.Value.Key; KBuffer::SPtr kBufferSptr = result.Value.Value; buffer = (char*)kBufferSptr->GetBuffer(); bufferLength = kBufferSptr->QuerySize(); #ifdef FEATURE_CACHE_OBJHANDLE *objectHandle = *(size_t*)buffer; buffer += sizeof(size_t); bufferLength -= sizeof(size_t); #else *objectHandle = 0; #endif value->Bytes = buffer; value->Length = bufferLength; value->Handle = kBufferSptr.RawPtr(); kBufferSptr.Detach(); } extern "C" void StoreKeyValueEnumerator_Release( __in StoreKeyValueAsyncEnumeratorHandle enumerator) { IAsyncEnumerator<KeyValuePair<KString::SPtr, KeyValuePair<LONG64, KBuffer::SPtr>>>::SPtr enumeratorSPtr; enumeratorSPtr.Attach((IAsyncEnumerator<KeyValuePair<KString::SPtr, KeyValuePair<LONG64, KBuffer::SPtr>>>*)enumerator); enumeratorSPtr->Dispose(); } ktl::Task StoreKeyValueEnumeratorMoveNextAsyncInternal( __in IAsyncEnumerator<KeyValuePair<KString::SPtr, KeyValuePair<LONG64, KBuffer::SPtr>>>* enumerator, __out ktl::CancellationTokenSource** cts, __out BOOL* advanced, __out LPCWSTR* key, __out size_t *objectHandle, __out Buffer* value, __out LONG64* versionSequenceNumber, __in fnNotifyStoreKeyValueEnumeratorMoveNextAsyncCompletion callback, __in void* ctx, __out NTSTATUS& status, __out BOOL& synchronousComplete) { ktl::CancellationToken cancellationToken = ktl::CancellationToken::None; ktl::CancellationTokenSource::SPtr cancellationTokenSource = nullptr; bool returnKeyValues = true; if (key == nullptr) returnKeyValues = false; status = STATUS_SUCCESS; synchronousComplete = false; if (cts != nullptr) { status = ktl::CancellationTokenSource::Create(GetAllocator(), RELIABLECOLLECTIONRUNTIME_TAG, cancellationTokenSource); CO_RETURN_VOID_ON_FAILURE(status); cancellationToken = cancellationTokenSource->Token; } auto awaitable = enumerator->MoveNextAsync(cancellationToken); if (IsComplete(awaitable)) { synchronousComplete = true; EXCEPTION_TO_STATUS(*advanced = co_await awaitable, status); // if key is null then don't care about key values if (returnKeyValues && *advanced) { StoreKeyValueEnumeratorCurrent(enumerator, key, objectHandle, value, versionSequenceNumber); } co_return; } if (cts != nullptr) *cts = cancellationTokenSource.Detach(); NTSTATUS ntstatus = STATUS_SUCCESS; BOOL _advanced = false; LPCWSTR _key = nullptr; size_t _objectHandle = 0; Buffer buffer = {}; LONG64 _versionSequenceNumber = -1; EXCEPTION_TO_STATUS(_advanced = co_await awaitable, ntstatus); if (returnKeyValues && _advanced) { StoreKeyValueEnumeratorCurrent(enumerator, &_key, &_objectHandle, &buffer, &_versionSequenceNumber); } callback(ctx, StatusConverter::ToHResult(ntstatus), _advanced, _key, _objectHandle, buffer.Bytes, buffer.Length, _versionSequenceNumber); KBuffer::SPtr kBuffer; kBuffer.Attach((KBuffer*)buffer.Handle); } extern "C" HRESULT StoreKeyValueEnumerator_MoveNextAsync( __in StoreKeyValueAsyncEnumeratorHandle enumerator, __out CancellationTokenSourceHandle* cts, __out BOOL* advanced, __out LPCWSTR* key, __out size_t* objectHandle, __out Buffer* value, __out int64_t* versionSequenceNumber, __in fnNotifyStoreKeyValueEnumeratorMoveNextAsyncCompletion callback, __in void* ctx, __out BOOL* synchronousComplete) { NTSTATUS status; StoreKeyValueEnumeratorMoveNextAsyncInternal( (IAsyncEnumerator<KeyValuePair<KString::SPtr, KeyValuePair<LONG64, KBuffer::SPtr>>>*)enumerator, (ktl::CancellationTokenSource**)cts, advanced, key, objectHandle, value, versionSequenceNumber, callback, ctx, status, *synchronousComplete); return StatusConverter::ToHResult(status); }
[ "noreply-sfteam@microsoft.com" ]
noreply-sfteam@microsoft.com
91b56fc21987a7b0f55b66ff056846708075046b
16cb55beea26cf910d8360a252d00578403d5044
/leetcode_cpp/include/leetcode/problem_38.hpp
afec74e07ac1ef7a09f524f7edc294657cbc291b
[]
no_license
hbina/leetcode-solutions
463141b28521b5983fe27b94652a6dcd2dd8e7d4
e823d03a2723fa9599144056a2958ddb35aef2d7
refs/heads/master
2021-08-19T00:57:07.699954
2020-04-03T17:54:53
2020-04-03T17:54:53
152,827,421
0
0
null
null
null
null
UTF-8
C++
false
false
1,069
hpp
#pragma once #include "util/generic/group_by.hpp" #include <string> #include <vector> #include <algorithm> // TODO :: Reimplement this using for-loops instead of recursion namespace leetcode { template < typename NumType, typename OutputType = std::string> static constexpr auto countAndSay(const NumType &n) -> OutputType { OutputType result = "1"; for (auto a = 1; a < n; a++) { const auto grouped = util::generic::group_by<std::vector<std::string>>( result.cbegin(), result.cend(), [](const auto &lhs, const auto &rhs) -> bool { return lhs == rhs; }); const auto transformed = std::accumulate( std::cbegin(grouped), std::cend(grouped), std::string{}, [](std::string &acc, const std::string &value) { return acc + std::to_string(value.size()) + value.front(); }); result = transformed; } return result; } } // namespace leetcode
[ "hanif.ariffin.4326@gmail.com" ]
hanif.ariffin.4326@gmail.com
da54f9ab64de7c21c14936c97daf5ad7e6b9208e
cffab619d884373b83f0b5040409ac9753f4e9ca
/LADA/oj2-dup.cpp
6b21e34e4a7b4a3869eb5def0cb04d1dd2c8d87c
[ "MIT" ]
permissive
luyiming/CLRS
15ff9c275f93710f34ca95eff4d0c3e6d537b852
84cee023d8f3bb8ff8ac3b417324006001ab1ea6
refs/heads/master
2021-01-19T07:43:05.222066
2017-05-15T05:01:19
2017-05-15T05:01:19
87,565,554
0
0
null
null
null
null
UTF-8
C++
false
false
7,851
cpp
#include <algorithm> #include <cassert> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <iostream> #include <limits> #include <vector> using namespace std; int totalSize; int cnt = 0; const int NodeSize = 1000; struct Node { double x, y; Node(int x, int y) : x(x), y(y) {} Node() : x(0), y(0) {} Node(const Node &rhs) { x = rhs.x; y = rhs.y; } void flip() { swap(x, y); } }; bool operator<(const Node &lhs, const Node &rhs) { return lhs.x < rhs.x; } /************** Expect complexity O(n) Selection algorithm **************/ int partition(int *A, int p, int r) { // use A[r] to partition A[p..r] int i = p; for (int j = p; j < r; j++) { if (A[j] < A[r]) { swap(A[j], A[i]); i++; } } swap(A[r], A[i]); return i; } // k starts from 1, Expect O(n) // return index int selectRank(int *A, int left, int right, int k) { if (left > right) { return -1; } int mid = partition(A, left, right); int leftNum = mid - left + 1; if (leftNum == k) { return mid; } else if (leftNum < k) { return selectRank(A, mid + 1, right, k - leftNum); } else { return selectRank(A, left, mid - 1, k); } } /************** Expect complexity O(n) Selection algorithm **************/ double nodeDistance(Node n1, Node n2) { return sqrt((n1.x - n2.x) * (n1.x - n2.x) + (n1.y - n2.y) * (n1.y - n2.y)); } double findMinDistance(Node *Nodes, int low, int high) { /* if (CNodes != Nodes) { cout << CNodes << endl; exit(1); } if (low < 0 || low > high) { cout << "low: " << low << " high: " << high << endl; exit(1); } if (high >= NodeSize) { cout << "low: " << low << " high: " << high << endl; exit(1); } */ int nodesSize = high - low + 1; if (nodesSize <= 1) { return std::numeric_limits<double>::max(); } if (nodesSize == 2) { // assert(low >= 0 && high < NodeSize); // assert(low <= high); // assert(high == low + 1); return nodeDistance(Nodes[low], Nodes[high]); } // int *xArray = new int[nodesSize]; // for (int i = 0; i < nodesSize; i++) { // xArray[i] = Nodes.at(i).x; //} // int xMedian = xArray[selectRank(xArray, 0, nodesSize - 1, nodesSize / 2)]; sort(Nodes + low, Nodes + high + 1); // qsort(Nodes + low, high - low + 1, sizeof(Node), cmp); // for (int i = low; i <= high; i++) { // cout << Nodes[i].x << " "; // } // cout << endl; int xMedianIndex = (low + high) / 2; int xMedian = Nodes[xMedianIndex].x; // cout << "xmedian: " << xMedian << endl; if (Nodes[low].x == Nodes[high].x) { if (Nodes[low].y == Nodes[high].y) { return 0.0; } // flip for (int i = low; i <= high; i++) { Nodes[i].flip(); } double ret = findMinDistance(Nodes, low, high); for (int i = low; i <= high; i++) { Nodes[i].flip(); } return ret; } // ensure both parts have nodes if (xMedianIndex + 1 > high) { xMedianIndex--; } assert(xMedianIndex >= low && xMedianIndex < high); // cout << "median: " << Nodes[xMedianIndex].x << endl; double d1 = findMinDistance(Nodes, low, xMedianIndex); double d2 = findMinDistance(Nodes, xMedianIndex + 1, high); double d = d1 < d2 ? d1 : d2; // cout << "d: " << d << endl; int leftCandidatesIndex = xMedianIndex, rightCandidatesIndex = xMedianIndex + 1; while (leftCandidatesIndex >= low) { if ((double)Nodes[leftCandidatesIndex].x >= (double)xMedian - d) { leftCandidatesIndex--; } else { break; } } leftCandidatesIndex--; if (leftCandidatesIndex < low) { leftCandidatesIndex = low; } while (rightCandidatesIndex <= high) { if ((double)Nodes[rightCandidatesIndex].x <= (double)xMedian + d) { rightCandidatesIndex++; } else { break; } } rightCandidatesIndex++; if (rightCandidatesIndex > high) { rightCandidatesIndex = high; } // cout << "xMedianIndex: " << xMedianIndex << endl; // cout << "leftCandidatesIndex: " << leftCandidatesIndex << endl; // cout << "rightCandidatesIndex: " << rightCandidatesIndex << endl; /* for (int i = low; i < leftCandidatesIndex; i++) { if ((double)Nodes[i].x >= (double)xMedian - d) { cout << "1.d: " << d << endl; cout << "xMedian: " << xMedian << endl; cout << "xMedianIndex: " << xMedianIndex << endl; cout << "low: " << low << endl; cout << "high: " << high << endl; cout << "leftCandidatesIndex: " << leftCandidatesIndex << endl; cout << "rightCandidatesIndex: " << rightCandidatesIndex << endl; for (int j = low; j <= high; j++) { cout << Nodes[j].x << " "; } cout << endl; for (int j = low; j <= high; j++) { cout << Nodes[j].y << " "; } cout << endl; assert(0); } } for (int i = rightCandidatesIndex + 1; i <= high; i++) { if ((double)Nodes[i].x <= (double)xMedian + d) { cout << "2.d: " << d << endl; cout << "xMedian: " << xMedian << endl; cout << "xMedianIndex: " << xMedianIndex << endl; cout << "low: " << low << endl; cout << "high: " << high << endl; cout << "leftCandidatesIndex: " << leftCandidatesIndex << endl; cout << "rightCandidatesIndex: " << rightCandidatesIndex << endl; for (int j = low; j <= high; j++) { cout << Nodes[j].x << " "; } cout << endl; for (int j = low; j <= high; j++) { cout << Nodes[j].y << " "; } cout << endl; assert(0); } } */ for (int i = leftCandidatesIndex; i <= xMedianIndex; i++) { for (int j = xMedianIndex + 1; j <= rightCandidatesIndex; j++) { double currentD = nodeDistance(Nodes[i], Nodes[j]); if (currentD < d) { d = currentD; } } } // delete[] xArray; return d; } double bruteForceMinDistance(Node *Nodes, int n) { double minDistance = std::numeric_limits<double>::max(); for (int i = 0; i < n; i++) { for (int j = i + 1; j < n; j++) { double currentD = nodeDistance(Nodes[i], Nodes[j]); if (currentD < minDistance) { minDistance = currentD; } } } return minDistance; } int main() { int x, y; cin >> totalSize; Node *Nodes = new Node[totalSize]; for (int i = 0; i < totalSize; i++) { scanf("%d,%d", &x, &y); Nodes[i] = Node(x, y); } // for (int i = 0; i < n; i++) { // cout << Nodes[i].x << " " << Nodes[i].y << endl; // } cout << "wo yi yue du guan yu chao xi de shuo ming" << endl; printf("%.6f", findMinDistance(Nodes, 0, totalSize - 1)); delete[] Nodes; // 3 657994585,941883880 243678075,1353968635 730268714,177645073 // should be 25059.093140, you solve 30714.540872 // should be 2148.444321, you solve 9909.975277 // 10 1653377373,1131176229 1914544919,859484421 756898537,608413784 1973594324,1734575198 2038664370,149798315 184803526,1129566413 1424268980,412776091 749241873,1911759956 42999170,137806862 135497281,982906996 /* const int TESTNUM = 100; const double EPSILON = 1.0e-5; Node *testNodes = new Node[NodeSize]; Node *testNodes2 = new Node[NodeSize]; for (int i = 0; i < TESTNUM; i++) { for (int j = 0; j < NodeSize; j++) { testNodes[j] = Node(rand(), rand()); testNodes2[j] = testNodes[j]; } cnt++; double d1 = bruteForceMinDistance(testNodes, NodeSize); double d2 = findMinDistance(testNodes2, 0, NodeSize - 1); if (fabs(d1 - d2) > EPSILON) { printf("should be %.6f, you solve %.6f\n", d1, d2); for (int k = 0; k < NodeSize; k++) { printf("%d,%d ", testNodes[k].x, testNodes[k].y); } printf("\n"); for (int k = 0; k < NodeSize; k++) { printf("%d,%d ", testNodes2[k].x, testNodes2[k].y); } printf("\n"); printf("\n"); return 0; } } */ return 0; }
[ "luyimingchn@gmail.com" ]
luyimingchn@gmail.com
a03267c2d7bbbfb9257c8a1b241b726bb0811cb6
a775a26cded574dcc5c090a0d78f6ccc626bdb64
/partie.cpp
feec092c3f60ad560255c6b85082f178098cb08b
[]
no_license
Winnie75/TowerDefense
c0f522fdd1dc3bde0b94e4152ce41e0d413e56ea
0638bdabbcab726e374a8e4b0cfc8d1e538fec3f
refs/heads/master
2021-12-02T23:58:48.897791
2012-05-10T14:01:48
2012-05-10T14:01:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,507
cpp
#include "partie.h" #include <QTextStream> #include <QFile> Partie::Partie(QObject *parent) : QObject(parent) { sonNiveau = new Niveau(); sonTerrain = NULL; sonTimerDecompte = new QTimer(); sonTimerDecompte->start(1000); QObject::connect(sonTimerDecompte, SIGNAL(timeout()), this, SLOT(decompte())); nouvellePartie(); sonImageBaseTourelle = QImage("data/tourelle_base.png"); chargeImageTypeTourelle(); } Partie::~Partie() { delete sonTerrain; delete sonNiveau; delete sonTimerDecompte; } void Partie::decompte() { if (sonDecompteTemps > 0) sonDecompteTemps--; else if (sonDecompteEnnemi > 0) { sonTerrain->ajouteEnnemi ( new Ennemi(sonNiveau->getSonChemin(), sonNiveau->getSesVagues()->at(saVague).getSonTypeEnnemis()) ); sonDecompteEnnemi--; } else if ((unsigned int)saVague+1 < sonNiveau->getSesVagues()->size()) { saVague++; sonDecompteTemps = sonNiveau->getSesVagues()->at(saVague).getSonDelai(); sonDecompteEnnemi = sonNiveau->getSesVagues()->at(saVague).getSonNombreEnnemis(); } else if (sonTerrain->getSaListeEnnemis()->size() == 0) sonEtat = fin() ? FIN : VICTOIRE; if (sonEtat == VICTOIRE) { sauvegarderPartie(); } } void Partie::infligerDegat(int unDegat) { saVie -= unDegat; if (saVie <= 0) { saVie = 0; sonEtat = DEFAITE; } } void Partie::ajoutCredits(Ennemi *unEnnemi) { sesCredits += unEnnemi->getSonPrix(); } void Partie::nouvellePartie() { sonNumeroNiveau = 1; chargerNiveau(); } void Partie::chargerPartie() { QFile file("data/1.sav"); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) return; QTextStream stream(&file); stream.readLine(); { stream >> sonNumeroNiveau; chargerNiveau(); stream >> saVie; stream >> sesCredits; stream >> sonEtat; stream >> saVague; stream >> sonDecompteTemps; stream >> sonDecompteEnnemi; stream >> sonTypeTourelle; } stream.read(3); sonTerrain->charge(&stream); file.close(); chargeImageTypeTourelle(); } void Partie::sauvegarderPartie() { QFile file("data/1.sav"); if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) return; QTextStream stream(&file); stream << "partie" << endl; { stream << sonNumeroNiveau << endl; stream << saVie << endl; stream << sesCredits << endl; stream << sonEtat << endl; stream << saVague << endl; stream << sonDecompteTemps << endl; stream << sonDecompteEnnemi << endl; stream << sonTypeTourelle << endl; } stream << ';' << endl; sonTerrain->sauvegarde(&stream); file.close(); } bool Partie::fin() { Niveau *leNiveau; leNiveau = new Niveau("data/" + QString::number(sonNumeroNiveau+1) + ".lvl"); if (!leNiveau->charge()) return true; delete leNiveau; return false; } void Partie::chargerNiveau() { delete sonNiveau; sonNiveau = new Niveau("data/" + QString::number(sonNumeroNiveau) + ".lvl"); if (!sonNiveau->charge()) return; recommencerNiveau(); } void Partie::niveauSuivant() { sonNumeroNiveau++; chargerNiveau(); chargeImageTypeTourelle(); } void Partie::chargeImageTypeTourelle() { sonImageTypeTourelle = QImage("data/tourelle" + QString::number(sonTypeTourelle) + "_canon.png"); } void Partie::recommencerNiveau() { delete sonTerrain; sonTerrain = new Terrain(this, sonNiveau->getSonChemin()); saVie = 100; sesCredits = sonNiveau->getSesCredits(); sonEtat = JOUE; saVague = 0; sonDecompteTemps = sonNiveau->getSesVagues()->at(0).getSonDelai(); sonDecompteEnnemi = sonNiveau->getSesVagues()->at(0).getSonNombreEnnemis(); sonTypeTourelle = 0; } void Partie::afficheBarreVie(QPainter *unPainter) { unPainter->save(); unPainter->translate(20, 20); unPainter->setPen(Qt::black); unPainter->setBrush(Qt::green); unPainter->drawRect(QRect(0, 0, 22, 102)); unPainter->setPen(Qt::green); unPainter->setBrush(Qt::red); unPainter->drawRect(QRect(1, 1, 20, 100-saVie)); unPainter->restore(); } void Partie::afficheInfoVague(QPainter *unPainter) { unPainter->save(); unPainter->translate(10, HEIGHT-28); unPainter->setPen(Qt::white); unPainter->setBrush(Qt::black); if (sonDecompteTemps > 0) { unPainter->drawText(0, 0, "Prochaine vague dans :"); unPainter->drawText(0, 20, QString::number(sonDecompteTemps) + " seconde(s)"); } else { unPainter->drawText(0, 20, QString::number(sonDecompteEnnemi) + " ennemi(s) restant(s)"); } unPainter->restore(); } void Partie::afficheEtat(QPainter *unPainter, QString unTitre, QString unSousTitre) { unPainter->save(); unPainter->setPen(Qt::transparent); unPainter->setBrush(QColor(0, 0, 0, 50)); unPainter->drawRect(QRect(0, 0, WIDTH, HEIGHT)); unPainter->setPen(Qt::white); unPainter->setFont(QFont("Arial", 70)); unPainter->drawText(0, 0, WIDTH, HEIGHT, Qt::AlignCenter, unTitre); unPainter->setFont(QFont("Arial", 25)); unPainter->drawText(0, 0, WIDTH, HEIGHT, Qt::AlignCenter, "\n\n\n" + unSousTitre); unPainter->restore(); } void Partie::afficheCredits(QPainter *unPainter) { unPainter->save(); unPainter->translate(0, HEIGHT-20); unPainter->setPen(Qt::white); unPainter->setBrush(Qt::black); unPainter->drawText(0, 0, WIDTH-10, 20, Qt::AlignRight, QString::number(sesCredits) + QString::fromUtf8(" crédit(s)")); unPainter->restore(); } void Partie::affiche(Curseur *unCurseur, QPainter *unPainter) { sonTerrain->affiche(unPainter); sonTerrain->afficheSurvol(unCurseur, unPainter, &sonImageBaseTourelle, sesCredits - Tourelle::prix(sonTypeTourelle) >= 0 ? &sonImageTypeTourelle : NULL); afficheBarreVie(unPainter); afficheInfoVague(unPainter); afficheCredits(unPainter); switch (sonEtat) { case DEFAITE: afficheEtat(unPainter, QString::fromUtf8("Défaite"), ""); break; case VICTOIRE: afficheEtat(unPainter, "Victoire", "Cliquez pour continuer"); break; case FIN: afficheEtat(unPainter, "Fin de partie", ""); break; } } void Partie::logique(Curseur *unCurseur) { switch (sonEtat) { case JOUE: { if (unCurseur->getBouton() == Qt::RightButton && unCurseur->getDernierBouton() != Qt::RightButton) { sonTypeTourelle = (sonTypeTourelle+1) % 2; chargeImageTypeTourelle(); } if (unCurseur->getBouton() == Qt::LeftButton && sesCredits - Tourelle::prix(sonTypeTourelle) >= 0) if (sonTerrain->ajouteTourelle(unCurseur, sonTypeTourelle)) sesCredits -= Tourelle::prix(sonTypeTourelle); sonTerrain->logique(); } break; case VICTOIRE: { if (unCurseur->getBouton() == Qt::LeftButton) niveauSuivant(); } break; } } Niveau* Partie::getSonNiveau() { return sonNiveau; }
[ "geecko.dev@free.fr" ]
geecko.dev@free.fr
a827030f694e81788ff4def61f8a97d6ba9ddf55
efed5d60bf0e4b9cca6a64dc4d5da460848eac46
/jp2_pc/Source/Lib/Renderer/RenderType.hpp
fba6a72b015f447c017ba507c5a0dbade9d66475
[]
no_license
Rikoshet-234/JurassicParkTrespasser
515b2e0d967384a312d972e9e3278954a7440f63
42f886d99ece2054ff234c017c07e336720534d5
refs/heads/master
2022-04-24T01:16:37.700865
2020-03-28T01:21:14
2020-03-28T01:21:14
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
7,441
hpp
/*********************************************************************************************** * * Copyright © DreamWorks Interactive. 1996 * * Contents: * Base class for renderer's types that are within a scene. * * Bugs: * * To do: * Replace virtual rptr_const<CBioMesh>* rpbmCast() const with the right thing. * Move prdtFindShared from Loader.cpp to some more reasonable place. * *********************************************************************************************** * * $Log:: /JP2_PC/Source/Lib/Renderer/RenderType.hpp $ * * 14 98.09.08 2:35p Mmouni * Made changes to support creation of non CMesh objects for invisible geometry. * * 13 5/14/98 8:06p Agrant * Removed the defunct poval_renderer argument form rendertype constructor * * 12 10/02/97 6:13p Agrant * CRenderType descends frim CFetchable * * 11 97/08/18 16:18 Speter * Removed useless statement in ptCastRenderType. * * 10 97/06/23 19:25 Speter * Changed wad of shit to rptr_const_static_cast. * * 9 5/15/97 7:05p Agrant * Improved cast functionality * a FindShared function for rendertype loading with text properties. * * 8 4/16/97 2:24p Agrant * Hacked biomesh cast function * * 7 97/03/24 15:10 Speter * Made camera a CInstance rather than a CRenderType. * * 6 97/01/26 19:52 Speter * Changed ptGet() to ptPtrRaw() in rptr casting functions. * * 5 97/01/07 11:27 Speter * Put all CRenderTypes in rptr<>. * * 4 11/26/96 6:28p Mlange * The bounding volume function now returns a CBoundVol instead of a CBoundVolCompound. * * 3 11/23/96 5:48p Mlange * Made the bvcGet(0 function const. The 'cast' class now also handles null pointers. * * 2 11/21/96 4:18p Mlange * Added copy function. Made various things const. * * 1 11/21/96 12:37p Mlange * Initial implementation. * **********************************************************************************************/ #ifndef HEADER_LIB_RENDERER_RENDERTYPE_HPP #define HEADER_LIB_RENDERER_RENDERTYPE_HPP #include "Lib/Loader/Fetchable.hpp" #include "Lib/Transform/Vector.hpp" //********************************************************************************************* // // Forward declarations for CRenderType. // class CLight; class CShape; class CMesh; class CBioMesh; class CBoundVol; // For loading/creating render types in the loader.... class CGroffObjectName; class CLoadWorld; class CHandle; class CObjectValue; class CValueTable; //********************************************************************************************* // class CRenderType: public CRefObj, public CFetchable // // Base class for the rendering types that are the elements of a scene. // // Prefix: rdt // // Notes: // //************************************** { public: //***************************************************************************************** // // Constructors and destructor. // // Default constructor. CRenderType() { } //***************************************************************************************** // // Member functions. // //***************************************************************************************** // virtual const CBoundVol& bvGet ( ) const = 0; // // Obtain the extents. // // Returns: // A bounding volume that describes the extents of this class. // //********************************** //***************************************************************************************** // virtual rptr<CRenderType> prdtCopy ( ) = 0; // // Copies this, returning a unique, non-instanced object outside of the instancing system. // // Returns: // A new (unique) copy of this. // //************************** //***************************************************************************************** // virtual CVector3<> v3GetPhysicsBox ( ) const; // // Obtain the extents of the physics box for this thing. // // Returns: // A vector that specifies the extents of the physics box. // //********************************** //***************************************************************************************** // virtual CVector3<> v3GetPivot ( ) const; // // Obtain the pivot point for this thing. // // Returns: // A vector that specifies the pivot point in local space. // //********************************** // // Identifier functions. // //***************************************************************************************** virtual void Cast(rptr_const<CRenderType>* pprdt) const { *pprdt = rptr_const_this(this); } //***************************************************************************************** virtual void Cast(rptr_const<CLight>* pplt) const { *pplt = rptr0; } //***************************************************************************************** virtual void Cast(rptr_const<CShape>* ppsh) const { *ppsh = rptr0; } //***************************************************************************************** virtual void Cast(rptr_const<CMesh>* ppsh) const { *ppsh = rptr0; } //***************************************************************************************** virtual void Cast(rptr_const<CBioMesh>* ppsh) const { *ppsh = rptr0; } //***************************************************************************************** // HACK HACK HACK // // Can't figure out how to avoid // // error C2664: 'Cast' : cannot convert parameter 1 from 'class rptr_const<class CBioMesh> *' to 'class rptr_const<class CShape> *' // virtual rptr_const<CBioMesh> rpbmCast() const { return rptr0; } public: //***************************************************************************************** // static const rptr<CRenderType> prdtFindShared ( const CGroffObjectName* pgon, // Pointer to GROFF name. CLoadWorld* pload, // Pointer to loader. const CHandle& h_obj, // Handle to the base object in the value table. CValueTable* pvtable // Pointer to the value table. ); // Obtain a RenderType that has the requested data. // // Notes: // Uses the value table entries to determine what kind of render type to create. // Instances and shares data wherever possible. // //************************** }; //********************************************************************************************* // template<class T_TYPE> class ptCastRenderType // // Class that behaves like the dynamic_cast<> operator for classes derived from CRenderType. // // Prefix: N/A // // Example: // rptr<CShape> psh; // // rptr<CRenderType> prdt = psh; // // rptr<CShape> psh = ptCastRenderType<CShape>(psh); // //************************** { rptr_const<T_TYPE> ptVal; // The return value. public: //***************************************************************************************** // // Constructors and destructors. // ptCastRenderType(rptr_const<CRenderType> prdt) { // Skip the cast function call if a null pointer is passed. if (prdt != 0) prdt->Cast(&ptVal); } //***************************************************************************************** // // Overloaded operators. // operator rptr<T_TYPE>() const { return rptr_nonconst(ptVal); } operator rptr_const<T_TYPE>() const { return ptVal; } operator bool() const { return ptVal; } }; #endif
[ "crackedcomputerstudios@gmail.com" ]
crackedcomputerstudios@gmail.com
25b0d843773f8cefdf70ca004a60783d4d60259d
470b2d817157d060789dd49926802344fa07f5c3
/wificrack/FileSystemWatcher.cpp
01ed59ca3d4f73f14d25047d1414cdcc63005254
[]
no_license
xiangshuijiao/wificrack
9d7bd63f4cf664757aee1153b5c58d6217b15726
ac7a969935424b7400487c69c2d88b3bb9db9f6c
refs/heads/master
2020-08-17T22:53:43.341468
2019-11-07T17:56:26
2019-11-07T17:56:26
215,720,535
0
0
null
null
null
null
UTF-8
C++
false
false
3,880
cpp
/* * how to use: * 可以通过 * #include "FileSystemWatcher.h" * FileSystemWatcher *a =new FileSystemWatcher(); * a->addWatchPath("E:/Test")来监控指定的文件/目录,监控之后,就可以在对应的路径进行更新测试了。 * * */ #include "FileSystemWatcher.h" #include <QDir> #include <QFileInfo> #include <QDebug> #include <QTextStream> //FileSystemWatcher* FileSystemWatcher::m_pInstance = NULL; FileSystemWatcher::FileSystemWatcher(QObject *parent) : QObject(parent) { } FileSystemWatcher::~FileSystemWatcher() { } void FileSystemWatcher::addWatchPath(QString path) { qDebug() << QString("Add to watch: %1").arg(path); // if (m_pInstance == NULL) // { m_pInstance = new FileSystemWatcher(); m_pInstance->m_pSystemWatcher = new QFileSystemWatcher(); // 连接QFileSystemWatcher的directoryChanged和fileChanged信号到相应的槽 connect(m_pInstance->m_pSystemWatcher, SIGNAL(directoryChanged(QString)), m_pInstance, SLOT(directoryUpdated(QString))); connect(m_pInstance->m_pSystemWatcher, SIGNAL(fileChanged(QString)), m_pInstance, SLOT(fileUpdated(QString))); connect(m_pInstance->m_pSystemWatcher, SIGNAL(fileChanged(QString)), this, SIGNAL(emit_signal_file_changed(QString))); // } // 添加监控路径 m_pInstance->m_pSystemWatcher->addPath(path); // 如果添加路径是一个目录,保存当前内容列表 QFileInfo file(path); if (file.isDir()) { const QDir dirw(path); m_pInstance->m_currentContentsMap[path] = dirw.entryList(QDir::NoDotAndDotDot | QDir::AllDirs | QDir::Files, QDir::DirsFirst); } } void FileSystemWatcher::directoryUpdated(const QString &path) { qDebug() << QString("Directory updated: %1").arg(path); // 比较最新的内容和保存的内容找出区别(变化) QStringList currEntryList = m_currentContentsMap[path]; const QDir dir(path); QStringList newEntryList = dir.entryList(QDir::NoDotAndDotDot | QDir::AllDirs | QDir::Files, QDir::DirsFirst); QSet<QString> newDirSet = QSet<QString>::fromList(newEntryList); QSet<QString> currentDirSet = QSet<QString>::fromList(currEntryList); // 添加了文件 QSet<QString> newFiles = newDirSet - currentDirSet; QStringList newFile = newFiles.toList(); // 文件已被移除 QSet<QString> deletedFiles = currentDirSet - newDirSet; QStringList deleteFile = deletedFiles.toList(); // 更新当前设置 m_currentContentsMap[path] = newEntryList; if (!newFile.isEmpty() && !deleteFile.isEmpty()) { // 文件/目录重命名 if ((newFile.count() == 1) && (deleteFile.count() == 1)) { qDebug() << QString("File Renamed from %1 to %2").arg(deleteFile.first()).arg(newFile.first()); } } else { // 添加新文件/目录至Dir if (!newFile.isEmpty()) { qDebug() << "New Files/Dirs added: " << newFile; foreach (QString file, newFile) { // 处理操作每个新文件.... } } // 从Dir中删除文件/目录 if (!deleteFile.isEmpty()) { qDebug() << "Files/Dirs deleted: " << deleteFile; foreach(QString file, deleteFile) { // 处理操作每个被删除的文件.... } } } } void FileSystemWatcher::fileUpdated(const QString &path) { QFileInfo file(path); QString strPath = file.absolutePath(); QString strName = file.fileName(); qDebug() << QString("The file %1 at path %2 is updated").arg(strName).arg(strPath); }
[ "you@example.com" ]
you@example.com
5ef59f679b32d01f83370dbd60e94e4f8460c292
6b53372edb28341e5314e0939700e607063654ef
/src/fireengine.native.player/src/graphics/filtermode.h
6c4044157199277b27a42129f66cedc94bd77481
[ "MIT" ]
permissive
iamkevinf/FireEngine
a4d571eccb320ed75787bc31457940c86f755849
abf440f7a1e5596165b08fcc691ce894dfe2faef
refs/heads/master
2022-12-17T23:20:15.019484
2020-09-15T05:15:44
2020-09-15T05:15:44
282,367,530
1
0
null
null
null
null
UTF-8
C++
false
false
182
h
#ifndef __FILTER_MODE_H__ #define __FILTER_MODE_H__ namespace FireEngine { enum class FilterMode { Point, Bilinear, Trilinear }; } #endif // __FILTER_MODE_H__
[ "fyc@time-vr.com" ]
fyc@time-vr.com
3194f6cb395a7d3a2e72076982d6541b3043e9fd
401bd5c11dbb27d7d39e7f412e2d69c04c64fb92
/orderedhttest.cpp
1c9a562aeb1e1fe51663accdc1db3285bec753ab
[]
no_license
Rebecca-Su/Hashing
40685b1818080fa15178153406bbeeaa3fbca2cb
1efa3feaf0bdada87f8bee96edd352286ea037d0
refs/heads/master
2022-12-23T14:19:51.457522
2020-09-22T21:51:56
2020-09-22T21:51:56
297,780,227
0
0
null
null
null
null
UTF-8
C++
false
false
1,586
cpp
#include "ordered.h" int main() { string command, param; ChainedHashing chained_hash; string thisLine; while(!cin.eof()) { getline(cin, thisLine); if(thisLine.size() == 0) break; command = thisLine.substr(0, 1); param = thisLine.substr(2, thisLine.size()); if(command == "n") { chained_hash.createTable(stol(param)); cout << "success" << endl; } if(command == "i") { size_t pos; string caller = ""; long key = -1; pos = param.find(";"); if(pos != string::npos) { key = stol(param.substr(0, pos)); caller = param.substr(pos + 1, param.size()); } if(chained_hash.insert(key, caller)) cout << "success" << endl; else cout << "failure" << endl; } else if(command == "s") { Data result = chained_hash.search(stol(param)); if(result.caller == "") cout << "not found" << endl; else cout << "found " << result.caller << " in " << result.key << endl; } else if(command == "d") { if(chained_hash.del(stol(param))) cout << "success" << endl; else cout << "failure" << endl; } else if(command == "p") chained_hash.print(stol(param)); } return 0; }
[ "r24su@uwaterloo.ca" ]
r24su@uwaterloo.ca
e513771a8137a23fac6b19e5e638be90dc3b9b48
1f2959f7840e1656f9d051b5bec147b43254e2d7
/oop/task8/imageleapscounter.cpp
8adbe31e155e3764727f2112e240903f9a67ff72
[]
no_license
zerlok/nsu-prog-all
521509738f8b2b91e86b5589eea8f4397fcd5976
2ff5ebe8d40326d731fb4c7d2b2fc37f44831364
refs/heads/master
2022-11-13T21:45:48.072579
2017-09-20T19:05:08
2017-09-20T19:05:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,417
cpp
#include "affinetransformation.h" #include "imageleapscounter.h" const double ImageLeapsCounter::_default_dx = 1.0; const double ImageLeapsCounter::_default_dy = 0.0; ImageLeapsCounter::ImageLeapsCounter(const ImagePNG &img) : img(img), width(img.get_width()), height(img.get_height()), _dx(_default_dx), _dy(_default_dy), _leaps_num(0), _rows_num(0) { } ImageLeapsCounter::~ImageLeapsCounter() { } void ImageLeapsCounter::set_direction(const int degrees) { _dx = _default_dx; _dy = _default_dy; RotationTransformation(degrees).transform(_dx, _dy); } size_t ImageLeapsCounter::get_counted_leaps() const { return _leaps_num; } size_t ImageLeapsCounter::get_counted_rows() const { return _rows_num; } size_t ImageLeapsCounter::reset() { size_t tmp = _leaps_num; _leaps_num = 0; _rows_num = 0; return tmp; } size_t ImageLeapsCounter::count_total_leaps(fptr_counter f_counter) { // Rows from top edge. for (size_t row_begin_x = width - 1; int(row_begin_x) >= 0; --row_begin_x) { _leaps_num += _get_row_leaps_data(f_counter, row_begin_x, 0.0).leaps_num; ++_rows_num; } // Rows from left edge. for (size_t row_begin_y = 0; row_begin_y <= height; ++row_begin_y) { _leaps_num += _get_row_leaps_data(f_counter, 0.0, row_begin_y).leaps_num; ++_rows_num; } // Rows from bottom edge. for (size_t row_begin_x = 0; row_begin_x < width; ++row_begin_x) { _leaps_num += _get_row_leaps_data(f_counter, row_begin_x, height).leaps_num; ++_rows_num; } return _leaps_num; } ImgHistogram ImageLeapsCounter::count_leaps_to_histogram(fptr_counter f_counter) { ImgHistogram histogram; RowData data; // Rows from top edge. for (size_t row_begin_x = width - 1; int(row_begin_x) >= 0; --row_begin_x) { data = _get_row_leaps_data(f_counter, row_begin_x, 0.0); _leaps_num += data.leaps_num; ++_rows_num; histogram.add_bin(data.leaps_num * 100.0 / data.length); } // Rows from left edge. for (size_t row_begin_y = 0; row_begin_y <= height; ++row_begin_y) { data = _get_row_leaps_data(f_counter, 0.0, row_begin_y); _leaps_num += data.leaps_num; ++_rows_num; histogram.add_bin(data.leaps_num * 100.0 / data.length); } // Rows from bottom edge. for (size_t row_begin_x = 0; row_begin_x < width; ++row_begin_x) { data = _get_row_leaps_data(f_counter, row_begin_x, height); _leaps_num += data.leaps_num; ++_rows_num; histogram.add_bin(data.leaps_num * 100.0 / data.length); } return std::move(histogram); } ImageLeapsCounter::RowData ImageLeapsCounter::_get_row_leaps_data(fptr_counter f_counter, double curr_x, double curr_y) const { double next_x = curr_x + _dx; double next_y = curr_y + _dy; bool next_intensity; bool current_intensity = f_counter(img.get_pixel(curr_x, curr_y)); size_t leaps = 0; size_t len = 0; while ((int(curr_x) >= 0) && (int(curr_y) >= 0) && (int(next_x) >= 0) && (int(next_y) >= 0) && (int(curr_x) < int(width)) && (int(curr_y) < int(height)) && (int(next_x) < int(width)) && (int(next_y) < int(height))) { next_intensity = f_counter(img.get_pixel(next_x, next_y)); if (current_intensity != next_intensity) ++leaps; curr_x = next_x; curr_y = next_y; while ((int(curr_x) == int(next_x)) && (int(curr_y) == int(next_y))) { next_x += _dx; next_y += _dy; } current_intensity = next_intensity; ++len; } return {leaps, len}; }
[ "denergytro@gmail.com" ]
denergytro@gmail.com
46507623acd440c826f32461d977c43ed3cb3415
1624de67cbed074dd130a1250b6e02965c399a2f
/C++PhotoEditor/C++PhotoEditor/Rectangle.cpp
cd38fc149394739499fe80e682bed6e93f6cc952
[]
no_license
Ognjenjebot/PhotoEditor
445e7213af6b5374f6c432a802ff919a815f8af8
4ec7a5f684b60043222279eafdcbbb6918b36ac8
refs/heads/main
2023-07-04T00:48:13.693377
2021-07-22T15:20:37
2021-07-22T15:20:37
388,486,159
1
0
null
null
null
null
UTF-8
C++
false
false
381
cpp
#include "Rectangle.h" Rectangle::Rectangle(int x, int y, int width, int height) { this->x = x; this->y = y; this->width = width; this->height = height; } int Rectangle::getX() const { return this->x; } int Rectangle::getY() const { return this->y; } int Rectangle::getWidth() const { return this->width; } int Rectangle::getHeight() const { return this->height; }
[ "ognjen.stanojevic321@gmail.com" ]
ognjen.stanojevic321@gmail.com
266ad9776669ff58d7a79d9c07b0a20e3f1c8fc1
10e6dcf44471dc0b067d28b26243597d1cce6115
/AnaModules/LArNeutrinoAna_module.cc
fe3fae59bf1e50c075cb6bce6928afe0bd357c76
[]
no_license
SFBayLaser/uboonedev
e74d731ae6ba1d2906a2ceb71d5e271246dd53e2
e8185ec205d98669da3d8c8102aa803ec240fbd8
refs/heads/master
2020-04-06T05:10:45.660399
2015-10-27T01:23:23
2015-10-27T01:23:23
36,940,805
0
3
null
2017-03-03T20:50:42
2015-06-05T15:40:43
C++
UTF-8
C++
false
false
41,702
cc
// LArNeutrinoAna_module.cc // A basic "skeleton" to read in art::Event records from a file, // access their information, and do something with them. // See // <https://cdcvs.fnal.gov/redmine/projects/larsoftsvn/wiki/Using_the_Framework> // for a description of the ART classes used here. // Almost everything you see in the code below may have to be changed // by you to suit your task. The example task is to make histograms // and n-tuples related to dE/dx of particle tracks in the detector. // As you try to understand why things are done a certain way in this // example ("What's all this stuff about 'auto const&'?"), it will help // to read ADDITIONAL_NOTES.txt in the same directory as this file. #ifndef LArNeutrinoAna_module #define LArNeutrinoAna_module // LArSoft includes #include "Simulation/SimChannel.h" #include "Simulation/LArG4Parameters.h" #include "RecoBase/Hit.h" #include "RecoBase/Cluster.h" #include "RecoBase/Track.h" #include "RecoBase/PFParticle.h" #include "AnalysisBase/CosmicTag.h" #include "Utilities/DetectorProperties.h" #include "Utilities/LArProperties.h" #include "Geometry/Geometry.h" #include "SimulationBase/MCParticle.h" #include "SimulationBase/MCTruth.h" #include "SimulationBase/MCNeutrino.h" #include "SimpleTypesAndConstants/geo_types.h" #include "MCBase/MCHitCollection.h" //#include "cetlib/search_path.h" #include "cetlib/cpu_timer.h" #include "Utilities/TimeService.h" #include "Utilities/AssociationUtil.h" // Framework includes #include "art/Framework/Core/EDAnalyzer.h" #include "art/Framework/Principal/Event.h" #include "art/Framework/Principal/Handle.h" #include "art/Framework/Principal/View.h" #include "art/Framework/Services/Registry/ServiceHandle.h" #include "art/Framework/Services/Optional/TFileService.h" #include "art/Framework/Core/ModuleMacros.h" #include "art/Framework/Core/FindManyP.h" #include "messagefacility/MessageLogger/MessageLogger.h" #include "fhiclcpp/ParameterSet.h" #include "cetlib/exception.h" // ROOT includes. Note: To look up the properties of the ROOT classes, // use the ROOT web site; e.g., // <http://root.cern.ch/root/html532/ClassIndex.html> #include "TH1.h" #include "TH2.h" #include "TProfile.h" #include "TTree.h" #include "TLorentzVector.h" #include "TVector3.h" // C++ Includes #include <map> #include <vector> #include <algorithm> #include <iostream> #include <string> #include <cmath> namespace LArNeutrinoAna { //----------------------------------------------------------------------- //----------------------------------------------------------------------- // class definition class LArNeutrinoAna : public art::EDAnalyzer { public: // Standard constructor and destructor for an ART module. explicit LArNeutrinoAna(fhicl::ParameterSet const& pset); virtual ~LArNeutrinoAna(); // This method is called once, at the start of the job. In this // example, it will define the histograms and n-tuples we'll write. void beginJob(); // This method is called once, at the start of each run. It's a // good place to read databases or files that may have // run-dependent information. void beginRun(const art::Run& run); // This method reads in any parameters from the .fcl files. This // method is called 'reconfigure' because it might be called in the // middle of a job; e.g., if the user changes parameter values in an // interactive event display. void reconfigure(fhicl::ParameterSet const& pset); // The analysis routine, called once per event. void analyze (const art::Event& evt); private: // Calculate lengths double length(const recob::Track* track); double length(const simb::MCParticle& part, double dx, TVector3& start, TVector3& end, TVector3& startmom, TVector3& endmom, unsigned int tpc = 0, unsigned int cstat = 0); // The stuff below is the part you'll most likely have to change to // go from this custom example to your own task. typedef std::map< const recob::Hit*, std::set<int> > HitToParticleMap; typedef std::map< int, std::set<const recob::Hit*> > ParticleToHitMap; typedef std::vector< art::Ptr<recob::Hit> > HitVector; // The parameters we'll read from the .fcl file. std::string fSimulationProducerLabel; // The name of the producer that tracked simulated particles through the detector std::string fMcHitCollectionModuleLabel; //> The name of the producer of MCHits std::string fPFParticleProducerLabel; // The name of the produder of the PFParticle hierarchy std::string fHitProducerLabel; // The name of the producer that created hits std::string fClusterProducerLabel; // The name of the producer that created clusters std::string fTrackProducerLabel; // The name of the producer that created the tracks std::string fCosmicProducerLabel; // The name of the producer that created cosmic tags std::string fFlashProducerLabel; // The name of the producer that created flash tags int fSelectedPDG; // PDG code of particle we'll focus on // Pointers to the histograms we'll create. // The variables that will go into the n-tuple. int fEvent; int fRun; int fSubRun; // Other variables that will be shared between different methods. art::ServiceHandle<geo::Geometry> fGeometry; // pointer to Geometry service double fElectronsToGeV; // conversion factor // Define histograms here TH1D* fMuonRange; TH1D* fProtonRange; TH1D* fOtherRange; TH1D* fMuonRangeMC; TH1D* fProtonRangeMC; TH1D* fOtherRangeMC; TH1D* fMuonDeltaRange; TH1D* fProtonDeltaRange; TH1D* fOtherDeltaRange; TProfile* fMuonEffVsRange; TProfile* fProtonEffVsRange; TProfile* fOtherEffVsRange; TH1D* fMuonNumHits; TH1D* fProtonNumHits; TH1D* fOtherNumHits; TH1D* fMuonNumHitsMC; TH1D* fProtonNumHitsMC; TH1D* fOtherNumHitsMC; TProfile* fMuonEffVsHits; TProfile* fProtonEffVsHits; TProfile* fOtherEffVsHits; TH1D* fMuonHitEfficiency; TH1D* fMuonHitPurity; TH1D* fMuonHitEfficPurity; TH1D* fProtonHitEfficiency; TH1D* fProtonHitPurity; TH1D* fProtonHitEfficPurity; TH1D* fOtherHitEfficiency; TH1D* fOtherHitPurity; TH1D* fOtherHitEfficPurity; TH1D* fNumMcProngs; TH1D* fNumPrimaryMuons; TH1D* fNumPrimaryProtons; TH1D* fNumTracks; TH1D* fNumMuonTracks; TH1D* fNumProtonTracks; TH2D* fMuonTLvsMCL; TH2D* fProtonTLvsMCL; TH2D* fOtherTLvsMCL; TH1D* fPdgCodeOther; TH1D* fPdgCodeOtherMiss; TH1D* fNoiseHits; }; // class LArNeutrinoAna //----------------------------------------------------------------------- //----------------------------------------------------------------------- // class implementation //----------------------------------------------------------------------- // Constructor LArNeutrinoAna::LArNeutrinoAna(fhicl::ParameterSet const& parameterSet) : EDAnalyzer(parameterSet) { // Read in the parameters from the .fcl file. this->reconfigure(parameterSet); } //----------------------------------------------------------------------- // Destructor LArNeutrinoAna::~LArNeutrinoAna() {} //----------------------------------------------------------------------- void LArNeutrinoAna::beginJob() { // Get the detector length, to determine the maximum bin edge of one // of the histograms. double detectorLength = fGeometry->DetLength(); // Access ART's TFileService, which will handle creating and writing // histograms and n-tuples for us. art::ServiceHandle<art::TFileService> tfs; // The arguments to 'make<whatever>' are the same as those passed // to the 'whatever' constructor, provided 'whatever' is a ROOT // class that TFileService recognizes. // Define the histograms. Putting semi-colons around the title // causes it to be displayed as the x-axis label if the histogram // is drawn. fMuonRangeMC = tfs->make<TH1D>("MuonRangeMC", "; Range", 100, 0., 0.5 * fGeometry->DetLength()); fProtonRangeMC = tfs->make<TH1D>("ProtonRangeMC", "; Range", 100, 0., 0.1 * fGeometry->DetLength()); fOtherRangeMC = tfs->make<TH1D>("OtherRangeMC", "; Range", 100, 0., 0.05 * fGeometry->DetLength()); fMuonRange = tfs->make<TH1D>("MuonRange", "; Range", 100, 0., 0.5 * fGeometry->DetLength()); fProtonRange = tfs->make<TH1D>("ProtonRange", "; Range", 100, 0., 0.1 * fGeometry->DetLength()); fOtherRange = tfs->make<TH1D>("OtherRange", "; Range", 100, 0., 0.05 * fGeometry->DetLength()); fMuonDeltaRange = tfs->make<TH1D>("MuonDeltaRange", "; Delta Range", 200, -100., 100.); fProtonDeltaRange = tfs->make<TH1D>("ProtonDeltaRange", "; Delta Range", 200, -50., 50.); fOtherDeltaRange = tfs->make<TH1D>("OtherDeltaRange", "; Delta Range", 200, -50., 50.); fMuonEffVsRange = tfs->make<TProfile>("MuonEffVsRange", ";Range", 40, 0., 0.5 * fGeometry->DetLength(), 0., 1.1); fProtonEffVsRange = tfs->make<TProfile>("ProtonEffVsRange", ";Range", 25, 0., 0.1 * fGeometry->DetLength(), 0., 1.1); fOtherEffVsRange = tfs->make<TProfile>("OtherEffVsRange", ";Range", 20, 0., 0.05 * fGeometry->DetLength(), 0., 1.1); fMuonNumHits = tfs->make<TH1D>("MuonNumHits", ";log(# hits)", 20, 0.5, 4.5); fProtonNumHits = tfs->make<TH1D>("ProtonNumHits", ";log(# hits)", 20, 0.5, 4.5); fOtherNumHits = tfs->make<TH1D>("OtherNumHits", ";log(# hits)", 20, 0.5, 4.5); fMuonNumHitsMC = tfs->make<TH1D>("MuonNumHitsMC", ";log(# hits)", 20, 0.5, 4.5); fProtonNumHitsMC = tfs->make<TH1D>("ProtonNumHitsMC", ";log(# hits)", 20, 0.5, 4.5); fOtherNumHitsMC = tfs->make<TH1D>("OtherNumHitsMC", ";log(# hits)", 20, 0.5, 4.5); fMuonEffVsHits = tfs->make<TProfile>("MuonEffVsHits", ";log(# hits)", 20, 0.5, 4.5, 0., 1.1); fProtonEffVsHits = tfs->make<TProfile>("ProtonEffVsHits", ";log(# hits)", 20, 0.5, 4.5, 0., 1.1); fOtherEffVsHits = tfs->make<TProfile>("OtherEffVsHits", ";log(# hits)", 20, 0.5, 4.5, 0., 1.1); fMuonHitEfficiency = tfs->make<TH1D>("MuonHitEffic", ";efficiency", 51, 0.0, 1.02); fMuonHitPurity = tfs->make<TH1D>("MuonHitPurity", ";purity", 51, 0.0, 1.02); fMuonHitEfficPurity = tfs->make<TH1D>("MuonHitEfficPurity", ";e*p", 51, 0.0, 1.02); fProtonHitEfficiency = tfs->make<TH1D>("ProtonHitEffic", ";efficiency", 51, 0.0, 1.02); fProtonHitPurity = tfs->make<TH1D>("ProtonHitPurity", ";purity", 51, 0.0, 1.02); fProtonHitEfficPurity = tfs->make<TH1D>("ProtonHitEfficPurity", ";e*p", 51, 0.0, 1.02); fOtherHitEfficiency = tfs->make<TH1D>("OtherHitEffic", ";efficiency", 51, 0.0, 1.02); fOtherHitPurity = tfs->make<TH1D>("OtherHitPurity", ";purity", 51, 0.0, 1.02); fOtherHitEfficPurity = tfs->make<TH1D>("OtherHitEfficPurity", ";e*p", 51, 0.0, 1.02); fMuonTLvsMCL = tfs->make<TH2D>("MuonTLvsMCL", "Reco Length vs. MC Truth Length", 100, 0., 0.5 * detectorLength, 100, 0., 0.5 * detectorLength); fProtonTLvsMCL = tfs->make<TH2D>("ProtonTLvsMCL", "Reco Length vs. MC Truth Length", 100, 0., 0.2 * detectorLength, 100, 0., 0.2 * detectorLength); fOtherTLvsMCL = tfs->make<TH2D>("OtherTLvsMCL", "Reco Length vs. MC Truth Length", 100, 0., 0.1 * detectorLength, 100, 0., 0.1 * detectorLength); fNumMcProngs = tfs->make<TH1D>("NumMcProngs", ";# prongs", 10, 0., 10.); fNumPrimaryMuons = tfs->make<TH1D>("NumPrimMuons", ";# muons", 10, 0., 10.); fNumPrimaryProtons = tfs->make<TH1D>("NumPrimProtons", ";# protons", 10, 0., 10.); fNumTracks = tfs->make<TH1D>("NumTracks", ";# tracks", 10, 0., 10.); fNumMuonTracks = tfs->make<TH1D>("NumMuonTracks", ";# tracks", 10, 0., 10.); fNumProtonTracks = tfs->make<TH1D>("NumProtonTracks", ";# tracks", 10, 0., 10.); fPdgCodeOther = tfs->make<TH1D>("PdgCodeOther", ";pdg code", 400, -200., 200.); fPdgCodeOtherMiss = tfs->make<TH1D>("PdgCodeOtherM", ";pdg code", 400, -200., 200.); fNoiseHits = tfs->make<TH1D>("NoiseHits", ";# hits", 100, 0., 100.); } //----------------------------------------------------------------------- void LArNeutrinoAna::beginRun(const art::Run& /*run*/) { // How to convert from number of electrons to GeV. The ultimate // source of this conversion factor is // ${LARSIM_DIR}/include/SimpleTypesAndConstants/PhysicalConstants.h. // art::ServiceHandle<sim::LArG4Parameters> larParameters; // fElectronsToGeV = 1./larParameters->GeVToElectrons(); } //----------------------------------------------------------------------- void LArNeutrinoAna::reconfigure(fhicl::ParameterSet const& p) { // Read parameters from the .fcl file. The names in the arguments // to p.get<TYPE> must match names in the .fcl file. fSimulationProducerLabel = p.get< std::string >("SimulationLabel"); fMcHitCollectionModuleLabel = p.get< std::string >("MCHitLabel"); fPFParticleProducerLabel = p.get< std::string >("PFParticleLabel"); fHitProducerLabel = p.get< std::string >("HitLabel"); fClusterProducerLabel = p.get< std::string >("ClusterProducerLabel"); fTrackProducerLabel = p.get< std::string >("TrackProducerLabel"); fCosmicProducerLabel = p.get< std::string >("CosmicProducerLabel"); fFlashProducerLabel = p.get< std::string >("FlashProducerLabel"); fSelectedPDG = p.get< int >("PDGcode"); return; } //----------------------------------------------------------------------- void LArNeutrinoAna::analyze(const art::Event& event) { // Start by fetching some basic event information for our n-tuple. fEvent = event.id().event(); fRun = event.run(); fSubRun = event.subRun(); // The first step is to attempt to recover the collection of MCHits that // we will need for doing our PFParticle to MC matching art::Handle< std::vector<sim::MCHitCollection> > mcHitCollectionHandle; event.getByLabel(fMcHitCollectionModuleLabel, mcHitCollectionHandle); if (!mcHitCollectionHandle.isValid()) return; // Recover this into a local stl version const std::vector<sim::MCHitCollection> &mcHitCollectionVec = *mcHitCollectionHandle; // This is the standard method of reading multiple objects // associated with the same event; see // <https://cdcvs.fnal.gov/redmine/projects/larsoftsvn/wiki/Using_the_Framework> // for more information. Define a "handle" to point to a vector of // the objects. art::Handle< std::vector<simb::MCParticle> > particleHandle; // Then tell the event to fill the vector with all the objects of // that type produced by a particular producer. event.getByLabel(fSimulationProducerLabel, particleHandle); // Let's recover the MCTruth objects art::FindOneP<simb::MCTruth> mcTruthAssns(particleHandle, event, fSimulationProducerLabel); // The MCParticle objects are not necessarily in any particular // order. Since we may have to search the list of particles, let's // put them into a sorted map that will make searching fast and // easy. To save both space and time, the map will not contain a // copy of the MCParticle, but a pointer to it. std::map< int, const simb::MCParticle* > particleMap; // Before starting to loop through the particles, we are going to want to // build a mapping between hits and track id's // Start by recovering info from the event store art::Handle< std::vector<recob::Hit> > hitHandle; event.getByLabel(fHitProducerLabel, hitHandle); //we're gonna probably need the time service to convert hit times to TDCs art::ServiceHandle<util::TimeService> timeService; // our ultimate goal here HitToParticleMap hitToParticleMap; ParticleToHitMap particleToHitMap; // Keep track of the number of noise hits int nNoiseHits(0); // Ok, so this loop obviously takes the MC information and builds two maps // 1) a map from a Hit2D object to the track ID's that made it // 2) the reverse map, going from track ID to Hit2D object for (unsigned int iHit = 0, iHitEnd = hitHandle->size(); iHit < iHitEnd; ++iHit) { art::Ptr<recob::Hit> hit(hitHandle, iHit); const geo::WireID& wireId = hit->WireID(); unsigned int channel = fGeometry->PlaneWireToChannel(wireId.Plane, wireId.Wire, wireId.TPC, wireId.Cryostat); const std::vector<sim::MCHit>& mcHitVec = mcHitCollectionVec.at(channel); int start_tdc = timeService->TPCTick2TDC( hit->StartTick() ); int end_tdc = timeService->TPCTick2TDC( hit->EndTick() ); sim::MCHit startTime; sim::MCHit endTime; startTime.SetTime(start_tdc, 0); endTime.SetTime(end_tdc, 0); std::vector<sim::MCHit>::const_iterator startItr = std::lower_bound(mcHitVec.begin(), mcHitVec.end(), startTime); std::vector<sim::MCHit>::const_iterator endItr = std::upper_bound(startItr, mcHitVec.end(), endTime); while(startItr != endItr) { int trackID = (*startItr++).PartTrackId(); hitToParticleMap[hit.get()].insert(trackID); particleToHitMap[trackID].insert(hit.get()); } // else nNoiseHits++; } // Record for posteriety fNoiseHits->Fill(nNoiseHits); // This loop will build the map between track ID and the MCParticle related to it for ( auto const& particle : (*particleHandle) ) { // For the methods you can call to get particle information, // see ${NUTOOLS_DIR}/include/SimulationBase/MCParticle.h. int trackID = particle.TrackId(); // Add the address of the MCParticle to the map, with the track ID as the key. particleMap[trackID] = &particle; } // loop over all particles in the event. // Ok, at this point we're ready to recover Tracks and the assorted necessities for the next step // For sure we need a boatload of stuff here... // Start with some useful typdefs typedef std::set<art::Ptr<recob::Hit> > Hit2DSet; // Need to count only unique hits typedef std::map< int, Hit2DSet > TrackIDToHit2DMap; typedef std::vector<const recob::Track*> TrackVec; typedef std::map< int, TrackVec > TrackIDToTrackVecMap; typedef std::map<const recob::Track*, TrackIDToHit2DMap > TrackToTrackHit2DMap; // Now define the maps relating pfparticles to tracks TrackIDToTrackVecMap trackIDToTrackMap; TrackToTrackHit2DMap trackToTrackHitMap; // Something to keep track of number of hits associated to a cluster std::map<const recob::Track*, int> trackHitCntMap; // Recover the PFParticles, the main products for our next major loop art::Handle<std::vector<recob::PFParticle> > pfParticleHandle; event.getByLabel(fPFParticleProducerLabel, pfParticleHandle); // We need a handle to the collection of clusters in the data store so we can // handle associations to hits. art::Handle<std::vector<recob::Cluster> > clusterHandle; event.getByLabel(fPFParticleProducerLabel, clusterHandle); // Now retrieve a handle to the fit tracks art::Handle<std::vector<recob::Track> > trackHandle; event.getByLabel(fTrackProducerLabel, trackHandle); // If we have reconstructed tracks then we fill out the tables relating to hits // The valididy ot a trackHandle implies the validity of the PFParticle and Cluster handles if (trackHandle.isValid()) { // Recover track hit associations art::FindManyP<recob::Hit> trackHitAssns(trackHandle, event, fTrackProducerLabel); // The goal of this loop is to recover the list of 2D hits associated with a given Track // (through associations with 2D clusters) and develop some maps which allow us to associate // the Track to a MC particle. for (const auto& track : (*trackHandle)) { // Recover the hits associated to this track std::vector<art::Ptr<recob::Hit> > hits = trackHitAssns.at(track.ID()); // Keep track of this to hopefully save some time later trackHitCntMap[&track] = hits.size(); // To categorize the PFParticle (associate to MCParticle), we will // create and fill an instance of a TrackIDToHitMap. // So, for a given PFParticle we will have a map of the track ID's (MCParticles) // and the hits that they contributed energy too trackToTrackHitMap[&track] = TrackIDToHit2DMap(); TrackIDToHit2DMap& trackIdToHit2DMap = trackToTrackHitMap[&track]; // Something to count MCParticles contributing here std::set<int> trackIdCntSet; int nMultiParticleHits(0); int nNoParticleHits(0); // To fill out this map we now loop over the recovered Hit2D's and stuff into the map for (const auto& hit : hits) { // Given the Hit2D, recover the list of asscociated track ID's (MCParticles) HitToParticleMap::iterator hitToParticleMapItr = hitToParticleMap.find(hit.get()); if (hitToParticleMapItr != hitToParticleMap.end()) { // More than one MCParticle can contribute energy to make a given hit // So loop over the track ID's for this hit for(const auto& trackId : hitToParticleMapItr->second) { trackIdToHit2DMap[trackId].insert(hit); trackIdCntSet.insert(trackId); } if (hitToParticleMapItr->second.size() > 1) nMultiParticleHits++; } else { nNoParticleHits++; } } // Make sure something happened here... if (!trackIdToHit2DMap.empty()) { int bestTrackId(-99999); size_t bestTrackCnt(0); // Make a quick loop through the map to do some majority logic matching // We only care about find the best match so no worries about sorting // Take advantage of this loop to count the number of unique 2D hits for(const auto& trackItr : trackIdToHit2DMap) { // Majority logic matching if (trackItr.second.size() > bestTrackCnt) { bestTrackId = trackItr.first; bestTrackCnt = trackItr.second.size(); } } if (bestTrackId != -99999) { trackIDToTrackMap[bestTrackId].push_back(&track); } } } // end of loop over the PFParticle collection } // Always a handy thing to have hidden in your code: // const double radToDegrees = 180. / 3.14159265; art::ServiceHandle<util::LArProperties> larProperties; // One last task worth pursuing is to see if we can pick out the neutrino interaction and do some categorization of it. // const simb::MCTruth* theAnswerIsOutThere(0); std::vector<const simb::MCParticle*> mcPartVec; std::vector<const simb::MCParticle*> primaryMuonVec; std::vector<const simb::MCParticle*> primaryProtonVec; std::vector<const recob::Track*> trackVec; std::vector<const recob::Track*> muonTrackVec; std::vector<const recob::Track*> protonTrackVec; for (size_t particleIdx = 0; particleIdx < particleHandle->size(); particleIdx++) { art::Ptr<simb::MCParticle> particle(particleHandle, particleIdx); // See if we can quickly eliminate junk if (particle->NumberTrajectoryPoints() < 2) continue; bool isNeutrino(false); try { art::Ptr<simb::MCTruth> mcTruth = mcTruthAssns.at(particleIdx); if (mcTruth->Origin() != simb::kBeamNeutrino) continue; isNeutrino = true; // theAnswerIsOutThere = mcTruth.get(); } catch(...) { isNeutrino = false; } if (isNeutrino) { // For the methods you can call to get particle information, // see ${NUTOOLS_DIR}/include/SimulationBase/MCParticle.h. int bestTrackID = particle->TrackId(); // Recover the particle's identity int trackPDGCode = particle->PdgCode(); // Did this mc particle leave hits in the TPC? ParticleToHitMap::iterator particleToHitItr = particleToHitMap.find(bestTrackID); // No hits no work if (particleToHitItr == particleToHitMap.end()) continue; // Can we check the range of this particle? if(particle->E() < 0.001*particle->Mass() + 0.05) continue; // Let's get the total number of "true" hits that are created by this MCParticle int nTrueMcHits = particleToHitItr->second.size(); // Count number of hits in each view int nHitsPerView[3] = {0,0,0}; std::set<int> uniqueWiresPerView[3] = {std::set<int>(),std::set<int>(),std::set<int>()}; float maxTimePerView[3] = {0., 0., 0.}; float minTimePerView[3] = {10000., 10000., 10000.}; for (const auto& hit : particleToHitItr->second) { int view = hit->View(); nHitsPerView[view]++; uniqueWiresPerView[view].insert(hit->WireID().Wire); maxTimePerView[view] = std::max(maxTimePerView[view], hit->PeakTime()); minTimePerView[view] = std::min(minTimePerView[view], hit->PeakTime()); } // We need to make sure there was some activity in the TPC if (uniqueWiresPerView[0].size() < 4 || uniqueWiresPerView[1].size() < 4 || uniqueWiresPerView[2].size() < 4) continue; // std::cout << "--- PDG code: " << trackPDGCode << std::endl; // for(int idx = 0; idx < 3; idx++) // { // std::cout << "Hits: " << nHitsPerView[idx] << ", wires: " << uniqueWiresPerView[idx].size() << ", max Time: " << maxTimePerView[idx] // << ", min Time: " << minTimePerView[idx] << std::endl; // } // Calculate the x offset due to nonzero mc particle time. double mctime = particle->T(); // nsec double mcdx = mctime * 1.e-3 * larProperties->DriftVelocity(); // cm // Calculate the length of this mc particle inside the fiducial volume. TVector3 mcstart; TVector3 mcend; TVector3 mcstartmom; TVector3 mcendmom; double mcTrackLen = length(*particle, mcdx, mcstart, mcend, mcstartmom, mcendmom); // Require particle travel at least three wires in Y-Z plane if (mcTrackLen < 0.91) continue; mcPartVec.push_back(particle.get()); double logNumMcHits(std::log10(nTrueMcHits)); bool isPrimaryMuon = fabs(trackPDGCode) == 13 && particle->Process() == "primary"; bool isPrimaryProton = fabs(trackPDGCode) == 2212 && particle->Process() == "primary"; if (isPrimaryMuon) primaryMuonVec.push_back(particle.get()); else if (isPrimaryProton) primaryProtonVec.push_back(particle.get()); mf::LogDebug("LArNeutrinoAna") << "***>> Found Neutrino product: " << *particle << std::endl; // Now check to see that a track is associated with this MCParticle (trackID) TrackIDToTrackVecMap::iterator trackIDToTrackItr = trackIDToTrackMap.find(bestTrackID); // If no track then skip the rest if (trackIDToTrackItr == trackIDToTrackMap.end()) { // Of course, we must record the results first, and what we do depends on the particle... if (isPrimaryMuon) { mcTrackLen = std::min(mcTrackLen, 0.5*fGeometry->DetLength()-1.); fMuonRangeMC->Fill(mcTrackLen, 1.); fMuonRange->Fill(0., 1.); fMuonEffVsRange->Fill(mcTrackLen, 0.); fMuonNumHits->Fill(0.1, 1.); fMuonNumHitsMC->Fill(logNumMcHits, 1.); fMuonEffVsHits->Fill(logNumMcHits, 0.); // fMuonHitEfficiency->Fill(0., 1.); // fMuonHitPurity->Fill(0., 1.); // fMuonHitEfficPurity->Fill(0., 1.); fMuonTLvsMCL->Fill(mcTrackLen, 0., 1.); mf::LogInfo("LArNeutrinoAna") << "***>> Primary muon missing, event # " << fEvent << ", mcTrackLen: " << mcTrackLen << std::endl; } else if (isPrimaryProton) { mcTrackLen = std::min(mcTrackLen, 0.1*fGeometry->DetLength()-1.); fProtonRangeMC->Fill(mcTrackLen, 1.); fProtonRange->Fill(0., 1.); fProtonEffVsRange->Fill(mcTrackLen, 0.); fProtonNumHits->Fill(0.1, 1.); fProtonNumHitsMC->Fill(logNumMcHits, 1.); fProtonEffVsHits->Fill(logNumMcHits, 0.); // fProtonHitEfficiency->Fill(0., 1.); // fProtonHitPurity->Fill(0., 1.); // fProtonHitEfficPurity->Fill(0., 1.); fProtonTLvsMCL->Fill(mcTrackLen, 0., 1.); mf::LogInfo("LArNeutrinoAna") << "***>> Primary proton missing, event # " << fEvent << ", mcTrackLen: " << mcTrackLen << std::endl; } else { mcTrackLen = std::min(mcTrackLen, 0.05*fGeometry->DetLength()-1.); // Should add pdgcode plot to see what things are... fOtherRangeMC->Fill(mcTrackLen, 1.); fOtherRange->Fill(0., 1.); fOtherEffVsRange->Fill(mcTrackLen, 0.); fOtherNumHits->Fill(0.1, 1.); fOtherNumHitsMC->Fill(logNumMcHits, 1.); fOtherEffVsHits->Fill(logNumMcHits, 0.); // fOtherHitEfficiency->Fill(0., 1.); // fOtherHitPurity->Fill(0., 1.); // fOtherHitEfficPurity->Fill(0., 1.); fOtherTLvsMCL->Fill(mcTrackLen, 0., 1.); fPdgCodeOtherMiss->Fill(std::max(-199.5,std::min(199.5,double(trackPDGCode))), 1.); } continue; } // Here our goal is to count the number of hits associated to a Track by the "best" MCParticle // (which is the one which produced the most number of hits the Track has grouped together) const recob::Track* track(0); int bestCnt(0); int nTracks(0); // Loop over the Tracks associated to this track ID (MCParticle) for(const auto& tmpPart : trackIDToTrackItr->second) { // This is to get the list of hits this PFParticle has broken out by track id TrackIDToHit2DMap::iterator tmpPartTrackItr = trackToTrackHitMap[tmpPart].find(bestTrackID); if (tmpPartTrackItr != trackToTrackHitMap[tmpPart].end()) { int trackHitCnt = tmpPartTrackItr->second.size(); if (trackHitCnt > bestCnt) { bestCnt = trackHitCnt; track = tmpPart; } if (trackHitCnt > int(nTrueMcHits / 10)) nTracks++; } } // I don't think this can happen... if (!track) continue; trackVec.push_back(track); // Now we can determine: // 1) The total number of hits in this cluster // 2) The number of hits belonging to the matched mc track // 3) The number of hits on that track // 4) The number of hits not belonging to this track which are on the cluster (the impurities) size_t nTotalClusterHits = trackHitCntMap[track]; size_t nMatchedHits = bestCnt; // size_t nWrongClusterHits = nTotalClusterHits - nMatchedHits; // MicroBooNE definitions of efficiency and purity: // efficiency E = number of true hits in the cluster / number of true hits from MC particle // purity P = number of true hits in the cluster / all hits in the cluster double hitEfficiency = double(nMatchedHits) / double(nTrueMcHits); // double wrongEff = double(nWrongClusterHits) / double(nTrueMcHits); double hitPurity = double(nMatchedHits) / double(nTotalClusterHits); double trackLen = length(track); double logNumHits = std::log10(nTotalClusterHits); if (isPrimaryMuon) { double deltaRange = std::min(99.9, std::max(mcTrackLen - trackLen, -99.9)); mcTrackLen = std::min(mcTrackLen, 0.5*fGeometry->DetLength()-1.); trackLen = std::min(trackLen, 0.5*fGeometry->DetLength()-1.); fMuonRangeMC->Fill(mcTrackLen, 1.); fMuonRange->Fill(trackLen, 1.); fMuonDeltaRange->Fill(deltaRange, 1.); fMuonEffVsRange->Fill(mcTrackLen, 1.); fMuonNumHits->Fill(logNumHits, 1.); fMuonNumHitsMC->Fill(logNumMcHits, 1.); fMuonEffVsHits->Fill(logNumMcHits, 1.); fMuonHitEfficiency->Fill(hitEfficiency, 1.); fMuonHitPurity->Fill(hitPurity, 1.); fMuonHitEfficPurity->Fill(hitEfficiency*hitPurity, 1.); fMuonTLvsMCL->Fill(mcTrackLen, trackLen, 1.); muonTrackVec.push_back(track); } else if (isPrimaryProton) { double deltaRange = std::min(49.9, std::max(mcTrackLen - trackLen, -49.9)); mcTrackLen = std::min(mcTrackLen, 0.1*fGeometry->DetLength()-1.); trackLen = std::min(trackLen, 0.1*fGeometry->DetLength()-1.); fProtonRangeMC->Fill(mcTrackLen, 1.); fProtonRange->Fill(trackLen, 1.); fProtonDeltaRange->Fill(deltaRange, 1.); fProtonEffVsRange->Fill(mcTrackLen, 1.); fProtonNumHits->Fill(logNumHits, 1.); fProtonNumHitsMC->Fill(logNumMcHits, 1.); fProtonEffVsHits->Fill(logNumMcHits, 1.); fProtonHitEfficiency->Fill(hitEfficiency, 1.); fProtonHitPurity->Fill(hitPurity, 1.); fProtonHitEfficPurity->Fill(hitEfficiency*hitPurity, 1.); fProtonTLvsMCL->Fill(mcTrackLen, trackLen, 1.); protonTrackVec.push_back(track); } else { double deltaRange = std::min(49.9, std::max(mcTrackLen - trackLen, -49.9)); mcTrackLen = std::min(mcTrackLen, 0.05*fGeometry->DetLength()-1.); trackLen = std::min(trackLen, 0.05*fGeometry->DetLength()-1.); fOtherRangeMC->Fill(mcTrackLen, 1.); fOtherRange->Fill(trackLen, 1.); fOtherDeltaRange->Fill(deltaRange, 1.); fOtherEffVsRange->Fill(mcTrackLen, 1.); fOtherNumHits->Fill(logNumHits, 1.); fOtherNumHitsMC->Fill(logNumMcHits, 1.); fOtherEffVsHits->Fill(logNumMcHits, 1.); fOtherHitEfficiency->Fill(hitEfficiency, 1.); fOtherHitPurity->Fill(hitPurity, 1.); fOtherHitEfficPurity->Fill(hitEfficiency*hitPurity, 1.); fOtherTLvsMCL->Fill(mcTrackLen, trackLen, 1.); fPdgCodeOther->Fill(std::max(-199.5,std::min(199.5,double(trackPDGCode))), 1.); } } } int nMcProngs = mcPartVec.size(); int nPrimaryMuons = primaryMuonVec.size(); int nPrimaryProtons = primaryProtonVec.size(); int nTracks = trackVec.size(); int nMuonTracks = muonTrackVec.size(); int nProtonTracks = protonTrackVec.size(); fNumMcProngs->Fill(nMcProngs); fNumPrimaryMuons->Fill(nPrimaryMuons); fNumPrimaryProtons->Fill(nPrimaryProtons); fNumTracks->Fill(nTracks); fNumMuonTracks->Fill(nMuonTracks); fNumProtonTracks->Fill(nProtonTracks); return; } // Length of reconstructed track. //---------------------------------------------------------------------------- double LArNeutrinoAna::length(const recob::Track* track) { double result(0.); TVector3 disp(track->LocationAtPoint(0)); int n(track->NumberTrajectoryPoints()); for(int i = 1; i < n; ++i) { const TVector3& pos = track->LocationAtPoint(i); disp -= pos; result += disp.Mag(); disp = pos; } return result; } // Length of MC particle. //---------------------------------------------------------------------------- double LArNeutrinoAna::length(const simb::MCParticle& part, double dx, TVector3& start, TVector3& end, TVector3& startmom, TVector3& endmom, unsigned int tpc, unsigned int cstat) { // Get services. art::ServiceHandle<geo::Geometry> geom; art::ServiceHandle<util::DetectorProperties> detprop; // Get fiducial volume boundary. double xmin = 0.; double xmax = 2.*geom->DetHalfWidth(); double ymin = -geom->DetHalfHeight(); double ymax = geom->DetHalfHeight(); double zmin = 0.; double zmax = geom->DetLength(); double result = 0.; TVector3 disp; int n = part.NumberTrajectoryPoints(); bool first = true; for(int i = 0; i < n; ++i) { TVector3 pos = part.Position(i).Vect(); // Make fiducial cuts. Require the particle to be within the physical volume of // the tpc, and also require the apparent x position to be within the expanded // readout frame. if(pos.X() >= xmin && pos.X() <= xmax && pos.Y() >= ymin && pos.Y() <= ymax && pos.Z() >= zmin && pos.Z() <= zmax) { pos[0] += dx; double ticks = detprop->ConvertXToTicks(pos[0], 0, 0, 0); if(ticks >= 0. && ticks < detprop->ReadOutWindowSize()) { if(first) { start = pos; startmom = part.Momentum(i).Vect(); } else { disp -= pos; result += disp.Mag(); } first = false; disp = pos; end = pos; endmom = part.Momentum(i).Vect(); } } } return result; } // This macro has to be defined for this module to be invoked from a // .fcl file; see LArNeutrinoAna.fcl for more information. DEFINE_ART_MODULE(LArNeutrinoAna) } // namespace LArNeutrinoAna #endif // LArNeutrinoAna_module
[ "usher@slac.stanford.edu" ]
usher@slac.stanford.edu
ae857c7393343bd15cb55dee6006b74b01eb845b
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/mash/app_driver/app_driver.cc
24d4651f3868c513aa5dd9ad904acccedab5d97f
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
webosce/chromium53
f8e745e91363586aee9620c609aacf15b3261540
9171447efcf0bb393d41d1dc877c7c13c46d8e38
refs/heads/webosce
2020-03-26T23:08:14.416858
2018-08-23T08:35:17
2018-09-20T14:25:18
145,513,343
0
2
Apache-2.0
2019-08-21T22:44:55
2018-08-21T05:52:31
null
UTF-8
C++
false
false
4,323
cc
// Copyright 2015 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. #include "mash/app_driver/app_driver.h" #include <stdint.h> #include "base/bind.h" #include "base/message_loop/message_loop.h" #include "components/mus/common/event_matcher_util.h" #include "mash/public/interfaces/launchable.mojom.h" #include "services/shell/public/cpp/connection.h" #include "services/shell/public/cpp/connector.h" using mash::mojom::LaunchablePtr; using mash::mojom::LaunchMode; namespace mash { namespace app_driver { namespace { enum class Accelerator : uint32_t { NewChromeWindow, NewChromeTab, NewChromeIncognitoWindow, ShowTaskManager, }; struct AcceleratorSpec { Accelerator id; ui::mojom::KeyboardCode keyboard_code; // A bitfield of kEventFlag* and kMouseEventFlag* values in // input_event_constants.mojom. int event_flags; }; AcceleratorSpec g_spec[] = { {Accelerator::NewChromeWindow, ui::mojom::KeyboardCode::N, ui::mojom::kEventFlagControlDown}, {Accelerator::NewChromeTab, ui::mojom::KeyboardCode::T, ui::mojom::kEventFlagControlDown}, {Accelerator::NewChromeIncognitoWindow, ui::mojom::KeyboardCode::N, ui::mojom::kEventFlagControlDown | ui::mojom::kEventFlagShiftDown}, {Accelerator::ShowTaskManager, ui::mojom::KeyboardCode::ESCAPE, ui::mojom::kEventFlagShiftDown}, }; void AssertTrue(bool success) { DCHECK(success); } void DoNothing() {} } // namespace AppDriver::AppDriver() : connector_(nullptr), binding_(this), weak_factory_(this) {} AppDriver::~AppDriver() {} void AppDriver::OnAvailableCatalogEntries( mojo::Array<catalog::mojom::EntryPtr> entries) { if (entries.empty()) { LOG(ERROR) << "Unable to install accelerators for launching chrome."; return; } mus::mojom::AcceleratorRegistrarPtr registrar; connector_->ConnectToInterface(entries[0]->name, &registrar); if (binding_.is_bound()) binding_.Unbind(); registrar->SetHandler(binding_.CreateInterfacePtrAndBind()); // If the window manager restarts, the handler pipe will close and we'll need // to re-add our accelerators when the window manager comes back up. binding_.set_connection_error_handler( base::Bind(&AppDriver::AddAccelerators, weak_factory_.GetWeakPtr())); for (const AcceleratorSpec& spec : g_spec) { registrar->AddAccelerator( static_cast<uint32_t>(spec.id), mus::CreateKeyMatcher(spec.keyboard_code, spec.event_flags), base::Bind(&AssertTrue)); } } void AppDriver::Initialize(shell::Connector* connector, const shell::Identity& identity, uint32_t id) { connector_ = connector; AddAccelerators(); } bool AppDriver::AcceptConnection(shell::Connection* connection) { return true; } bool AppDriver::ShellConnectionLost() { // Prevent the code in AddAccelerators() from keeping this app alive. binding_.set_connection_error_handler(base::Bind(&DoNothing)); return true; } void AppDriver::OnAccelerator(uint32_t id, std::unique_ptr<ui::Event> event) { struct LaunchOptions { uint32_t option; const char* app; LaunchMode mode; }; std::map<Accelerator, LaunchOptions> options{ {Accelerator::NewChromeWindow, {mojom::kWindow, "exe:chrome", LaunchMode::MAKE_NEW}}, {Accelerator::NewChromeTab, {mojom::kDocument, "exe:chrome", LaunchMode::MAKE_NEW}}, {Accelerator::NewChromeIncognitoWindow, {mojom::kIncognitoWindow, "exe:chrome", LaunchMode::MAKE_NEW}}, {Accelerator::ShowTaskManager, {mojom::kWindow, "mojo:task_viewer", LaunchMode::DEFAULT}}, }; const auto iter = options.find(static_cast<Accelerator>(id)); DCHECK(iter != options.end()); const LaunchOptions& entry = iter->second; LaunchablePtr launchable; connector_->ConnectToInterface(entry.app, &launchable); launchable->Launch(entry.option, entry.mode); } void AppDriver::AddAccelerators() { connector_->ConnectToInterface("mojo:catalog", &catalog_); catalog_->GetEntriesProvidingClass( "mus:window_manager", base::Bind(&AppDriver::OnAvailableCatalogEntries, weak_factory_.GetWeakPtr())); } } // namespace app_driver } // namespace mash
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com